/* RWD */
@keyframes Rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes Expose {
  0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}
.expose {
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  opacity: 0;
  -webkit-transition: opacity 1s ease 1s, clip-path 1s ease 1s;
  transition: opacity 1s ease 1s, clip-path 1s ease 1s;
  -webkit-transform: translateZ(0);
}

.expose--shown {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  opacity: 1;
}

@keyframes Levitate {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -6%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes SphereLevitation {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -15%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes LevitateShadow {
  0% {
    transform: scaleX(1);
    opacity: 1;
  }
  50% {
    transform: scaleX(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes IntervalMovingDown {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  10% {
    -webkit-transform: translate3d(-50%, 50%, 0);
    -moz-transform: translate3d(-50%, 50%, 0);
    transform: translate3d(-50%, 50%, 0);
  }
  20% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  30% {
    -webkit-transform: translate3d(-50%, 50%, 0);
    -moz-transform: translate3d(-50%, 50%, 0);
    transform: translate3d(-50%, 50%, 0);
  }
  40% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
    -moz-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes Blink {
  0% {
    border-color: #ECE2D1;
  }
  48% {
    border-color: #ECE2D1;
  }
  50% {
    border-color: #043F3C;
  }
  98% {
    border-color: #043F3C;
  }
  100% {
    border-color: #ECE2D1;
  }
}
/***** CONTAINERS *****/
.wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
.wrapper > div {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.container, .site-bar__container {
  position: relative;
}
.container:after, .site-bar__container:after {
  content: "";
  display: block;
  clear: both;
}

.container--reverse .column {
  float: right;
}

.container--same-height-columns {
  position: relative;
}
.container--same-height-columns .column {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
.container--same-height-columns .column--highest {
  position: static;
}

.column {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  min-height: 1px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .column {
    text-align: left;
  }
}
@media (min-width: 768px) {
  .column__wrapper--desktop-top-padding {
    padding-top: 80px;
  }
}

@media (min-width: 768px) {
  .col-9 {
    width: 75%;
  }
}

@media (min-width: 768px) {
  .col-8 {
    width: 66.6666666667%;
  }
}

@media (min-width: 1100px) {
  .col-8-from-1100 {
    width: 66.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-7 {
    width: 58.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-6 {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .col-6-from-992 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .col-5 {
    width: 40.6666666667%;
  }
}

@media (min-width: 992px) {
  .col-5-from-992 {
    width: 40.6666666667%;
  }
}

@media (min-width: 768px) {
  .col-4 {
    width: 33.3333333333%;
  }
}

@media (min-width: 1100px) {
  .col-4-from-1100 {
    width: 33.3333333333%;
  }
}

@media (min-width: 768px) {
  .col-3 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-3-desktop {
    width: 33.3333333333%;
  }
}
@media (min-width: 1300px) {
  .col-3-desktop {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-2 {
    width: 25%;
  }
}

@media (min-width: 768px) {
  .col-1 {
    width: 16.6666666667%;
  }
}

@media (min-width: 992px) {
  .flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.flex-column {
  padding: 40px 0 0 0;
}
@media (min-width: 992px) {
  .flex-column {
    padding: 0;
  }
}
.flex-column:first-child {
  padding: 0;
}

/***** MENU *****/
.slide-menu {
  position: fixed;
  z-index: 6800;
  display: block;
  text-align: center;
  width: auto;
  padding: 0px 80px;
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
}
@media (min-width: 768px) {
  .slide-menu {
    padding: 0px 120px;
  }
}
@media (min-width: 1300px) {
  .slide-menu {
    padding: 0px 150px;
  }
}
@media (min-width: 1500px) {
  .slide-menu {
    padding: 0 180px;
  }
}
@media (min-width: 1650px) {
  .slide-menu {
    padding: 0 200px;
  }
}
@media (min-width: 1800px) {
  .slide-menu {
    padding: 0 210px;
  }
}
.slide-menu:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 10%;
  width: 110%;
  height: 100%;
  background: url("../img/golden-ratio.svg") no-repeat center;
  background-size: contain;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}
@media (min-width: 768px) {
  .slide-menu:before {
    width: 100%;
  }
}
.slide-menu__nav {
  transform: translateY(-60px);
}
.slide-menu__decoration-container {
  width: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate3d(-20%, 0, 0);
  -moz-transform: translate3d(-20%, 0, 0);
  transform: translate3d(-20%, 0, 0);
  display: none;
}
@media (min-width: 650px) and (min-height: 630px) {
  .slide-menu__decoration-container {
    display: block;
  }
}
@media (min-width: 992px) {
  .slide-menu__decoration-container {
    width: 36%;
    display: block;
  }
}
@media (min-width: 1300px) {
  .slide-menu__decoration-container {
    width: 34%;
  }
}
.slide-menu__decoration {
  padding: 0 0 130% 0;
  background: url("../img/decorations/decoration-south-west-heads.svg") no-repeat left bottom;
  background-size: contain;
}
@media (min-width: 1300px) {
  .slide-menu__decoration {
    padding-bottom: 120%;
  }
}
.slide-menu .slide-menu__wrapper {
  height: 100%;
  position: relative;
}
.slide-menu .slide-menu__inner {
  position: relative;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 650px) {
  .slide-menu .slide-menu__inner {
    text-align: right;
  }
}
@media (min-width: 480px) {
  .slide-menu .slide-menu__inner {
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .slide-menu__container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 100%;
  }
}
.slide-menu__menu-container {
  background: #fff;
}
@media (min-width: 992px) {
  .slide-menu__menu-container {
    padding: 0 0 0 15%;
  }
}
@media (min-width: 1300px) {
  .slide-menu__menu-container {
    padding-left: 18%;
  }
}
@media (min-width: 1700px) {
  .slide-menu__menu-container {
    padding-left: 22%;
  }
}
.slide-menu__menu-wrapper {
  text-align: left;
  display: flex;
  justify-content: center;
}
.slide-menu__header {
  text-align: left;
  padding: 20px 40px 0 40px;
}
@media (min-width: 992px) {
  .slide-menu__header {
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media (min-width: 1300px) {
  .slide-menu__header {
    padding: 28px 0 0 80px;
  }
}
.slide-menu__additional-menu-container {
  position: relative;
}
@media (min-width: 992px) {
  .slide-menu__additional-menu-container {
    background: #ECE2D1;
    padding: 0 8% 0 0;
  }
}
@media (min-width: 1300px) {
  .slide-menu__additional-menu-container {
    padding: 0 8% 0 32px;
  }
}
@media (min-width: 1700px) {
  .slide-menu__additional-menu-container {
    padding: 0 14% 0 60px;
  }
}
.slide-menu__social-media {
  position: absolute;
  right: 32px;
  top: 0;
  -webkit-transform: translate3d(0, -66%, 0);
  -moz-transform: translate3d(0, -66%, 0);
  transform: translate3d(0, -66%, 0);
}
@media (min-width: 992px) {
  .slide-menu__social-media {
    bottom: auto;
    top: 0;
    left: 0;
    right: auto;
    padding: 32px;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@media (min-width: 1700px) {
  .slide-menu__social-media {
    padding: 40px 40px 0 0;
  }
}

/** fade **/
.slide-menu--fade {
  display: none;
}

.slide-menu--fade.slide-menu--top {
  top: 0px;
  left: 0;
  right: auto;
  bottom: auto;
}

.slide-menu--fade.slide-menu--right {
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: 0;
}

.slide-menu--fade.slide-menu--left {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
}

/** slide **/
.slide-menu--slide {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.slide-menu--slide.slide-menu--top {
  top: -110%;
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--slide.slide-menu--top.slide-menu--open {
  top: 0px;
}

.slide-menu--slide.slide-menu--right {
  top: 0px;
  left: auto;
  right: -100%;
  bottom: auto;
}

.slide-menu--slide.slide-menu--right.slide-menu--open {
  right: 0;
}

.slide-menu--slide.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.slide-menu--slide.slide-menu--bottom.slide-menu--open {
  bottom: 0;
}

.slide-menu--slide.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.slide-menu--slide.slide-menu--left.slide-menu--open {
  left: 0;
}

/** slide-fade **/
.slide-menu--slide-fade {
  display: block;
  opacity: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -moz-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  -o-transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
  transition: all 0.4s cubic-bezier(0.98, 0, 1, 0.98) 0.4s;
}
.slide-menu--slide-fade .slide-menu__inner {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  -moz-transition: opacity 0.3s ease-out;
  -o-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}

.slide-menu--slide-fade.slide-menu--open {
  -webkit-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -moz-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -o-transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  transition: all 0.4s cubic-bezier(0, 1, 0.6, 0.98);
  -webkit-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  -moz-box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.08);
}
.slide-menu--slide-fade.slide-menu--open .slide-menu__inner {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in 0.4s;
  -moz-transition: opacity 0.3s ease-in 0.4s;
  -o-transition: opacity 0.3s ease-in 0.4s;
  transition: opacity 0.3s ease-in 0.4s;
}

.slide-menu--slide-fade.slide-menu--top {
  -webkit-transform: translate3d(0, -200%, 0);
  -moz-transform: translate3d(0, -200%, 0);
  transform: translate3d(0, -200%, 0);
  left: auto;
  right: 0;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--top.slide-menu--open {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  top: 0px;
}
@media (min-width: 650px) {
  .slide-menu--slide-fade.slide-menu--top.slide-menu--open #menu-toggler {
    right: 60px;
  }
}
@media (min-width: 1300px) {
  .slide-menu--slide-fade.slide-menu--top.slide-menu--open #menu-toggler {
    right: 80px;
  }
}
@media (min-width: 1700px) {
  .slide-menu--slide-fade.slide-menu--top.slide-menu--open #menu-toggler {
    right: 120px;
  }
}

.slide-menu--slide-fade.slide-menu--right {
  -webkit-transform: translate3d(100%, 0, 0);
  -moz-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  left: auto;
  bottom: auto;
  right: 0;
}

.slide-menu--slide-fade.slide-menu--right.slide-menu--open {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slide-menu--slide-fade.slide-menu--right.slide-menu--open:before {
  opacity: 0.7;
  visibility: visible;
}
@media (min-width: 1300px) {
  .slide-menu--slide-fade.slide-menu--right.slide-menu--open #menu-toggler {
    right: 60px;
  }
}
@media (min-width: 1700px) {
  .slide-menu--slide-fade.slide-menu--right.slide-menu--open #menu-toggler {
    right: 100px;
  }
}

.slide-menu--slide-fade.slide-menu--bottom {
  top: auto;
  left: 0;
  right: auto;
  bottom: -100%;
}

.slide-menu--slide-fade.slide-menu--bottom.slide-menu--open {
  bottom: 0;
}

.slide-menu--slide-fade.slide-menu--left {
  top: 0;
  left: -100%;
  right: auto;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--left.slide-menu--open {
  left: 0;
}

/***** OVERLAYERS *****/
.overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7000;
  background: rgba(4, 63, 60, 0.85);
  color: #000;
  overflow-x: hidden;
  padding: 0;
}
.overlayer__main-content--limited {
  max-width: 900px;
}
.overlayer .overlayer__loading-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 6900;
  display: none;
  font-size: 52px;
  color: #fff;
}
.overlayer .overlayer__inner {
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  padding: 50px 20px;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 480px) {
  .overlayer .overlayer__inner {
    padding: 50px 20px;
  }
}
@media (min-width: 650px) {
  .overlayer .overlayer__inner {
    max-width: 500px;
  }
}
@media (min-width: 992px) {
  .overlayer .overlayer__inner {
    margin: 40px auto;
    padding: 80px 80px;
    max-width: 900px;
  }
}
@media (min-width: 1300px) {
  .overlayer .overlayer__inner {
    padding: 80px 60px 80px 60px;
  }
}
.overlayer .overlayer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 7000;
  display: block;
  cursor: pointer;
}
.overlayer .overlayer__content {
  display: none;
  width: 100%;
}

.overlayer-02 .overlayer__inner,
.overlayer-03 .overlayer__inner {
  padding: 0;
}
@media (min-width: 1300px) {
  .overlayer-02 .overlayer__inner,
.overlayer-03 .overlayer__inner {
    margin: 40px auto;
    max-width: 1100px;
  }
}
@media (min-width: 1700px) {
  .overlayer-02 .overlayer__inner,
.overlayer-03 .overlayer__inner {
    max-width: 1500px;
  }
}

/* extended icon */
.extended-icon, .icon-search, .icon-action, .icon-instagram, .icon-youtube, .icon-facebook, .icon-download, .icon-arrow-with-belt {
  display: block;
  position: relative;
  overflow: hidden;
  text-align: left;
  text-indent: -10000px;
}
.extended-icon:before, .icon-search:before, .icon-action:before, .icon-instagram:before, .icon-youtube:before, .icon-facebook:before, .icon-download:before, .icon-arrow-with-belt:before, .extended-icon:after, .icon-search:after, .icon-action:after, .icon-instagram:after, .icon-youtube:after, .icon-facebook:after, .icon-download:after, .icon-arrow-with-belt:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.extended-icon:after, .icon-search:after, .icon-action:after, .icon-instagram:after, .icon-youtube:after, .icon-facebook:after, .icon-download:after, .icon-arrow-with-belt:after {
  opacity: 0;
}
.extended-icon:hover:before, .icon-search:hover:before, .icon-action:hover:before, .icon-instagram:hover:before, .icon-youtube:hover:before, .icon-facebook:hover:before, .icon-download:hover:before, .icon-arrow-with-belt:hover:before {
  opacity: 0;
}
.extended-icon:hover:after, .icon-search:hover:after, .icon-action:hover:after, .icon-instagram:hover:after, .icon-youtube:hover:after, .icon-facebook:hover:after, .icon-download:hover:after, .icon-arrow-with-belt:hover:after {
  opacity: 1;
}

.simple-extended-icon {
  display: block;
  position: relative;
}
.simple-extended-icon__base-layer {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.simple-extended-icon__above-layer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  opacity: 0;
}
.simple-extended-icon img {
  display: block;
}

@media (min-width: 992px) {
  .simple-extended-icon--later-changing .simple-extended-icon__base-layer {
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .simple-extended-icon--later-changing .simple-extended-icon__above-layer {
    opacity: 1;
  }
}

/* icon hamburger */
.icon-hamburger {
  transform: scale(-1.3, 1) translateX(0px);
  transition: transform 0.4s ease;
}
.icon-hamburger.open {
  transform: scale(-1, 1) translateX(80px);
}
@media (min-width: 768px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(95px);
  }
}
@media (min-width: 1300px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(85px);
  }
}
@media (min-width: 1500px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(70px);
  }
}
@media (min-width: 1600px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(40px);
  }
}
@media (min-width: 1650px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(37px);
  }
}
@media (min-width: 1700px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(90px);
  }
}
@media (min-width: 1750px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(65px);
  }
}
@media (min-width: 1800px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(55px);
  }
}
@media (min-width: 1850px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(30px);
  }
}
@media (min-width: 1900px) {
  .icon-hamburger.open {
    transform: scale(-1, 1) translateX(5px);
  }
}
.icon-hamburger .path-line {
  fill: none;
  stroke: #ECE2D1;
  stroke-width: 5;
  transition: stroke-dasharray 800ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 800ms cubic-bezier(0.4, 0, 0.2, 1), stroke 300ms ease 600ms;
}
.icon-hamburger .path-line-1 {
  stroke-dasharray: 60 207;
}
.icon-hamburger .path-line-2 {
  stroke-dasharray: 30 60;
}
.icon-hamburger .path-line-3 {
  stroke-dasharray: 0 207;
}
.icon-hamburger.open .path-line-1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.icon-hamburger.open .path-line-2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
}
.icon-hamburger.open .path-line-3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
}
.icon-hamburger--dark .path-line {
  stroke: #000;
}
.icon-hamburger--dark.open .path-line {
  stroke: #fff;
  transition: stroke-dasharray 800ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 800ms cubic-bezier(0.4, 0, 0.2, 1), stroke 300ms ease;
}

.icon-hamburger--primary .icon-hamburger__inner > div {
  background: #ECE2D1;
}

.icon-hamburger--light .icon-hamburger__inner > div {
  background: #fff;
}

.icon-hamburger--large {
  width: 32px;
}
.icon-hamburger--large .icon-hamburger__inner {
  height: 20px;
}
.icon-hamburger--large .icon-hamburger__inner > div {
  height: 4px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(5) {
  top: 8px;
}
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger--large .icon-hamburger__inner > div:nth-child(6) {
  top: 16px;
}

.icon-hamburger--small {
  width: 20px;
  height: 12px;
}
.icon-hamburger--small .icon-hamburger__inner > div {
  height: 2px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  border-radius: 1px;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(5) {
  top: 5px;
}
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger--small .icon-hamburger__inner > div:nth-child(6) {
  top: 10px;
}

/***** MODULES *****/
.dropdown {
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 900px) {
  .dropdown {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
}
.dropdown__header {
  margin-bottom: 9px;
}
@media (min-width: 900px) {
  .dropdown__header {
    margin-right: 20px;
    margin-bottom: 0;
  }
}
.dropdown__title {
  font-size: 14px;
  color: #4b4b4b;
}
.dropdown__lead {
  position: relative;
  cursor: pointer;
  height: 42px;
  width: 100%;
  max-width: 308px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #4b4b4b;
  border-radius: 4px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
}
.dropdown__lead .dropdown__icon {
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  transform-origin: center;
  width: 12px;
  height: 10px;
}
.dropdown__core {
  width: 100%;
  max-width: 308px;
  -webkit-transition: margin 0.2s linear;
  -moz-transition: margin 0.2s linear;
  -o-transition: margin 0.2s linear;
  transition: margin 0.2s linear;
  position: relative;
}
.dropdown__content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 42px;
  line-height: 42px;
  display: block;
  width: 100%;
  margin: 0;
  border: none;
  color: #7d7d7d;
  font-size: 14px;
  font-family: europa, sans-serif;
  font-weight: 400;
  text-align: left;
  padding-left: 5px;
}
@media (min-width: 480px) {
  .dropdown__content {
    padding-left: 15px;
  }
}
.dropdown__list-container {
  overflow: hidden;
  position: absolute;
  display: none;
  top: 100%;
  right: 0;
  width: 100%;
  z-index: 100;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dropdown__list > li input {
  display: none;
}
.dropdown__list a {
  display: block;
}
.dropdown__error-container {
  width: 100%;
  max-width: 308px;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s linear;
  -moz-transition: opacity 0.4s linear;
  -o-transition: opacity 0.4s linear;
  transition: opacity 0.4s linear;
}
.dropdown .dropdown-item {
  cursor: pointer;
}
.dropdown .dropdown-item .dropdown-item__description {
  padding-left: 5px;
}
@media (min-width: 385px) {
  .dropdown .dropdown-item .dropdown-item__description {
    padding-left: 15px;
  }
}
.dropdown.error {
  margin-bottom: 30px;
}
.dropdown.error * {
  border-color: #DB2B39;
}
.dropdown.error .dropdown__error-container {
  opacity: 1;
}
.dropdown:focus {
  border-color: #ECE2D1;
}

.dropdown--expanding .dropdown__list-container {
  position: relative;
  top: 0;
}

.dropdown.dropdown--open .dropdown__lead {
  border-color: #ECE2D1;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.dropdown.dropdown--open .dropdown__lead .dropdown__icon {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.dropdown--short {
  display: flex;
}
.dropdown--short .dropdown__core {
  align-self: center;
  max-width: 80px;
  margin-left: 20px;
}
.dropdown--short .dropdown__lead, .dropdown--short .dropdown__list-container {
  margin: 0 0 0 auto;
}

.bookmarks-manager {
  margin: 0 auto;
}
.bookmarks-manager .bookmarks-manager__bookmarks-container {
  width: 100%;
}
.bookmarks-manager .bookmarks-manager__bookmark-container {
  display: block;
}
.bookmarks-manager .bookmarks-manager__bookmark {
  cursor: pointer;
  position: relative;
}
.bookmarks-manager .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
  display: none;
}
.bookmarks-manager .bookmarks-manager__content-container {
  display: block;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  min-height: 3px;
}
.bookmarks-manager .bookmarks-manager__content-wrapper {
  padding: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.ajax-bookmarks-manager {
  max-width: 900px;
  margin: 0 auto;
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmarks {
  text-align: center;
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark-container {
  display: block;
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark {
  cursor: pointer;
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
  display: none;
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__content-container {
  display: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 768px) {
  .ajax-bookmarks-manager .ajax-bookmarks-manager__content-container {
    display: block;
  }
}
.ajax-bookmarks-manager .ajax-bookmarks-manager__content-wrapper {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.details-list {
  list-style-type: none;
}
.details-list .details-list__item {
  display: block;
}
.details-list .details-list__title {
  cursor: pointer;
}
.categorized-items__categories {
  text-align: center;
  list-style-type: none;
}
.categorized-items__categories > li {
  display: block;
  cursor: pointer;
}
.categorized-items__no-items {
  float: none;
  display: none;
}
.categorized-items__content-container {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.categorized-items-00 .categorized-items__categories-container {
  padding: 0 0 30px 0;
}
@media (min-width: 480px) {
  .categorized-items-00 .categorized-items__categories-container {
    padding: 0 0 50px 0;
  }
}
@media (min-width: 992px) {
  .categorized-items-00 .categorized-items__categories-container {
    padding: 0 0 70px 0;
  }
}
.ajax-categorized-items__categories-container {
  padding: 0 0 50px 0;
}
@media (min-width: 992px) {
  .ajax-categorized-items__categories-container {
    padding: 0 0 80px 40px;
  }
}
@media (min-width: 1500px) {
  .ajax-categorized-items__categories-container {
    padding: 0 0 80px 0;
  }
}
.ajax-categorized-items__no-items {
  float: none;
  display: block;
}
.ajax-categorized-items__contents-container {
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.ajax-categorized-items__content {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.ajax-categorized-items__pager-container {
  position: relative;
  padding: 80px 0 0 0;
}
@media (min-width: 650px) {
  .ajax-categorized-items__pager-container {
    padding: 100px 0 0 0;
  }
}
@media (min-width: 1800px) {
  .ajax-categorized-items__pager-container {
    padding: 120px 0 0 0;
  }
}
.ajax-categorized-items__pager-container .decorated-section__decoration-container {
  top: 40px;
  left: 0;
  display: block;
}
@media (min-width: 650px) {
  .ajax-categorized-items__pager-container .decorated-section__decoration-container {
    top: 60px;
  }
}
@media (min-width: 1800px) {
  .ajax-categorized-items__pager-container .decorated-section__decoration-container {
    top: 80px;
  }
}

/***** OVERLAYERS *****/
.overlayer-content {
  display: none !important;
}

.ajax-overlayer-button {
  cursor: pointer;
}

.ajax-overlayer-close {
  cursor: pointer;
}

.overlayer-00 {
  color: #222222;
}
.overlayer-00 .overlayer__inner {
  max-width: unset;
}
.overlayer-00 .overlayer__inner .flex-container {
  align-items: center;
}
@media (min-width: 768px) {
  .overlayer-00 .overlayer__inner .flex-container {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .overlayer-00 .overlayer__inner .image-wrapper {
    margin-left: 50px;
  }
}
.overlayer-00 .overlayer__content {
  margin: 0 auto;
  width: auto;
}
.overlayer-00 .skew-main-decoration__content {
  background-color: #043F3C;
}

.overlayer-02 {
  background-color: #043F3C;
}
.overlayer-02 .overlayer__inner {
  max-width: 1200px;
}
.popup-01 {
  background: rgba(0, 0, 0, 0.7);
}
.popup-01 > .wrapper > div {
  vertical-align: middle;
}
.popup-01 .overlayer__inner {
  padding: 20px;
  margin: 0 auto;
  background: none;
}

.overlayer-02 .overlayer__decoration-container-01 {
  content: "";
  display: block;
  position: fixed;
  width: 70%;
  left: -10%;
  bottom: -8%;
}
@media (min-width: 650px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    width: 40%;
    bottom: -12%;
    left: -5%;
  }
}
@media (min-width: 992px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    width: 36%;
    bottom: -16%;
    left: -8%;
  }
}
@media (min-width: 1300px) {
  .overlayer-02 .overlayer__decoration-container-01 {
    bottom: -10%;
    left: -5%;
    width: 30%;
  }
}
.overlayer-02 .overlayer__decoration-01 {
  padding: 0 0 100% 0;
  background: url("../img/drafts/racket.png") no-repeat center;
  background-size: contain;
}
@media (min-width: 992px) {
  .overlayer-02 .overlayer__decoration-container-02 {
    content: "";
    display: block;
    position: fixed;
    width: 24%;
    bottom: 2%;
    right: -2%;
  }
}
@media (min-width: 1300px) {
  .overlayer-02 .overlayer__decoration-container-02 {
    bottom: 30%;
    right: -6%;
  }
}
@media (min-width: 1700px) {
  .overlayer-02 .overlayer__decoration-container-02 {
    bottom: 25%;
    right: -6%;
  }
}
.overlayer-02 .overlayer__decoration-02 {
  padding: 0 0 100% 0;
  background: url("../img/drafts/racket-01.png") no-repeat center;
  background-size: contain;
}
.page-loading-layer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999;
}

.audio__wrapper {
  padding: 30px 0;
}
.audio__top-label {
  text-align: right;
}
.audio__content {
  padding: 10px 0 20px 0;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background-color: #4b4b4b;
}
.progress-bar__core {
  height: 100%;
  width: 0;
  background-color: #043F3C;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.progress-bar--movable:hover {
  cursor: pointer;
}

.volume-bar {
  margin-left: 4px;
  position: relative;
  width: 80px;
  height: 30px;
}
.volume-bar__core {
  width: 100%;
  height: 2px;
  background-color: #ECE2D1;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.volume-bar__slider {
  width: 8px;
  height: 8px;
  position: absolute;
  background-color: #043F3C;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}
.volume-bar:hover {
  cursor: pointer;
}

.timer-label > * {
  font-family: "Silk Serif", sans-serif;
  text-transform: uppercase;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.12em;
  line-height: 16px;
}
@media (min-width: 1100px) {
  .timer-label > * {
    font-size: 14px;
    line-height: 18px;
  }
}

/***** ICONS *****/
.icon-half-hamburger {
  display: block;
  width: 36px;
  position: relative;
}
.icon-half-hamburger__inner {
  height: 36px;
  position: relative;
  overflow: hidden;
}
.icon-half-hamburger__bar {
  position: absolute;
  left: 0;
  height: 2px;
  background: #000;
  width: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.icon-half-hamburger__bar:nth-child(1) {
  top: 0;
}
.icon-half-hamburger__bar:nth-child(2) {
  top: 7px;
  width: 50%;
}
.icon-half-hamburger__bar:nth-child(3) {
  top: 14px;
  width: 0;
}
.icon-half-hamburger:hover .icon-half-hamburger__bar:nth-child(2), .icon-half-hamburger:hover .icon-half-hamburger__bar:nth-child(3), .icon-half-hamburger:focus .icon-half-hamburger__bar:nth-child(2), .icon-half-hamburger:focus .icon-half-hamburger__bar:nth-child(3) {
  width: 100%;
}

.icon-half-hamburger.open .icon-half-hamburger__inner {
  overflow: visible;
}
.icon-half-hamburger.open .icon-half-hamburger__bar {
  background: #fff;
}
.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(1) {
  top: 7px;
  left: auto;
  right: 0;
  width: 24px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(2) {
  opacity: 0;
  left: -100%;
}
.icon-half-hamburger.open .icon-half-hamburger__bar:nth-child(3) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-half-hamburger--light .icon-half-hamburger__bar {
  background: #fff;
}

/* icon arrow */
.icon-simple-arrow {
  display: block;
  position: relative;
  width: 24px;
  height: 24px;
  background: url("../img/icons/arrows/icon-simple-arrow-right.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
@media (min-width: 1700px) {
  .icon-simple-arrow {
    width: 28px;
    height: 28px;
  }
}

.icon-simple-arrow--light {
  background-image: url("../img/icons/arrows/icon-simple-arrow-right-light.svg");
}

.icon-simple-arrow--up {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.icon-simple-arrow--left {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-simple-arrow--down {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-simple-arrow--secondary {
  background-image: url("../img/icons/arrows/icon-simple-arrow-right-secondary.svg");
}

.icon-arrow-with-belt {
  background-size: 100% auto;
  width: 39px;
  height: 16px;
}
.icon-arrow-with-belt::before, .icon-arrow-with-belt::after {
  background-size: auto 100% !important;
  background-position: right !important;
}
.icon-arrow-with-belt:before {
  background-image: url("/img/icons/icon-arrow-yellow.svg");
}
.icon-arrow-with-belt:after {
  background-image: url("/img/icons/icon-arrow-green.svg");
}

.icon-arrow-with-belt--second-theme:before {
  background-image: url("/img/icons/icon-arrow-gold.svg");
}
.icon-arrow-with-belt--second-theme:after {
  background-image: url("/img/icons/icon-arrow-navy.svg");
}

.icon-arrow-with-belt--long {
  width: 110px;
}

.icon-arrow-with-belt--right {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-arrow-with-belt--up {
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.icon-arrow-with-belt--down {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  transform: rotate(90deg);
}

.icon-arrow-with-belt--light:before {
  background-image: url("/img/icons/icon-arrow-white.svg");
}
.icon-arrow-with-belt--light:after {
  background-image: url("/img/icons/icon-arrow-green.svg");
}

.icon-arrow {
  position: relative;
  width: 12px;
  height: 12px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.icon-arrow--left {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 3px;
}

.icon-arrow--up {
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
  top: 3px;
}

.icon-arrow--right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -3px;
}

.icon-arrow--down {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -3px;
}

.icon-arrow--small {
  width: 8px;
  height: 8px;
  border-width: 2px;
}

.icon-arrow--very-small {
  width: 8px;
  height: 8px;
  border-width: 1px;
}

.icon-arrow--left.icon-arrow--small {
  left: 2px;
}

.icon-arrow--up.icon-arrow--small {
  top: 2px;
}

.icon-arrow--right.icon-arrow--small {
  left: -2px;
}

.icon-arrow--down.icon-arrow--small {
  top: -2px;
}

.icon-arrow--large {
  width: 18px;
  height: 18px;
  border-width: 3px;
}

.icon-arrow--dark {
  border-color: #F6F4F4;
}

.icon-arrow--dark-grey {
  border-color: #F6F4F4;
}

.icon-arrow--dark-grey-02 {
  border-color: #535353;
}

.icon-arrow--primary {
  border-color: #ECE2D1;
}

.icon-arrow--light {
  border-color: #fff;
}

.icon-arrow--primary {
  border-color: #ECE2D1;
}

.icon-arrow--primary:hover {
  border-color: #043F3C;
}

/* icon spectacular arrow */
.icon-spectacular-arrow {
  display: block;
  width: 42px;
  height: 42px;
  position: relative;
}
@media (min-width: 1300px) {
  .icon-spectacular-arrow {
    width: 48px;
    height: 48px;
  }
}
.icon-spectacular-arrow:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/icons/arrow-right.svg") no-repeat center right;
  background-size: contain;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.disabled .icon-spectacular-arrow:hover:before {
  padding: 0;
}

.icon-spectacular-arrow.icon-spectacular-arrow--left {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}

.icon-spectacular-arrow--large {
  width: 28px;
  height: 24px;
}
@media (min-width: 1700px) {
  .icon-spectacular-arrow--large {
    width: 32px;
    height: 28px;
  }
}

/* icon nice arrow */
.icon-nice-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  margin: 0 auto;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-nice-arrow:before, .icon-nice-arrow:after {
  content: "";
  display: block;
  position: absolute;
  background: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-nice-arrow:before {
  width: 3px;
  height: 100%;
  top: 0;
  right: 0;
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px;
}
.icon-nice-arrow:after {
  height: 3px;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-border-radius: 8px 0 0 8px;
  -moz-border-radius: 8px 0 0 8px;
  border-radius: 8px 0 0 8px;
}

.icon-nice-arrow--down {
  top: -3px;
}

.icon-nice-arrow--left {
  -webkit-transform: rotate(225deg);
  -moz-transform: rotate(225deg);
  transform: rotate(225deg);
  left: 3px;
  top: 0;
}

.icon-nice-arrow--right {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  left: -3px;
  top: 0;
}

.icon-nice-arrow--light:before, .icon-nice-arrow--light:after {
  background: #fff;
}

.icon-nice-arrow--small {
  width: 12px;
  height: 12px;
}
.icon-nice-arrow--small.icon-nice-arrow--left {
  left: 2px;
}

.icon-nice-arrow--small.icon-nice-arrow--right {
  left: -2px;
}

.icon-nice-arrow--large {
  width: 20px;
  height: 20px;
}
@media (min-width: 1300px) {
  .icon-nice-arrow--large {
    width: 24px;
    height: 24px;
  }
}

/* icon triangular icon */
.icon-triangular-arrow-left {
  border-right: 12px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-left--small {
  border-right-width: 10px;
  border-top-width: 6px;
  border-bottom-width: 6px;
}

.icon-triangular-arrow-left--large {
  border-right-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px;
}

.icon-triangular-arrow-left--primary {
  border-right-color: #ECE2D1;
}

.icon-triangular-arrow-left--light {
  border-right-color: #fff;
}

.icon-triangular-arrow-up {
  border-bottom: 12px solid #000;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-up--small {
  border-bottom-width: 10px;
  border-right-width: 6px;
  border-left-width: 6px;
}

.icon-triangular-arrow-up--large {
  border-bottom-width: 14px;
  border-right-width: 8px;
  border-left-width: 8px;
}

.icon-triangular-arrow-up--primary {
  border-bottom-color: #ECE2D1;
}

.icon-triangular-arrow-up--light {
  border-bottom-color: #fff;
}

.icon-triangular-arrow-right {
  border-left: 12px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-right--small {
  border-left-width: 8px;
  border-top-width: 8px;
  border-bottom-width: 8px;
}

.icon-triangular-arrow-right--large {
  border-left-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px;
}

.icon-triangular-arrow-right__black {
  border-left-color: #000;
}

.icon-triangular-arrow-right--primary {
  border-left-color: #ECE2D1;
}

.icon-triangular-arrow-right--light {
  border-left-color: #fff;
}

.icon-triangular-arrow-down {
  border-top: 12px solid #ECE2D1;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0;
}

.icon-triangular-arrow-down--small {
  border-top-width: 10px;
  border-right-width: 8px;
  border-left-width: 8px;
}

.icon-triangular-arrow-down--large {
  border-top-width: 16px;
  border-right-width: 15px;
  border-left-width: 15px;
}

.icon-triangular-arrow-down--primary {
  border-top-color: #ECE2D1;
}

.icon-triangular-arrow-down--tertiary {
  border-top-color: #E9187C;
}

.icon-triangular-arrow-down--light {
  border-top-color: #fff;
}

/* icon cross */
.icon-plus {
  width: 22px;
  height: 22px;
  position: relative;
  overflow: hidden;
  background: url("../img/icons/icon-plus.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.icon-plus--large {
  width: 26px;
  height: 26px;
}
.icon-plus--large:before {
  height: 4px;
  margin: -2px 0 0 0;
}
.icon-plus--large:after {
  width: 4px;
  margin: 0 0 0 -2px;
}

.icon-plus--large-thin {
  width: 26px;
  height: 26px;
}

.icon-plus--small {
  width: 15px;
  height: 15px;
}

.icon-plus--very-small {
  width: 12px;
  height: 12px;
}

.icon-plus--light {
  background-image: url("../img/icons/icon-plus-white.svg");
}

.icon-plus--primary:before, .icon-plus--primary:after {
  background: #ECE2D1;
}

.icon-plus--grey:before, .icon-plus--grey:after {
  background: #E1E1E1;
}

.icon-plus--rotated {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.icon-minus {
  width: 21px;
  height: 21px;
  position: relative;
  overflow: hidden;
}
.icon-minus:before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 100%;
  left: 0;
  top: 50%;
  height: 3px;
  margin: -1.5px 0 0 0;
}

.icon-minus--small {
  width: 16px;
  height: 16px;
}
.icon-minus--small:before {
  height: 2px;
  margin: -1px 0 0 0;
}

.icon-minus--very-small {
  width: 12px;
  height: 12px;
}
.icon-minus--very-small:before {
  height: 2px;
  margin: -1px 0 0 0;
}

.icon-minus--light:before {
  background: #fff;
}

/* player */
.icon-play {
  border-left: 10px solid #000;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  width: 0;
  position: relative;
  left: 1px;
}
@media (min-width: 420px) {
  .icon-play {
    border-left: 16px solid #000;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}
@media (min-width: 768px) {
  .icon-play {
    border-left: 20px solid #000;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    left: 2px;
  }
}
@media (min-width: 1500px) {
  .icon-play {
    border-left: 26px solid #000;
    border-top: 17px solid transparent;
    border-bottom: 17px solid transparent;
    left: 3px;
  }
}

.icon-download {
  width: 18px;
  height: 18px;
}
@media (min-width: 650px) {
  .icon-download {
    width: 20px;
    height: 20px;
  }
}
@media (min-width: 1500px) {
  .icon-download {
    width: 25px;
    height: 25px;
  }
}
.icon-download:before {
  background-image: url("../img/icons/icon-download-pink.svg");
}
.icon-download:after {
  background-image: url("../img/icons/icon-download-green.svg");
}

.icon-download--second-theme:before {
  background-image: url("../img/icons/icon-download-navy.svg");
}
.icon-download--second-theme:after {
  background-image: url("../img/icons/icon-download-gold.svg");
}

.icon-play--light {
  border-left-color: #fff;
}

.icon-pause {
  position: relative;
  width: 12px;
  height: 12px;
}
.icon-pause:before, .icon-pause:after {
  content: "";
  display: block;
  width: 4px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
}
.icon-pause:before {
  left: 0;
}
.icon-pause:after {
  right: 0;
}

.icon-pause--light:before, .icon-pause--light:after {
  background: #fff;
}

.icon-square {
  position: relative;
  width: 12px;
  height: 12px;
}
.icon-square:after {
  content: "";
  display: block;
  width: 12px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
}
.icon-square:after {
  left: 0;
}

.icon-square--light:before, .icon-square--light:after {
  background: #fff;
}

.icon-bullet {
  position: relative;
  width: 24px;
  height: 24px;
}
.icon-bullet:before {
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  background: #ECE2D1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -3px 0 0 -3px;
}
@media (min-width: 1300px) {
  .icon-bullet:before {
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
  }
}

.icon-speaker {
  display: block;
  width: 20px;
  height: 30px;
  background-image: url("../img/icons/icon-speaker.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

.icon-speaker--safari-mobile {
  background-image: url("../img/icons/icon-speaker-safari-mobile.svg");
  width: 36px;
}

.icon-speaker--navy {
  background-image: url("../img/icons/icon-speaker-navy.svg");
}

.icon-rectangle {
  width: 2px;
  height: 20px;
  background-color: #ECE2D1;
}
.icon-rectangle--small {
  height: 14px;
}
.icon-rectangle--height {
  height: 28px;
}

.icon-wrapper {
  padding-left: 4px;
}
.icon-wrapper button {
  display: block;
}

/** icons-end **/
@font-face {
  font-family: "Silk Serif";
  src: url("../fonts/SilkSerif-Regular/SilkSerif-Regular.eot");
  src: url("../fonts/SilkSerif-Regular/SilkSerif-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/SilkSerif-Regular/SilkSerif-Regular.woff") format("woff"), url("../fonts/SilkSerif-Regular/SilkSerif-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

*::selection {
  background-color: #ECE2D1;
  color: #000;
}

html {
  font-family: europa, sans-serif;
  font-size: 14px;
  color: #000;
}

body {
  font-weight: 400;
  font-family: europa, sans-serif;
  position: relative;
}

a {
  color: #000;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
  color: inherit;
  outline: none;
}

ul, ol, li {
  list-style-type: none;
}

.nowrap {
  white-space: nowrap;
}

.line {
  display: block;
}

/***** LINKS *****/
.link-bar {
  color: #ECE2D1;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.link-bar--dark {
  color: #000;
}

.link-nav {
  letter-spacing: 0.05em;
  font-size: 12px;
  font-weight: 300;
  color: #fff;
  display: block;
  padding: 10px;
  transition: color 0.35s ease;
}
.link-nav:hover {
  color: #ECE2D1;
}
@media (min-width: 1700px) {
  .link-nav {
    font-size: 14px;
  }
}

.link-md {
  font-weight: 300;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
  outline: none;
  padding: 5px 10px;
  display: inline-block;
  transition: all 0.45s ease;
  cursor: pointer;
}
.link-md:hover {
  background-color: #ECE2D1;
}

.link-sm {
  cursor: pointer;
  font-weight: 300;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
  outline: none;
  padding: 5px 10px;
  display: inline-block;
}
.link-sm:hover {
  background-color: #ECE2D1;
}
@media (min-width: 1500px) {
  .link-sm {
    font-size: 12px;
  }
}

.lik-bold {
  color: inherit;
  font-weight: bold;
  font-size: 18px;
  outline: none;
  text-transform: none;
}
@media (min-width: 768px) {
  .lik-bold {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .lik-bold {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .lik-bold {
    font-size: 26px;
  }
}

.link-underline {
  display: inline-block;
  padding: 10px;
  border-bottom: 1px solid #ECE2D1;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .link-underline {
    font-size: 15px;
  }
}
.link-underline--next:after {
  content: "";
  display: inline-block;
  background-image: url("../img/icons/icon-arrow-right.svg");
  width: 9px;
  height: 10px;
  background-size: cover;
}
.link-underline--prev:after {
  content: "";
  display: inline-block;
  background-image: url("../img/icons/icon-arrow-right.svg");
  width: 9px;
  height: 10px;
  transform: rotate(180deg);
  background-size: cover;
}
.link-underline--dark {
  border-bottom-color: #000;
}
.link-underline--dark:after {
  background-image: url("../img/icons/icon-arrow-right--dark.svg");
  background-size: cover;
}

/***** HEADERS *****/
.simple-header {
  padding: 0 0 20px 0;
}

.site-header {
  position: relative;
  background: url("../img/header-bg.jpg") no-repeat center;
  background-size: cover;
  color: #ECE2D1;
  overflow: hidden;
}
.site-header__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.site-header__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.site-header__content {
  position: relative;
  z-index: 10;
  height: 100vh;
}
.site-header__slider .slick-track {
  display: flex;
  align-items: center;
}
.site-header__slider .slick-slide {
  position: relative;
  opacity: 0;
  transition: all 0.75s ease;
  transform: scale(0.4) perspective(5px);
}
.site-header__slider .slick-slide.slick-active {
  opacity: 1;
  transform: scale(1) perspective(5px);
}
.site-header__slider .slick-slide.slick-active:first-child {
  transform: scale(1.3) perspective(5px);
}
.site-header__slider .site-header__next-slide {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .site-header__slider .site-header__next-slide {
    margin-top: auto;
    position: absolute;
    left: 0;
    bottom: 50%;
    width: 100%;
  }
}
.site-header__slider .slider-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header__slider .slider-nav__center {
  margin: auto;
}
@media (min-width: 768px) {
  .site-header__slider .slider-nav__next {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(50%);
  }
}
@media (min-width: 992px) {
  .site-header__slider .slider-nav__next {
    transform: translateY(-50%);
  }
}
.site-header__slider .slider__content {
  padding: 25vh 40px 20vh;
  height: 100%;
  display: inline-block;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .site-header__slider .slider__content {
    position: relative;
    display: block;
    text-align: left;
    max-width: 80%;
    margin: auto;
    max-width: 1100px;
  }
}
@media (min-width: 1100px) {
  .site-header__slider .slider__content {
    max-width: 1200px;
  }
}
@media (min-width: 1500px) {
  .site-header__slider .slider__content {
    max-width: 1300px;
  }
}
.site-header__slider .simple-box__title span {
  display: block;
  font-family: europa, sans-serif;
  font-size: 20px;
  font-weight: 300;
  transform: translateX(-30px);
  line-height: 20px;
}
@media (min-width: 768px) {
  .site-header__slider .simple-box__title span {
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .site-header__slider .simple-box__title span {
    font-size: 29px;
  }
}
.site-header__slider .simple-box__description {
  display: inline-block;
}
.site-header__slider .simple-box__description p {
  margin-bottom: 15px;
}
.site-header__slider .simple-box__description p:last-child {
  margin-bottom: 0;
}
.site-header__slider .simple-box__button {
  margin-top: 10px;
}
.site-header__subtitle {
  margin-top: 40px;
  position: relative;
  z-index: 10;
}
.site-header__headphones-toggle {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .site-header__headphones-toggle {
    bottom: 40px;
  }
}
.site-header__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.site-header__video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.site-header__video video {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  width: 177.77777778vh;
}
.site-header__main--subpage {
  background-image: url("../img/subpage-bg.jpg");
  background-size: cover;
  padding: 30% 0;
  background-position: 50% 50%;
}
@media (min-width: 768px) {
  .site-header__main--subpage {
    padding: 20% 0;
  }
}
.site-header__main--subpage:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.55);
}
@media (min-width: 768px) {
  .site-header__main--subpage:before {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
@media (min-width: 992px) {
  .site-header__main--subpage:before {
    display: none;
  }
}
.site-header__main--subpage .site-header__content {
  margin: auto;
  max-width: 65%;
  height: auto;
}
@media (min-width: 768px) {
  .site-header__main--subpage .site-header__content {
    margin-right: auto;
    margin-left: 8%;
    max-width: 25%;
  }
}
@media (min-width: 992px) {
  .site-header__main--subpage .site-header__content {
    margin-left: 5.5%;
    max-width: 35%;
  }
}
@media (min-width: 1100px) {
  .site-header__main--subpage .site-header__content {
    margin-left: 6%;
    max-width: 30%;
  }
}
@media (min-width: 1300px) {
  .site-header__main--subpage .site-header__content {
    margin-left: 9%;
  }
}
@media (min-width: 1500px) {
  .site-header__main--subpage .site-header__content {
    margin-left: 11%;
  }
}
@media (min-width: 1700px) {
  .site-header__main--subpage .site-header__content {
    margin-left: 12%;
  }
}
.site-header__main--subpage .type-container img {
  width: 100%;
  display: inherit;
}
.site-header__main--subpage .title-container {
  color: #fff;
}
@media (min-width: 768px) {
  .site-header__main--subpage .title-container {
    color: #000;
  }
}

.section-header {
  padding: 0 0 32px 0;
}

.section-title {
  font-family: "Silk Serif", sans-serif;
  font-weight: normal;
  line-height: 1;
  font-size: 46px;
}
@media (min-width: 360px) {
  .section-title {
    font-size: 54px;
  }
}
@media (min-width: 768px) {
  .section-title {
    font-size: 58px;
  }
}
@media (min-width: 992px) {
  .section-title {
    font-size: 70px;
  }
}
@media (min-width: 1100px) {
  .section-title {
    font-size: 74px;
  }
}
@media (min-width: 1300px) {
  .section-title {
    font-size: 82px;
  }
}

.section-subtitle {
  font-weight: 300;
  line-height: 100%;
  font-size: 18px;
  display: block;
}
@media (min-width: 768px) {
  .section-subtitle {
    font-size: 22px;
    text-align: right;
  }
}
@media (min-width: 992px) {
  .section-subtitle {
    font-size: 29px;
  }
}

.page-title {
  font-size: 56px;
  line-height: 64px;
  font-weight: 700;
  font-family: "Silk Serif", sans-serif;
}
@media (min-width: 480px) {
  .page-title {
    font-size: 64px;
    line-height: 72px;
  }
}
@media (min-width: 992px) {
  .page-title {
    font-size: 72px;
    line-height: 80px;
  }
}
@media (min-width: 1300px) {
  .page-title {
    font-size: 80px;
    line-height: 88px;
  }
}
@media (min-width: 1500px) {
  .page-title {
    font-size: 88px;
    line-height: 96px;
  }
}
@media (min-width: 1700px) {
  .page-title {
    font-size: 96px;
    line-height: 104px;
  }
}

.lead {
  text-align: center;
}
.lead__header {
  padding: 0 0 20px 0;
}
@media (min-width: 1500px) {
  .lead__header {
    padding-bottom: 28px;
  }
}
.lead__button-container {
  padding: 28px 0 0 0;
}
@media (min-width: 1700px) {
  .lead__button-container {
    padding-top: 36px;
  }
}
.lead__button-container--desktop {
  display: none;
}
@media (min-width: 992px) {
  .lead__button-container--desktop {
    display: block;
  }
}

.lead--type-01 {
  text-align: left;
}

.lead--type-03 {
  text-align: left;
  max-width: 420px;
}
.lead--type-03 .lead__content {
  margin: 0;
}
.lead--type-03 .lead__button-container {
  padding-left: 20px;
}

.subsection-header {
  position: relative;
  padding: 18px 0 32px 0;
}
@media (min-width: 420px) {
  .subsection-header {
    padding: 0 0 0 96px;
    margin: 0 0 40px 0;
  }
}
@media (min-width: 768px) {
  .subsection-header {
    margin-bottom: 30px;
  }
}
@media (min-width: 1300px) {
  .subsection-header {
    margin-bottom: 40px;
  }
}
.subsection-header:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 80px;
  height: 1px;
  margin: 0 0 0 -40px;
  background: #000;
}
@media (min-width: 420px) {
  .subsection-header:before {
    left: 0;
    margin: -1px 0 0 0;
    top: 50%;
  }
}

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

/* headers-end */
/***** FOOTER *****/
.site-footer {
  text-align: center;
  position: relative;
  z-index: 100;
}
@media (min-width: 650px) {
  .site-footer {
    text-align: left;
  }
}
.site-footer a {
  font-weight: 300;
}
.site-footer__wrapper {
  padding: 40px 0 20px 0;
}
@media (min-width: 1100px) {
  .site-footer__wrapper {
    padding-top: 60px;
  }
}
@media (min-width: 1300px) {
  .site-footer__wrapper {
    padding-top: 100px;
  }
}
@media (min-width: 1500px) {
  .site-footer__wrapper {
    padding-top: 160px;
    padding-bottom: 30px;
  }
}
.site-footer__layer {
  padding: 0 40px;
}
@media (min-width: 360px) {
  .site-footer__layer {
    padding: 0 40px;
  }
}
@media (min-width: 650px) {
  .site-footer__layer {
    padding: 0 40px;
  }
}
.site-footer__inner {
  max-width: 660px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .site-footer__inner {
    max-width: 820px;
  }
}
@media (min-width: 1300px) {
  .site-footer__inner {
    max-width: 1060px;
  }
}
@media (min-width: 1700px) {
  .site-footer__inner {
    max-width: 1200px;
  }
}
@media (min-width: 768px) {
  .site-footer__row:nth-child(3) .flex-container {
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .site-footer__row:nth-child(3) .flex-container .flex-container__item:nth-child(1) {
    width: auto;
  }
}
.site-footer .link-container {
  margin-bottom: 20px;
}
.site-footer .link-container:last-child {
  margin-bottom: 0;
}
.site-footer .logo-container {
  width: 200px;
  margin: auto;
}
@media (min-width: 650px) {
  .site-footer .logo-container {
    margin-left: 0;
  }
}
.site-footer .logo path, .site-footer .logo-festival path, .site-footer .logo-jwg path {
  fill: #47443F;
}
@media (max-width: 767px) {
  .site-footer .horizontal-list {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (max-width: 767px) {
  .site-footer .horizontal-list__item {
    margin: auto auto 10px;
  }
}
@media (max-width: 767px) {
  .site-footer .horizontal-list__item:last-child {
    margin-bottom: 0;
    margin-right: auto;
  }
}
@media (min-width: 650px) {
  .site-footer .flex-container {
    flex-direction: row;
    justify-content: space-between;
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .site-footer .flex-container {
    width: 57%;
  }
}
@media (min-width: 1100px) {
  .site-footer .flex-container {
    width: 52%;
  }
}
.site-footer .flex-container .flex-container__item {
  margin-bottom: 35px;
}
@media (min-width: 650px) {
  .site-footer .flex-container .flex-container__item {
    margin-bottom: auto;
  }
}
.site-footer .flex-container .flex-container__item:nth-child(1) {
  /*@media (min-width: $rwd-1300) {
      margin-right: 150px;
  }
  @media (min-width: $rwd-1500) {
      margin-right: 200px;
  }*/
}
@media (min-width: 650px) {
  .site-footer .flex-container .flex-container__item:nth-child(1) {
    width: 220px;
  }
}
@media (min-width: 768px) {
  .site-footer .flex-container .flex-container__item:nth-child(1) {
    margin-right: 50px;
  }
}
@media (min-width: 900px) {
  .site-footer .flex-container .flex-container__item:nth-child(1) {
    margin-right: 20px;
    width: 400px;
  }
}
@media (min-width: 1100px) {
  .site-footer .flex-container .flex-container__item:nth-child(1) {
    margin-right: 30px;
  }
}
@media (min-width: 650px) {
  .site-footer .flex-container .flex-container__item:nth-child(2) {
    margin-right: 40px;
  }
}
@media (min-width: 768px) {
  .site-footer .flex-container .flex-container__item:nth-child(2) {
    margin-right: 50px;
  }
}
@media (min-width: 992px) {
  .site-footer .flex-container .flex-container__item:nth-child(2) {
    margin-right: 0;
    margin-left: auto;
    width: 174px;
  }
}
@media (min-width: 1100px) {
  .site-footer .flex-container .flex-container__item:nth-child(2) {
    width: 33%;
  }
}
.site-footer .flex-container .flex-container__item:nth-child(3) {
  /*@media (min-width: $rwd-1500) {
      position: relative;
      right: auto;
      width: 19.6%;
      margin-right: 24%;
      margin-left: auto;
  }
  @media (min-width: $rwd-1700) {
      width: 17.3%;
      margin-right: 25%;
  }*/
}
@media (min-width: 768px) {
  .site-footer .flex-container .flex-container__item:nth-child(3) {
    width: 25%;
  }
}
@media (min-width: 992px) {
  .site-footer .flex-container .flex-container__item:nth-child(3) {
    text-align: center;
    width: 14.5%;
    position: absolute;
    right: 23.8%;
  }
}
.site-footer .flex-container .flex-container__item:nth-child(3) .flex-container__item:last-child {
  margin-right: auto;
}
.site-footer .flex-container .flex-container__item:last-child {
  margin-bottom: 0;
}

.golden-ratio-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1;
  display: none;
  text-align: center;
}
@media (min-width: 992px) {
  .golden-ratio-container {
    display: block;
  }
}
.golden-ratio-container img {
  display: inherit;
  width: 100%;
  height: 100%;
  max-width: 100%;
  margin: auto;
}

.footer-group {
  position: relative;
}

.site-footer__row {
  margin-top: 35px;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .site-footer__row {
    margin-top: 40px;
    margin-bottom: 40px;
    padding-left: 7%;
  }
}
@media (min-width: 1100px) {
  .site-footer__row {
    padding-left: 10%;
  }
}
@media (min-width: 1300px) {
  .site-footer__row {
    margin-top: 55px;
    margin-bottom: 55px;
  }
}
@media (min-width: 768px) {
  .site-footer__row:nth-child(3) .flex-container__item:nth-child(1) .horizontal-list__item:first-child {
    margin-right: 58px;
  }
}
@media (min-width: 992px) {
  .site-footer__row:nth-child(3) .flex-container__item:nth-child(1) .horizontal-list__item:first-child {
    margin-right: 30px;
  }
}
@media (min-width: 1500px) {
  .site-footer__row:nth-child(3) .flex-container__item:nth-child(1) .horizontal-list__item:first-child {
    margin-right: 31px;
  }
}
@media (min-width: 650px) {
  .site-footer__row:nth-child(3) .flex-container__item:last-child {
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .site-footer__row:nth-child(3) .flex-container__item:last-child {
    margin-right: 0;
  }
}

.footer-nav__item {
  display: inline-block;
}

.color-light {
  color: #fff;
}

/***** LISTS *****/
.simple-list {
  list-style-type: none;
}
.simple-list > li {
  display: block;
  padding: 4px 0;
}

.horizontal-list__item {
  display: inline-block;
}

.horizontal-links {
  text-align: center;
}
@media (min-width: 992px) {
  .horizontal-links {
    text-align: left;
  }
}
.horizontal-links > li {
  padding: 8px 0;
}
@media (min-width: 650px) {
  .horizontal-links > li {
    display: inline-block;
    padding: 0 12px;
    vertical-align: middle;
    margin: 0 0 0 -4px;
  }
}
@media (min-width: 1300px) {
  .horizontal-links > li {
    padding: 0 20px;
  }
}
@media (min-width: 650px) {
  .horizontal-links > li:first-child {
    padding-left: 0;
  }
}
@media (min-width: 650px) {
  .horizontal-links > li:last-child {
    padding-right: 0;
  }
}

.social-list__item {
  display: inline-block;
}
.social-list__item .link-md {
  padding: 5px 7px;
}
.social-list__item .link-md:hover {
  font-weight: bold;
}

/***** PICTURES *****/
.logo, .logo-festival, .logo-jwg {
  text-align: left;
}
.logo img:last-child, .logo-festival img:last-child, .logo-jwg img:last-child {
  display: none;
}
.logo--dark img:first-child {
  display: none;
}
.logo--dark img:last-child {
  display: block;
}

.logo-jwg {
  background-image: url("../img/logo-jwg.svg");
  width: 120px;
  height: 29px;
}

.logo-jwg--light {
  background-image: url("../img/logo-jwg-light.svg");
}

.logo-festival {
  background-image: url("../img/logo-festival.svg");
  width: 188px;
  height: 50px;
}
@media (min-width: 1700px) {
  .logo-festival {
    width: 240px;
    height: 62px;
  }
}

.independent-picture {
  display: block;
  width: 100%;
}

/***** TEXT *****/
.failure {
  color: #DB2B39;
}

.text, .simple-label {
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
}
@media (min-width: 1700px) {
  .text, .simple-label {
    font-size: 18px;
    line-height: 26px;
  }
}
.text--justify {
  text-align: justify;
}
.text--size-01 {
  max-width: 320px;
}
.text--size-02 {
  max-width: 450px;
}
.text--size-03 {
  max-width: 260px;
}
.text h3, .simple-label h3 {
  font-size: 16px;
  font-weight: 700;
  padding: 20px 0 0 0;
  margin: 0;
}
@media (min-width: 1700px) {
  .text h3, .simple-label h3 {
    font-size: 18px;
    padding: 32px 0 8px 0;
  }
}
.text h3:first-child, .simple-label h3:first-child {
  padding-top: 0;
}
.text p, .simple-label p {
  padding: 5px 0;
}
.text p:first-child, .simple-label p:first-child {
  padding-top: 0;
}
.text p:last-child, .simple-label p:last-child {
  padding-bottom: 0;
}
.text img, .simple-label img {
  width: auto;
  display: block;
}
.text ul, .simple-label ul,
.text ol,
.simple-label ol {
  padding: 0 0 16px 20px;
}
.text ul > li, .simple-label ul > li,
.text ol > li,
.simple-label ol > li {
  padding: 2px 0 2px 16px;
  position: relative;
}
@media (min-width: 1700px) {
  .text ul > li, .simple-label ul > li,
.text ol > li,
.simple-label ol > li {
    padding: 3px 0 3px 20px;
  }
}
.text ul > li:before, .simple-label ul > li:before {
  content: "";
  display: block;
  position: absolute;
  top: 12px;
  left: 0;
  width: 6px;
  height: 6px;
  background: #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
@media (min-width: 1700px) {
  .text ul > li:before, .simple-label ul > li:before {
    top: 14px;
  }
}
.text ol, .simple-label ol {
  counter-reset: stdCounter;
}
.text ol > li, .simple-label ol > li {
  padding: 3px 0 3px 28px;
}
@media (min-width: 1700px) {
  .text ol > li, .simple-label ol > li {
    padding: 5px 0 5px 32px;
  }
}
.text ol > li:before, .simple-label ol > li:before {
  content: counters(stdCounter, ".") ".";
  counter-increment: stdCounter;
  width: 20px;
  text-align: right;
  top: 3px;
  position: absolute;
  left: 0;
}
@media (min-width: 1700px) {
  .text ol > li:before, .simple-label ol > li:before {
    width: 24px;
    top: 5px;
  }
}
.text ol > li::marker, .simple-label ol > li::marker {
  content: "";
}
.text ol > li > ol, .simple-label ol > li > ol {
  counter-reset: stdCounterInner;
}
.text ol > li > ol > li:before, .simple-label ol > li > ol > li:before {
  content: counters(stdCounterInner, ".", lower-latin) ".";
  counter-increment: stdCounterInner;
}

.text--document > ol {
  counter-reset: document;
  padding: 0 0 0 30px;
}
.text--document > ol > li {
  counter-increment: document;
  position: relative;
  margin: 20px 0;
  padding: 0;
}
.text--document > ol > li:before {
  content: counters(document, ".") ")";
  position: absolute;
  top: 0;
  font-weight: 500;
  left: -30px;
}
.text--document > ol > li > ol {
  counter-reset: letters;
}
.text--document > ol > li > ol > li {
  counter-increment: letters;
  position: relative;
  list-style-type: none;
}
.text--document > ol > li > ol > li:before {
  content: counter(letters, lower-alpha) ".";
  position: absolute;
  top: 2px;
  font-weight: 500;
  left: 0;
}

.text--large {
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 1300px) {
  .text--large {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1700px) {
  .text--large {
    font-size: 24px;
    line-height: 32px;
  }
}

.text--small {
  font-size: 12px;
  line-height: 20px;
}
@media (min-width: 1700px) {
  .text--small {
    font-size: 16px;
    line-height: 24px;
  }
}

.text--independent {
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}

.text-container p {
  margin-bottom: 20px;
}
.text-container p:last-child {
  margin-bottom: 0;
}

@media (min-width: 650px) {
  .simple-label {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (min-width: 1300px) {
  .simple-label {
    font-size: 14px;
    line-height: 22px;
  }
}
.simple-label__header {
  padding: 0 0 4px 0;
}
@media (min-width: 650px) {
  .simple-label__header {
    padding: 0 8px 0 0;
  }
}
.simple-label__content {
  font-weight: 500;
}
.simple-label__content a {
  font-weight: 500;
}

/***** CONTAINERS *****/
.site-wrapper {
  overflow: hidden;
  margin: 0 auto;
}

.site-bar__wrapper {
  padding: 20px 0;
}
@media (min-width: 992px) {
  .site-bar__wrapper {
    padding: 25px 0;
  }
}
@media (min-width: 1300px) {
  .site-bar__wrapper {
    padding: 55px 0;
  }
}
.site-bar__inner {
  padding: 0 20px;
  max-width: 1350px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 650px) {
  .site-bar__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1700px) {
  .site-bar__inner {
    max-width: 1500px;
  }
}
.site-bar__logo {
  width: 100px;
}
@media (min-width: 768px) {
  .site-bar__logo {
    width: 122px;
  }
}
@media (min-width: 768px) {
  .site-bar__logo {
    width: 142px;
  }
}
@media (min-width: 1300px) {
  .site-bar__logo {
    margin-left: 3%;
  }
}
.site-bar__nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 14px 50px 0 0;
}
@media (min-width: 768px) {
  .site-bar__nav {
    padding: 16px 72px 0 0;
  }
}
@media (min-width: 1300px) {
  .site-bar__nav {
    padding: 16px 120px 0 0;
  }
}
.site-bar__nav-inner {
  margin-left: auto;
  display: none;
}
@media (min-width: 768px) {
  .site-bar__nav-inner {
    display: block;
  }
}
@media (min-width: 768px) {
  .site-bar__nav-special {
    padding: 0 0 0 40px;
  }
}

.created-by {
  text-align: center;
}
@media (min-width: 768px) {
  .created-by {
    text-align: left;
  }
}
@media (min-width: 1100px) {
  .created-by {
    display: flex;
    align-items: center;
  }
}
.created-by__description {
  padding: 0 0 8px 0;
  font-size: 12px;
}
@media (min-width: 1100px) {
  .created-by__description {
    padding: 0 12px 0 0;
  }
}
.created-by__logo {
  margin: 0 auto;
}
@media (min-width: 768px) {
  .created-by__logo {
    margin: 0;
  }
}

.std-simple-bookmark {
  display: inline-block;
  font-family: "Silk Serif", sans-serif;
  font-weight: 700;
  font-size: 20px;
  padding: 0 0 13px 0;
  position: relative;
}
.std-simple-bookmark:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ECE2D1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.std-simple-bookmark.active:before {
  height: 9px;
}

.std-dropdown {
  width: 260px;
}
.std-dropdown__icon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  -moz-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  margin: -2px 0 0 0;
}
.std-dropdown__list-container {
  background: #fff;
  padding: 10px 0;
  -webkit-box-shadow: -3px 6px 20px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -3px 6px 20px rgba(0, 0, 0, 0.1);
  box-shadow: -3px 6px 20px rgba(0, 0, 0, 0.1);
}

.std-dropdown-item input:checked ~ .std-dropdown-item__wrapper {
  background: #ECE2D1;
}
.std-dropdown-item__wrapper {
  padding: 8px 20px;
  font-size: 16px;
}

.simple-carousel {
  position: relative;
  overflow: hidden;
}
.simple-carousel__wrapper {
  padding: 20px 0;
  position: relative;
  z-index: 4;
}
.simple-carousel__inner {
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 1500px) {
  .simple-carousel__inner {
    max-width: 1200px;
  }
}
/** containers-end **/
/***** MENU *****/
.menu-toggler-container {
  cursor: pointer;
}

#menu-toggler {
  position: fixed;
  top: 30px;
  right: 20px;
  z-index: 9000;
}
#menu-toggler svg {
  display: inline-block;
}
@media (min-width: 650px) {
  #menu-toggler {
    right: 40px;
  }
}
@media (min-width: 768px) {
  #menu-toggler {
    right: 40px;
    top: 33px;
  }
}
@media (min-width: 992px) {
  #menu-toggler {
    right: 45px;
    top: 38px;
  }
}
@media (min-width: 1300px) {
  #menu-toggler {
    top: 69px;
    right: 85px;
  }
}
@media (min-width: 1500px) {
  #menu-toggler {
    right: 8.5%;
  }
}
@media (min-width: 1600px) {
  #menu-toggler {
    right: 10%;
  }
}
@media (min-width: 1650px) {
  #menu-toggler {
    right: 11%;
  }
}
@media (min-width: 1700px) {
  #menu-toggler {
    right: 8%;
  }
}
@media (min-width: 1750px) {
  #menu-toggler {
    right: 9%;
  }
}
@media (min-width: 1800px) {
  #menu-toggler {
    right: 10%;
  }
}
@media (min-width: 1850px) {
  #menu-toggler {
    right: 11%;
  }
}
@media (min-width: 1900px) {
  #menu-toggler {
    right: 12%;
  }
}

@media (min-width: 992px) {
  .menu {
    text-align: left;
  }
}
.menu__core {
  list-style-type: none;
}
.menu__core > li {
  display: block;
  padding: 6px 0;
}
@media (min-width: 768px) {
  .menu__core > li:first-child {
    padding-top: 0;
  }
}
@media (min-width: 768px) {
  .menu__core > li:last-child {
    padding-bottom: 0;
  }
}

.menu--large .menu__core > li {
  padding: 12px 0;
}
@media (min-width: 1300px) {
  .menu--large .menu__core > li {
    padding: 16px 0;
  }
}

.menu-item {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.menu-item:hover, .menu-item:focus {
  color: #043F3C;
}

.menu-item--large {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 1300px) {
  .menu-item--large {
    font-size: 20px;
  }
}

.menu-item--light {
  color: #fff;
}
.menu-item--light:hover, .menu-item--light:focus {
  color: #ECE2D1;
}

.menu-item--contrast {
  color: #000;
}
.menu-item--contrast:hover, .menu-item--contrast:focus {
  color: #fff;
}

@media (min-width: 650px) {
  .menu-groups {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 650px) {
  .menu-groups__item {
    padding: 0 20px;
  }
}
@media (min-width: 1300px) {
  .menu-groups__item {
    padding: 0 40px;
  }
}
.menu-groups__item:first-child {
  padding-left: 0;
}
.menu-groups__item:last-child {
  padding-right: 0;
}

/* menu-end */
/***** FORMS *****/
.form {
  max-width: 320px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .form {
    margin: 0;
  }
}
@media (min-width: 1300px) {
  .form {
    max-width: 386px;
  }
}
.form__wrapper {
  border: 0;
  display: block;
}
.form__header {
  padding: 0 0 16px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .form__header {
    text-align: left;
  }
}
.form__button-row-button-container {
  text-align: center;
  padding: 20px 0 0 0;
}
@media (min-width: 768px) {
  .form__button-row-button-container {
    text-align: left;
  }
}
@media (min-width: 1300px) {
  .form__button-row-button-container {
    padding: 0;
  }
}
@media (min-width: 1300px) {
  .form__button-row {
    display: flex;
    align-items: flex-end;
  }
}
@media (min-width: 1300px) {
  .form__button-row-field {
    padding: 0 16px 0 0;
    width: 265px;
  }
}
@media (min-width: 1700px) {
  .form__button-row-field {
    padding-right: 24px;
  }
}
.form__info-container {
  padding: 20px 0 0 0;
}

.form-field {
  display: block;
}
.form-field__core {
  display: block;
  padding: 8px 0;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  border: 0;
  border-bottom: 1px solid #000;
  color: #000;
  position: relative;
  font-size: 14px;
  text-align: center;
  z-index: 5;
  font-family: europa, sans-serif;
  font-weight: 400;
  background: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
@media (min-width: 768px) {
  .form-field__core {
    text-align: left;
  }
}
.form-field__core:focus {
  border-color: #043F3C;
}
.form-field__core::-webkit-input-placeholder {
  color: #000;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-field__core::-webkit-input-placeholder {
    text-align: left;
  }
}
.form-field__core:-moz-placeholder {
  color: #000;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-field__core:-moz-placeholder {
    text-align: left;
  }
}
.form-field__core::-moz-placeholder {
  color: #000;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-field__core::-moz-placeholder {
    text-align: left;
  }
}
.form-field__core:-ms-input-placeholder {
  color: #000;
  font-weight: 400;
  opacity: 1;
  text-align: center;
}
@media (min-width: 768px) {
  .form-field__core:-ms-input-placeholder {
    text-align: left;
  }
}
.form-field.error .form-field__core {
  border-color: #DB2B39;
}

.form-field--light .form-field__core {
  color: #fff;
  border-color: #fff;
}
.form-field--light .form-field__core::-webkit-input-placeholder {
  color: #fff;
}
.form-field--light .form-field__core:-moz-placeholder {
  color: #fff;
}
.form-field--light .form-field__core::-moz-placeholder {
  color: #fff;
}
.form-field--light .form-field__core:-ms-input-placeholder {
  color: #fff;
}

/***** BUTTONS *****/
.button-container {
  text-align: center;
  padding: 48px 0 0 0;
}

.button-container--type-01 {
  padding: 30px 0 0 0;
}
@media (min-width: 768px) {
  .button-container--type-01 {
    text-align: left;
  }
}

@media (min-width: 420px) {
  .button-container--type-02 {
    text-align: right;
  }
}

.button-wrapper {
  display: inline-block;
  position: relative;
}
.button-wrapper__inner {
  position: relative;
}
.button-wrapper__spinner {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  height: 100%;
  padding: 0 0 0 10px;
  -webkit-transform: translateZ(0);
  z-index: 2;
  text-align: center;
}

.button {
  clear: both;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 0 -3px;
  padding: 0;
  cursor: pointer;
  font-weight: 400;
  color: #fff;
  font-size: 14px;
  font-family: europa, sans-serif;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  background: none;
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  white-space: nowrap;
}
@media (min-width: 1700px) {
  .button {
    font-size: 16px;
  }
}
.button .button__wrapper {
  padding: 4px 20px 6px 20px;
  position: relative;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button .button__wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: 2;
  background: #043F3C;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.button .button__wrapper:after {
  content: "";
  display: block;
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  background: #ECE2D1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button__inner {
  position: relative;
  z-index: 10;
}
.button:hover .button__wrapper:after {
  top: 0;
}

.button--light {
  color: #000;
}
.button--light .button__wrapper:before {
  background: #fff;
}

.button--stroke {
  color: #043F3C;
}
.button--stroke .button__wrapper:before {
  border: 1px solid #043F3C;
  background: none;
}
.button--stroke .button__wrapper:after {
  background: #043F3C;
}
.button--stroke:hover, .button--stroke:focus {
  color: #fff;
}

.button--stroke.button--light {
  color: #fff;
}
.button--stroke.button--light .button__wrapper:before {
  border: 1px solid #fff;
  background: none;
}
.button--stroke.button--light .button__wrapper:after {
  background: #fff;
}
.button--stroke.button--light:hover, .button--stroke.button--light:focus {
  color: #043F3C;
}

.button--full-width {
  display: block;
}

/***** ICONS *****/
.icon-close {
  width: 24px;
  height: 24px;
  position: relative;
}
.icon-close:before, .icon-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  background-color: #A99F8D;
}
.icon-close:before {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.icon-close:after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon-action, .icon-instagram, .icon-youtube, .icon-facebook {
  width: 21px;
  height: 21px;
}

.icon-action--large, .icon-instagram--large, .icon-youtube--large, .icon-facebook--large {
  width: 28px;
  height: 28px;
}

@media (min-width: 1700px) {
  .icon-action--enlarging {
    width: 26px;
    height: 26px;
  }
}

.icon-facebook:before {
  background-image: url("../img/icons/small-icons/icon-facebook.svg");
}
.icon-facebook:after {
  background-image: url("../img/icons/small-icons/icon-facebook.svg");
}

.icon-facebook.icon-action--light:before,
.icon-facebook.icon-facebook--light:before {
  background-image: url("../img/icons/small-icons/icon-facebook-light.svg");
}
.icon-facebook.icon-action--light:after,
.icon-facebook.icon-facebook--light:after {
  background-image: url("../img/icons/small-icons/icon-facebook-primary.svg");
}

.icon-youtube:before {
  background-image: url("../img/icons/small-icons/icon-youtube.svg");
}
.icon-youtube:after {
  background-image: url("../img/icons/small-icons/icon-youtube.svg");
}

.icon-youtube.icon-action--light:before,
.icon-youtube.icon-youtube--light:before {
  background-image: url("../img/icons/small-icons/icon-youtube-light.svg");
}
.icon-youtube.icon-action--light:after,
.icon-youtube.icon-youtube--light:after {
  background-image: url("../img/icons/small-icons/icon-youtube-primary.svg");
}

.icon-instagram:before {
  background-image: url("../img/icons/small-icons/icon-instagram.svg");
}
.icon-instagram:after {
  background-image: url("../img/icons/small-icons/icon-instagram.svg");
}

.icon-instagram.icon-action--light:before,
.icon-instagram.icon-instagram--light:before {
  background-image: url("../img/icons/small-icons/icon-instagram-light.svg");
}
.icon-instagram.icon-action--light:after,
.icon-instagram.icon-instagram--light:after {
  background-image: url("../img/icons/small-icons/icon-instagram-primary.svg");
}

.icon-search {
  width: 21px;
  height: 21px;
}
.icon-search:before {
  background-image: url("../img/icons/small-icons/icon-search.svg");
}
.icon-search:after {
  background-image: url("../img/icons/small-icons/icon-search-primary.svg");
}

.icon-search.icon-action--light:before,
.icon-search.icon-search--light:before {
  background-image: url("../img/icons/small-icons/icon-search-light.svg");
}
.icon-search.icon-action--light:after,
.icon-search.icon-search--light:after {
  background-image: url("../img/icons/small-icons/icon-search-primary.svg");
}

/***** SECTIONS *****/
.row {
  padding: 40px 0 0 0;
}
.row:first-child {
  padding-top: 0;
}

.site-section {
  position: relative;
}
.site-section__layer {
  padding: 0 40px;
}
@media (min-width: 360px) {
  .site-section__layer {
    padding: 0 40px;
  }
}
@media (min-width: 650px) {
  .site-section__layer {
    padding: 0 40px;
  }
}
.site-section__wrapper {
  padding: 64px 0;
}
@media (min-width: 992px) {
  .site-section__wrapper {
    padding: 80px 0;
  }
}
@media (min-width: 1700px) {
  .site-section__wrapper {
    padding: 120px 0;
  }
}
@media (min-width: 1300px) {
  .site-section__wrapper--high {
    padding: 100px 0;
  }
}
@media (min-width: 1700px) {
  .site-section__wrapper--high {
    padding: 160px 0;
  }
}
.site-section__wrapper--only-top {
  padding-bottom: 0;
}
.site-section__wrapper--only-bottom {
  padding-top: 0;
}
.site-section__inner {
  max-width: 660px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .site-section__inner {
    max-width: 820px;
  }
}
@media (min-width: 1300px) {
  .site-section__inner {
    max-width: 1060px;
  }
}
@media (min-width: 1700px) {
  .site-section__inner {
    max-width: 1200px;
  }
}
@media (min-width: 1100px) {
  .site-section__inner--wide {
    max-width: 860px;
  }
}
@media (min-width: 1300px) {
  .site-section__inner--wide {
    max-width: 950px;
  }
}
@media (min-width: 1700px) {
  .site-section__inner--wide {
    max-width: 1200px;
  }
}

.header-title {
  text-align: center;
  font-weight: normal;
  font-size: 60px;
  line-height: 1;
  font-family: "Silk Serif", sans-serif;
}
@media (min-width: 370px) {
  .header-title {
    font-size: 75px;
  }
}
@media (min-width: 420px) {
  .header-title {
    font-size: 80px;
    line-height: 1.1;
  }
}
@media (min-width: 500px) {
  .header-title {
    font-size: 100px;
    line-height: 1.1;
  }
}
@media (min-width: 768px) {
  .header-title {
    font-size: 60px;
  }
}
@media (min-width: 992px) {
  .header-title {
    font-size: 80px;
  }
}
@media (min-width: 1100px) {
  .header-title {
    font-size: 90px;
  }
}
@media (min-width: 1300px) {
  .header-title {
    font-size: 110px;
  }
}

.header-subtitle {
  text-align: center;
  font-weight: normal;
  font-size: 18px;
  font-family: "Silk Serif", sans-serif;
}
@media (min-width: 768px) {
  .header-subtitle {
    font-size: 24px;
  }
}

.title-xl-02 {
  font-weight: normal;
  font-size: 36px;
  font-family: "Silk Serif", sans-serif;
}
@media (min-width: 768px) {
  .title-xl-02 {
    font-size: 56px;
  }
}
@media (min-width: 992px) {
  .title-xl-02 {
    font-size: 82px;
  }
}

.title-md-01 {
  font-weight: normal;
  line-height: 1;
  font-size: 18px;
  font-family: "Silk Serif", sans-serif;
}
@media (min-width: 768px) {
  .title-md-01 {
    font-size: 24px;
  }
}

.title-md-02 {
  font-weight: 300;
  font-size: 16px;
}
@media (min-width: 768px) {
  .title-md-02 {
    font-size: 19px;
  }
}

.title-md-03 {
  font-weight: normal;
  font-size: 24px;
  font-family: "Silk Serif", sans-serif;
}
@media (min-width: 768px) {
  .title-md-03 {
    font-size: 32px;
  }
}

.title-md-04 {
  font-weight: normal;
  line-height: 1;
  font-size: 14px;
  font-family: "Silk Serif", sans-serif;
}
@media (min-width: 768px) {
  .title-md-04 {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .title-md-04 {
    font-size: 18px;
  }
}

.title-md-05 {
  font-weight: normal;
  line-height: 1;
  color: inherit;
  outline: none;
  font-size: 18px;
}
@media (min-width: 768px) {
  .title-md-05 {
    font-size: 24px;
  }
}

.title-md-06 {
  font-weight: normal;
  font-size: 24px;
  font-family: "Silk Serif", sans-serif;
}
@media (min-width: 768px) {
  .title-md-06 {
    font-size: 34px;
  }
}
@media (min-width: 992px) {
  .title-md-06 {
    font-size: 44px;
  }
}
@media (min-width: 1300px) {
  .title-md-06 {
    font-size: 52px;
  }
}

.title-sm {
  font-size: 14px;
  font-weight: 300;
}

.title-sm-02 {
  font-size: 12px;
  font-weight: normal;
}

.title-sm-03 {
  font-weight: 300;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000000;
  outline: none;
  display: inline-block;
}
@media (min-width: 1500px) {
  .title-sm-03 {
    font-size: 12px;
  }
}

.icon-sm {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-sm-02 {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-md {
  display: inline-block;
  width: 44px;
  height: 44px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
}

.icon-headphones {
  background-image: url("../img/icons/icon-headphone.svg");
  position: relative;
}
.icon-headphones:before {
  content: "";
  position: absolute;
  left: -8px;
  top: 14px;
  width: 45px;
  height: 1px;
  background-color: #ECE2D1;
  transform: rotate(-25deg);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.icon-headphones--through:before {
  opacity: 1;
}

.icon-voice {
  background-image: url("../img/icons/icon-voice.svg");
}

.icon-mic {
  background-image: url("../img/icons/icon-mic.svg");
}

.icon-playing {
  background-image: url("../img/icons/icon-playing.svg");
}

.icon-play-audio {
  background-image: url("../img/icons/icon-play.svg");
}

.icon-drag {
  background-image: url("../img/icons/icon-drag.svg");
}

.image-container img {
  width: 100%;
}

.circle-text {
  font-size: 12px;
  position: relative;
  text-align: right;
}
.circle-text:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  margin-right: 15px;
}

.horizontal-list__item {
  display: inline-block;
  margin-right: 20px;
}
@media (min-width: 768px) {
  .horizontal-list__item {
    margin-right: 40px;
  }
}
.horizontal-list__item:last-child {
  margin-right: 0;
}

.flex-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex-list__item {
  margin-bottom: 30px;
}
.flex-list__item:last-child {
  margin-bottom: 0;
}

.rellax {
  transition: all 0.75s ease;
}

.video {
  position: relative;
  cursor: pointer;
  width: 100%;
  height: 100%;
}
.video__play {
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  z-index: 1;
  transition: all 0.75s ease;
}
.video__play:before {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  border: 1.5px solid #ECE2D1;
  border-radius: 99999px 0 0 0;
}
.video__fullscreen-icon {
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: 21px;
  height: 21px;
  z-index: 1;
  background: url("../img/icons/icon-fullscreen.svg") no-repeat center;
  background-size: contain;
}
@media (min-width: 768px) {
  .video__fullscreen-icon {
    bottom: 20px;
    left: 20px;
    width: 23px;
    height: 23px;
  }
}
@media (min-width: 992px) {
  .video__fullscreen-icon {
    bottom: 27px;
    left: 27px;
    width: 29px;
    height: 29px;
  }
}
.video__cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/video-cover.jpg") no-repeat center;
  background-size: cover;
  z-index: 0;
  transition: all 0.75s ease;
}
.video--cover {
  padding-bottom: 60%;
}
@media (min-width: 768px) {
  .video--cover {
    padding-bottom: 51%;
  }
}
@media (min-width: 1500px) {
  .video--cover {
    padding-bottom: 42%;
  }
}
@media (min-width: 1700px) {
  .video--cover {
    padding-bottom: 35%;
  }
}
.video--cover .video__file video {
  width: 106%;
  margin-left: -3%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video--playing .video__play, .video--playing .video__cover {
  opacity: 0;
  visibility: hidden;
}
.video--fullscreen .video__file {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video--fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.video--fullscreen .video__actions {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #A99F8D;
  display: flex;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}
.video--fullscreen .video__actions:hover .video__play-toggle,
.video--fullscreen .video__actions:hover .video__progress {
  opacity: 1;
}
.video--fullscreen .video__headphones-toggle {
  width: 100px;
}
.video--fullscreen .video__play-toggle {
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.video--fullscreen .video__progress {
  flex: 1;
  padding: 0 30px;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.video--fullscreen .progress-bar {
  width: 100%;
  height: 24px;
  border-radius: 2px;
  background-color: rgba(169, 159, 141, 0.25);
}
.video--fullscreen .progress-bar__line {
  background-color: #A99F8D;
  height: 100%;
}

.nav__item {
  text-align: center;
}

.logo, .logo-jwg, .logo-festival {
  width: 100%;
}
.logo img, .logo-jwg img, .logo-festival img {
  width: 100%;
}

.flex-container {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .flex-container {
    flex-direction: row;
  }
}

.audio-item {
  cursor: pointer;
  text-align: center;
}

.audio-item--playing {
  /*.title-md-02 {
      font-weight: 700;
  }*/
}
.audio-item--playing .audio-item__play, .audio-item--playing .audio-item__icon-mic {
  opacity: 0;
  z-index: 5;
}
.audio-item--playing .audio-item__pause, .audio-item--playing .audio-item__icon-playing {
  opacity: 1;
  z-index: 10;
}

.audio-item__icon {
  width: 42px;
  height: 42px;
  margin: 25px auto;
  position: relative;
}

.audio-item__icon-mic, .audio-item__icon-playing {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.audio-item__button {
  width: 34px;
  height: 34px;
  margin: auto;
  position: relative;
}

.audio-item__play, .audio-item__pause, .audio-item__icon-mic, .audio-item__icon-playing {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.audio-item__play svg, .audio-item__pause svg, .audio-item__icon-mic svg, .audio-item__icon-playing svg {
  width: 100%;
}
.audio-item__play svg path, .audio-item__pause svg path, .audio-item__icon-mic svg path, .audio-item__icon-playing svg path {
  transition: all 0.45s ease;
}

.audio-item__play, .audio-item__icon-mic {
  opacity: 1;
  z-index: 10;
}
.audio-item__play:hover svg path:first-child, .audio-item__icon-mic:hover svg path:first-child {
  fill: #A99F8D;
}

.audio-item__pause:hover svg path:first-child {
  fill: #000;
}

.simple-box {
  display: block;
}

.simple-box__image {
  max-width: 250px;
  margin: auto;
}
.simple-box__image img {
  width: 100%;
  display: inherit;
}
.simple-box__image:hover .simple-box__image-overlay {
  visibility: visible;
  opacity: 1;
}

.simple-box__image-title {
  color: #A99F8D;
  position: absolute;
  right: 100%;
  top: 50%;
  white-space: nowrap;
  transform: translateX(25%) rotate(-90deg);
}

.simple-box__image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}

.simple-box__title {
  margin-top: 35px;
  cursor: default;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .simple-box__title {
    margin-bottom: 25px;
  }
}

.preview-box {
  text-align: center;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.preview-box__type {
  width: 225px;
}
.preview-box__type img {
  width: 100%;
}

.preview-box__title {
  max-width: 180px;
  margin-top: 25px;
  margin-bottom: 30px;
}

.slider__nav {
  display: inline-block;
}

.slider-drag {
  width: 112px;
  height: 112px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
}

.slider-drag__title {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  display: flex;
  align-items: center;
}
.slider-drag__title:before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  margin-right: 5px;
}
.slider-drag__title:after {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  margin-left: 5px;
}

.signed-image {
  width: 230px;
  display: block;
  margin: auto;
  position: relative;
}

.signed-image__image {
  width: 100%;
  padding: 0 0 120% 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.signed-image__image img {
  width: 100%;
}

.signed-image__title {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.button-close {
  width: 16px;
  height: 16px;
  position: relative;
  padding: 15px;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.35s ease;
}
.button-close:before, .button-close:after {
  content: "";
  width: 70%;
  height: 1.5px;
  background-color: #A99F8D;
  position: absolute;
  top: 50%;
  left: 15%;
}
.button-close:before {
  transform: rotate(45deg) perspective(10px);
}
.button-close:after {
  transform: rotate(-45deg) perspective(10px);
}
.button-close:hover {
  transform: rotate(90deg) perspective(10px);
}
.button-close--lg {
  width: 60px;
  height: 60px;
}
.button-close--lg:before, .button-close--lg:after {
  height: 6px;
}
.button-close--md {
  width: 30px;
  height: 30px;
}
.button-close--md:before, .button-close--md:after {
  height: 2px;
}

.quote {
  max-width: 315px;
  position: relative;
}
.quote:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-45%, -45%) scale(0.7);
  width: 148px;
  height: 120px;
  background: url("../img/decorative-titles/n-title.svg") no-repeat center;
  background-size: contain;
  z-index: -1;
}
@media (min-width: 992px) {
  .quote:before {
    transform: translate(-40%, -40%) scale(1);
  }
}

.quote__author {
  margin-top: 15px;
  text-align: right;
}

.play-toggle {
  cursor: pointer;
  position: relative;
  width: 50px;
  height: 50px;
}
.play-toggle--playing .play-toggle__button {
  transform: rotate(0deg);
  clip-path: polygon(10% 0%, 10% 100%, 40% 100%, 40% 0%, 60% 0%, 60% 100%, 90% 100%, 90% 0%);
}

.play-toggle__button {
  background-color: #A99F8D;
  width: 100%;
  height: 100%;
  position: absolute;
  transform: rotate(90deg);
  clip-path: polygon(50% 0%, 0% 100%, 50% 100%, 50% 0%, 50% 0%, 50% 100%, 100% 100%, 50% 0%);
  transition: all 0.55s ease;
}

.headphones-toggle {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.35s ease;
}
.headphones-toggle:hover {
  opacity: 1;
}

.section-01 {
  position: relative;
  max-width: 1544px;
  margin: auto;
}
@media (min-width: 1100px) {
  .section-01:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(70% - 3px);
    padding-bottom: 70%;
    border: 1.5px solid #A99F8D;
    border-radius: 9999px 0 0 0;
    z-index: -1;
  }
}
@media (min-width: 1100px) {
  .section-01:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(30% - 1.5px);
    padding-bottom: 30%;
    border: 1.5px solid #A99F8D;
    border-left: transparent;
    border-radius: 0 0 9999px 0;
    z-index: -1;
  }
}
.section-01 .image-container {
  max-width: 239px;
  position: relative;
  z-index: -10;
  margin: auto;
}
@media (min-width: 768px) {
  .section-01 .image-container {
    max-width: 439px;
    margin: initial;
  }
}
.section-01 .circle-text {
  margin-bottom: 30px;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .section-01 .circle-text {
    position: absolute;
  }
}
@media (min-width: 992px) {
  .section-01 .circle-text {
    top: -40px;
    right: auto;
    left: 100%;
    margin-right: -90px;
  }
}
.section-01 .flex-container {
  flex-direction: column-reverse;
}
@media (min-width: 650px) {
  .section-01 .flex-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.section-01 .flex-container__item:last-child {
  margin-bottom: 40px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 650px) {
  .section-01 .flex-container__item:last-child {
    margin-bottom: auto;
    margin-top: auto;
    margin-left: 40px;
    padding-top: 50px;
  }
}
@media (min-width: 992px) {
  .section-01 .flex-container__item:last-child {
    margin-left: 100px;
    padding-top: 80px;
  }
}
@media (min-width: 1300px) {
  .section-01 .flex-container__item:last-child {
    margin-left: 212px;
    padding-top: 140px;
  }
}
.section-01 .site-section__title {
  margin-bottom: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .section-01 .site-section__title {
    margin-bottom: 50px;
  }
}
.section-01 .site-section__description {
  margin-left: 60px;
}
@media (min-width: 768px) {
  .section-01 .site-section__row:nth-child(1) {
    margin-left: -25px;
  }
}
.section-01 .site-section__row:nth-child(2) {
  margin-top: 80px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .section-01 .site-section__row:nth-child(2) {
    margin-top: 100px;
    margin-bottom: 80px;
  }
}
.section-01 .decorative-text div:nth-child(1) {
  font-weight: 300;
  font-size: 22px;
}
@media (min-width: 768px) {
  .section-01 .decorative-text div:nth-child(1) {
    font-size: 29px;
  }
}
.section-01 .decorative-text div:nth-child(2) {
  margin-left: 30px;
  font-weight: 400;
  font-size: 24px;
  font-family: "Silk Serif", sans-serif;
}
@media (min-width: 768px) {
  .section-01 .decorative-text div:nth-child(2) {
    font-size: 32px;
  }
}
.section-01 .flex-list {
  flex-direction: row;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .section-01 .flex-list {
    justify-content: space-between;
  }
}
.section-01 .flex-list__item {
  width: 50%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-01 .flex-list__item {
    width: auto;
  }
}

.section-02 .site-section__main {
  margin-top: 40px;
}
.section-02 .flex-container {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .section-02 .flex-container {
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .section-02 .simple-box__title {
    margin-top: 65px;
  }
}
.section-02 .flex-container__item:first-child {
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .section-02 .flex-container__item:first-child .simple-box__image {
    max-width: 376px;
  }
}
@media (min-width: 650px) {
  .section-02 .flex-container__item:first-child {
    margin-left: 10%;
  }
}
@media (min-width: 768px) {
  .section-02 .flex-container__item:first-child {
    margin-top: 110px;
    margin-right: 50px;
    margin-bottom: 0;
    margin-left: auto;
  }
}
@media (min-width: 992px) {
  .section-02 .flex-container__item:first-child {
    margin-right: 80px;
  }
}
@media (min-width: 1100px) {
  .section-02 .flex-container__item:first-child {
    margin-right: 100px;
  }
}
@media (min-width: 1300px) {
  .section-02 .flex-container__item:first-child {
    margin-right: 120px;
  }
}
.section-02 .flex-container__item:last-child {
  margin-left: auto;
}
@media (min-width: 650px) {
  .section-02 .flex-container__item:last-child {
    margin-right: 10%;
  }
}
@media (min-width: 768px) {
  .section-02 .flex-container__item:last-child {
    margin-left: initial;
    margin-right: auto;
  }
}
.section-02 .flex-container__item:last-child .simple-box__title {
  text-align: right;
}
@media (min-width: 768px) {
  .section-02 .flex-container__item:last-child .simple-box__image {
    max-width: 341px;
  }
}

.section-03 {
  position: relative;
  color: #fff;
  padding-bottom: 50px;
}
@media (min-width: 1100px) {
  .section-03:after {
    content: "";
    position: absolute;
    top: 0;
    right: 50%;
    width: calc(50% - 3px);
    height: 160%;
    border: 1.5px solid #ECE2D1;
    border-radius: 9999px 0 0 0;
    z-index: -1;
  }
}
@media (min-width: 1300px) {
  .section-03:after {
    right: 40%;
    width: calc(60% - 3px);
  }
}
.section-03:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0 9999px 0 0;
  background-color: #A99F8D;
  z-index: -1;
}
.section-03 .site-section__title {
  margin-bottom: 10px;
}
.section-03 .site-section__subtitle {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .section-03 .site-section__subtitle {
    margin-bottom: 40px;
  }
}
.section-03 .slider-container {
  position: relative;
  width: 100%;
}
.section-03 .slick-list {
  overflow: visible;
  transition: all 0.35s ease;
  margin: 0 -15px;
}
@media (min-width: 992px) {
  .section-03 .slick-list {
    margin: 0 -26px;
  }
}
.section-03 .slick-slide {
  transition: all 0.45s ease;
  margin: 0 15px;
}
@media (min-width: 768px) {
  .section-03 .slick-slide {
    visibility: hidden;
    opacity: 0;
  }
}
@media (min-width: 992px) {
  .section-03 .slick-slide {
    margin: 0 26px;
  }
}
.section-03 .slick-cloned {
  opacity: 0;
  transition: all 0s 0s;
}
.section-03 .slick-active {
  transform: scale(1);
}
@media (min-width: 768px) {
  .section-03 .slick-active {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 768px) {
  .section-03 .slick-active.slick-current {
    transform: scale(1.2) translateX(-20px);
  }
}
.section-03 .slider-drag {
  position: absolute;
  z-index: 10;
  left: 50%;
  bottom: -85px;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
  .section-03 .flex-container__item {
    max-width: 50%;
  }
}
.section-03 .flex-container__item:first-child {
  margin-bottom: 40px;
  max-width: 320px;
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  .section-03 .flex-container__item:first-child {
    margin-bottom: auto;
  }
}
@media (min-width: 992px) {
  .section-03 .flex-container__item:first-child {
    max-width: 400px;
  }
}
@media (min-width: 1300px) {
  .section-03 .flex-container__item:first-child {
    max-width: 450px;
  }
}
.section-03 .flex-container__item:last-child {
  width: 100%;
  height: 100%;
  cursor: url("../img/icons/icon-drag.svg") 32 32, auto;
}
@media (min-width: 768px) {
  .section-03 .flex-container__item:last-child {
    position: absolute;
    top: 0;
    right: -90px;
    display: flex;
    align-items: center;
  }
}
@media (min-width: 860px) {
  .section-03 .flex-container__item:last-child {
    right: -100px;
  }
}
@media (min-width: 768px) {
  .section-03 .flex-container__item:last-child {
    right: -110px;
  }
}

.section-03--second-type {
  color: #000;
}
.section-03--second-type:before, .section-03--second-type:after {
  display: none;
}
.section-03--second-type .site-section__title {
  margin-bottom: 30px;
  margin-top: 15px;
}
.section-03--second-type .site-section__subtitle {
  margin: auto;
}
.section-03--second-type .site-section__description {
  max-width: 330px;
}
.section-03--second-type .signed-image {
  color: #fff;
  cursor: inherit;
}

.section-04 .site-section__header {
  text-align: right;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .section-04 .site-section__header {
    margin-bottom: 40px;
    width: 350px;
    margin-left: 0;
  }
}
@media (min-width: 992px) {
  .section-04 .site-section__header {
    margin-bottom: 70px;
    width: 450px;
  }
}
@media (min-width: 1300px) {
  .section-04 .site-section__header {
    margin-bottom: 90px;
    width: 670px;
    max-width: inherit;
  }
}
.section-04 .section-subtitle {
  text-align: right;
  margin-right: 120px;
  margin-bottom: 20px;
}
@media (min-width: 360px) {
  .section-04 .section-subtitle {
    margin-right: 165px;
  }
}
@media (min-width: 992px) {
  .section-04 .section-subtitle {
    margin-right: 191px;
  }
}
@media (min-width: 992px) {
  .section-04 .section-subtitle {
    margin-right: 245px;
  }
}
.section-04 .video-container {
  width: 100%;
  max-width: 500px;
  margin: auto;
  position: relative;
}
@media (min-width: 768px) {
  .section-04 .video-container {
    width: 350px;
  }
}
@media (min-width: 992px) {
  .section-04 .video-container {
    width: 450px;
  }
}
@media (min-width: 1300px) {
  .section-04 .video-container {
    width: 670px;
    max-width: inherit;
  }
}
.section-04 .video-container video {
  width: 100%;
}
.section-04 .decorative-title-container {
  position: absolute;
  bottom: -35px;
  right: -35px;
  width: 100%;
  max-width: 150px;
}
@media (min-width: 768px) {
  .section-04 .decorative-title-container {
    max-width: 180px;
    right: -50px;
    bottom: -50px;
  }
}
@media (min-width: 992px) {
  .section-04 .decorative-title-container {
    max-width: 280px;
    right: -175px;
    bottom: -75px;
  }
}
@media (min-width: 1300px) {
  .section-04 .decorative-title-container {
    max-width: 380px;
    right: -235px;
    bottom: -100px;
  }
}
.section-04 .decorative-title-container img {
  width: 100%;
}
.section-04 .text-container {
  max-width: 300px;
}
@media (min-width: 768px) {
  .section-04 .text-container {
    max-width: 330px;
  }
}
.section-04 .flex-container {
  align-items: center;
}
.section-04 .flex-container__item:first-child {
  text-align: right;
  margin-bottom: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .section-04 .flex-container__item:first-child {
    margin-right: 60px;
    margin-bottom: auto;
  }
}
@media (min-width: 992px) {
  .section-04 .flex-container__item:first-child {
    margin-right: 100px;
  }
}
@media (min-width: 1300px) {
  .section-04 .flex-container__item:first-child {
    margin-right: 140px;
  }
}
.section-04 .button-container {
  text-align: right;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .section-04 .button-container {
    margin-top: 20px;
  }
}
@media (min-width: 992px) {
  .section-04 .button-container {
    margin-top: 40px;
  }
}
@media (min-width: 1300px) {
  .section-04 .button-container {
    margin-top: 60px;
  }
}

.section-05 .circle-text {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .section-05 .circle-text {
    margin-bottom: 35px;
  }
}
@media (min-width: 992px) {
  .section-05 .circle-text {
    position: absolute;
    left: 100%;
    top: -40px;
    white-space: nowrap;
  }
}
.section-05 .site-section__header {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-05 .site-section__header {
    margin-bottom: 55px;
  }
}
.section-05 .text-container {
  margin-bottom: 15px;
}
.section-05 .text-container:last-child {
  margin-bottom: 0;
}
.section-05 .image-container {
  max-width: 260px;
  margin: auto;
}
.section-05 .image-container video {
  width: 100%;
}
@media (min-width: 768px) {
  .section-05 .image-container {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .section-05 .image-container {
    max-width: 320px;
  }
}
@media (min-width: 1100px) {
  .section-05 .image-container {
    max-width: 330px;
  }
}
@media (min-width: 1300px) {
  .section-05 .image-container {
    max-width: 370px;
  }
}
.section-05 .site-section__description {
  position: relative;
  z-index: 10;
}
.section-05 .flex-container {
  align-items: center;
}
@media (min-width: 650px) {
  .section-05 .flex-container {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.section-05 .flex-container__item:first-child {
  position: relative;
  margin-bottom: 60px;
}
@media (min-width: 650px) {
  .section-05 .flex-container__item:first-child {
    margin-right: 50px;
  }
}
@media (min-width: 768px) {
  .section-05 .flex-container__item:first-child {
    margin-bottom: auto;
  }
}
@media (min-width: 992px) {
  .section-05 .flex-container__item:first-child {
    margin-right: 100px;
  }
}
@media (min-width: 1300px) {
  .section-05 .flex-container__item:first-child {
    margin-right: 150px;
  }
}
.section-05 .flex-container__item:first-child .site-section__description {
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .section-05 .flex-container__item:first-child .site-section__description {
    margin-left: 50px;
  }
}
@media (min-width: 1300px) {
  .section-05 .flex-container__item:first-child .site-section__description {
    margin-left: 100px;
  }
}
.section-05 .flex-container__item:first-child .image-container {
  margin-top: 45px;
}
.section-05 .flex-container__item:first-child .image-container video {
  width: 100%;
}
@media (min-width: 992px) {
  .section-05 .flex-container__item:first-child .image-container {
    margin-top: 90px;
    margin-left: 50px;
  }
}
@media (min-width: 1300px) {
  .section-05 .flex-container__item:first-child .image-container {
    margin-left: 100px;
  }
}
.section-05 .flex-container__item:last-child .image-container {
  margin-bottom: 45px;
  position: relative;
}
@media (min-width: 992px) {
  .section-05 .flex-container__item:last-child .image-container {
    margin-bottom: 90px;
  }
}
.section-05 .flex-container__item:last-child .image-container:before {
  content: "";
  position: absolute;
  bottom: 35px;
  left: 35px;
  width: 140%;
  padding-bottom: 140%;
  border: 1.5px solid #ECE2D1;
  border-radius: 0 99999px 0 0;
}
@media (min-width: 650px) {
  .section-05 .flex-container__item:last-child .image-container:before {
    width: 150%;
    padding-bottom: 150%;
  }
}
@media (min-width: 768px) {
  .section-05 .flex-container__item:last-child .image-container:before {
    bottom: 55px;
    left: 55px;
  }
}
@media (min-width: 992px) {
  .section-05 .flex-container__item:last-child .image-container:before {
    bottom: 70px;
    left: 70px;
  }
}
.section-05 .flex-container__item:last-child .image-container:after {
  content: "";
  position: absolute;
  top: calc(100% - 36px);
  left: calc(100% - 45px);
  width: 70%;
  padding-bottom: 70%;
  border: 1.5px solid #ECE2D1;
  border-radius: 0 0 99999px 0;
}
@media (min-width: 768px) {
  .section-05 .flex-container__item:last-child .image-container:after {
    top: calc(100% - 56px);
    left: calc(100% - 75px);
  }
}
@media (min-width: 992px) {
  .section-05 .flex-container__item:last-child .image-container:after {
    top: calc(100% - 70.5px);
    left: calc(100% - 96px);
    width: calc(100% - 19px);
    padding-bottom: calc(100% - 19px);
  }
}

.section-05--second-type .flex-container__item:last-child .image-container {
  margin-bottom: 85px;
}
@media (min-width: 768px) {
  .section-05--second-type .flex-container__item:last-child .image-container {
    margin-bottom: 145px;
  }
}
@media (min-width: 992px) {
  .section-05--second-type .flex-container__item:last-child .image-container {
    margin-bottom: 160px;
  }
}

.section-06 {
  position: relative;
  padding-top: 40px;
}
@media (min-width: 768px) {
  .section-06 {
    padding-top: 60px;
  }
}
@media (min-width: 992px) {
  .section-06 {
    padding-top: 80px;
  }
}
@media (min-width: 1300px) {
  .section-06 {
    padding-top: 100px;
  }
}
.section-06 .site-section__header {
  position: relative;
}
.section-06 .site-section__title {
  text-align: center;
  margin-bottom: 44px;
  /*position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 0;
  @media (min-width: $rwd-768) {
      top: 25%;
  }*/
}
@media (max-width: 767px) {
  .section-06 video {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .section-06 .video--cover .video__file video {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 767px) {
  .section-06 .video--cover {
    padding-bottom: 80%;
  }
}
.section-06 .decorative-title-container {
  width: 100%;
  transform: translateY(-50%);
  top: -10%;
  position: absolute;
  z-index: -1;
}
@media (min-width: 768px) {
  .section-06 .decorative-title-container {
    top: 50%;
  }
}
.section-06 .decorative-title-container img {
  width: 100%;
}
.section-06 .site-section__description {
  margin: 30px auto;
  max-width: 300px;
}
@media (min-width: 768px) {
  .section-06 .site-section__description {
    max-width: 360px;
  }
}
.section-06 .site-section__main {
  margin-top: 45px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) {
  .section-06 .site-section__main {
    margin-top: 90px;
  }
}
.section-06 .site-section__main--bounded {
  max-height: 614px;
  min-height: 290px;
}
.section-06 .video__cover {
  background: url("../img/video-cover-2.jpg") no-repeat center;
  background-size: cover;
  transition: all 0.55s ease;
}
.section-06 .headphones-toggle-container {
  position: absolute;
  color: #fff;
  text-align: center;
  cursor: pointer;
  bottom: 20px;
  left: 50%;
  z-index: 100;
  transform: translateX(-50%);
  opacity: 0.7;
  transition: opacity 0.35s ease;
}
.section-06 .headphones-toggle-container:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  .section-06 .headphones-toggle-container {
    bottom: 40px;
  }
}

.section-07 .simple-box {
  cursor: pointer;
}
.section-07 .simple-box__image {
  position: relative;
}
@media (min-width: 768px) {
  .section-07 .simple-box__image {
    max-width: 390px;
  }
}
.section-07 .simple-box__title {
  margin-bottom: 15px;
  position: relative;
  z-index: 10;
}
@media (min-width: 992px) {
  .section-07 .simple-box__title {
    margin-top: 45px;
  }
}
.section-07 .simple-box__text {
  position: relative;
  z-index: 10;
}
.section-07 .flex-container {
  align-items: flex-start;
}
@media (min-width: 768px) {
  .section-07 .flex-container {
    justify-content: center;
  }
}
.section-07 .flex-container__item:first-child {
  margin-bottom: 55px;
}
@media (min-width: 650px) {
  .section-07 .flex-container__item:first-child {
    margin-left: 10%;
  }
}
@media (min-width: 768px) {
  .section-07 .flex-container__item:first-child {
    margin-right: 50px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .section-07 .flex-container__item:first-child {
    margin-right: 80px;
  }
}
@media (min-width: 1100px) {
  .section-07 .flex-container__item:first-child {
    margin-right: 100px;
  }
}
@media (min-width: 1300px) {
  .section-07 .flex-container__item:first-child {
    margin-right: 120px;
  }
}
.section-07 .flex-container__item:first-child .simple-box__image {
  position: relative;
}
.section-07 .flex-container__item:first-child .simple-box__image:before {
  content: "";
  position: absolute;
  top: calc(100% - 26px);
  right: calc(100% - 26px);
  content: "";
  width: 45%;
  padding-bottom: 45%;
  border: 1.5px solid #ECE2D1;
  border-radius: 0 0 0 99999px;
}
@media (min-width: 992px) {
  .section-07 .flex-container__item:first-child .simple-box__image:before {
    top: calc(100% - 50px);
    right: calc(100% - 50px);
  }
}
.section-07 .flex-container__item:nth-child(2) {
  margin-left: auto;
}
@media (min-width: 650px) {
  .section-07 .flex-container__item:nth-child(2) {
    margin-right: 10%;
  }
}
@media (min-width: 768px) {
  .section-07 .flex-container__item:nth-child(2) {
    margin-left: initial;
    margin-right: auto;
    margin-top: 65px;
  }
}

.section-08 {
  /*background: url('../img/section-cover-01.jpg') no-repeat center;
  background-size: cover;
  @media (min-width: $rwd-768) {
      background-position: 71% 50%;
  }
  @media (min-width: $rwd-1100) {
      background-position: 50% 50%;
  }*/
}
@media (min-width: 1100px) {
  .section-08 {
    margin-top: 80px;
  }
}
@media (min-width: 1300px) {
  .section-08 {
    margin-top: 120px;
  }
}
@media (min-width: 1500px) {
  .section-08 {
    margin-top: 140px;
  }
}
@media (min-width: 992px) {
  .section-08 .site-section__wrapper {
    padding: 20px 0;
  }
}
@media (min-width: 1300px) {
  .section-08 .site-section__wrapper {
    padding: 60px 0;
  }
}
@media (min-width: 1500px) {
  .section-08 .site-section__wrapper {
    padding: 100px 0;
  }
}
@media (min-width: 1700px) {
  .section-08 .site-section__wrapper {
    padding: 140px 0;
  }
}
.section-08 .site-section__main {
  padding-top: 0;
  padding-bottom: 0;
  max-width: 70%;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 500px) {
  .section-08 .site-section__main {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .section-08 .site-section__main {
    max-width: 85%;
    padding-top: 15%;
    padding-bottom: 15%;
  }
}
@media (min-width: 1300px) {
  .section-08 .site-section__main {
    max-width: 100%;
  }
}
@media (min-width: 1700px) {
  .section-08 .site-section__main {
    padding-top: 20%;
    padding-bottom: 20%;
  }
}
.section-08 .type-container img {
  width: 100%;
}
.section-08 .title-container {
  display: inline-block;
  margin-top: -10px;
  margin-bottom: 140%;
}
@media (min-width: 500px) {
  .section-08 .title-container {
    margin-bottom: 130%;
  }
}
@media (min-width: 650px) {
  .section-08 .title-container {
    margin-bottom: 150%;
  }
}
@media (min-width: 768px) {
  .section-08 .title-container {
    margin-bottom: auto;
  }
}
.section-08 .title-container span {
  text-align: right;
  font-weight: 300;
  margin-top: 5px;
  display: block;
}
@media (min-width: 768px) {
  .section-08 .title-container span {
    font-size: 16px;
  }
}
@media (min-width: 992px) {
  .section-08 .title-container span {
    font-size: 22px;
  }
}
.section-08 .link-underline {
  font-weight: bold;
}
.section-08 .link-underline:after {
  width: 8px;
  height: 8px;
}
.section-08 .slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.section-08 .slider-container img {
  padding-bottom: 50%;
  max-width: 100%;
}
.section-08 .cover-slider {
  width: 100%;
  height: 100%;
}
.section-08 .cover-slider__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease 0.3s;
}
.section-08 .cover-slider__item:nth-child(1) {
  background-image: url("../img/section-cover-01-m.jpg");
}
@media (min-width: 768px) {
  .section-08 .cover-slider__item:nth-child(1) {
    background-image: url("../img/section-cover-01.jpg");
  }
}
.section-08 .cover-slider__item:nth-child(2) {
  background-image: url("../img/section-cover-02-m.jpg");
}
@media (min-width: 768px) {
  .section-08 .cover-slider__item:nth-child(2) {
    background-image: url("../img/section-cover-02.jpg");
  }
}
.section-08 .cover-slider__item:nth-child(3) {
  background-image: url("../img/section-cover-03-m.jpg");
}
@media (min-width: 768px) {
  .section-08 .cover-slider__item:nth-child(3) {
    background-image: url("../img/section-cover-03.jpg");
  }
}
@media (min-width: 768px) {
  .section-08 .cover-slider__item {
    background-size: cover;
    background-position: 50% 50%;
  }
}
.section-08 .cover-slider__item--active {
  opacity: 1;
}

.section-contact {
  background: url("../img/contact-bg.jpg") no-repeat center;
  background-size: cover;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .section-contact {
    text-align: inherit;
  }
}
@media (min-width: 992px) {
  .section-contact {
    padding-right: inherit;
    z-index: inherit;
  }
}
.section-contact:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.65));
}
@media (min-width: 650px) {
  .section-contact:after {
    display: none;
  }
}
@media (min-width: 650px) {
  .section-contact .site-section__wrapper {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .section-contact .site-section__wrapper {
    padding: 150px 0;
  }
}
@media (min-width: 1300px) {
  .section-contact .site-section__wrapper {
    padding: 200px 0;
  }
}
.section-contact .text-container {
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-contact .text-container {
    max-width: 270px;
  }
}
@media (min-width: 650px) {
  .section-contact .flex-container {
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .section-contact .flex-container {
    position: relative;
    z-index: 100;
  }
}
.section-contact .flex-container__item:last-child {
  margin-top: 65px;
}
@media (min-width: 650px) {
  .section-contact .flex-container__item:last-child {
    margin-top: auto;
    margin-left: auto;
    text-align: right;
  }
}

.my-overlayer {
  position: fixed;
  z-index: 10000;
  overflow-y: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.4);
  transition: all 0.6s ease-in-out;
}
.my-overlayer--active {
  opacity: 1;
  visibility: visible;
  filter: blur(0px);
  transform: scale(1);
}
.my-overlayer__close {
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10001;
}
@media (min-width: 768px) {
  .my-overlayer__close {
    right: 50px;
    top: 50px;
  }
}
.my-overlayer__main {
  height: 100%;
}
@media (min-width: 992px) {
  .my-overlayer__main {
    height: 100%;
  }
}
.my-overlayer .video-container {
  height: 100%;
  width: 100%;
  background: #000;
}
.my-overlayer .flex-container {
  box-sizing: border-box;
  height: 100%;
  position: relative;
  padding: 30px;
}
@media (min-width: 768px) {
  .my-overlayer .flex-container {
    flex-direction: column-reverse;
  }
}
@media (min-width: 992px) {
  .my-overlayer .flex-container {
    flex-direction: row;
    padding: 50px;
  }
}
@media (min-width: 1100px) {
  .my-overlayer .flex-container {
    justify-content: center;
    align-items: center;
  }
}
@media (min-width: 1300px) {
  .my-overlayer .flex-container {
    padding: 70px;
  }
}
.my-overlayer .flex-container:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 100%;
  background: #ECE2D1;
  border-radius: 0 99999px 0 0;
  z-index: -1;
}
@media (min-width: 992px) {
  .my-overlayer .flex-container:before {
    left: auto;
    right: 0;
    width: 50%;
    padding-bottom: 50%;
  }
}
@media (min-width: 1100px) {
  .my-overlayer .flex-container:before {
    width: 45%;
    padding-bottom: 45%;
  }
}
@media (min-width: 1300px) {
  .my-overlayer .flex-container:before {
    width: 40%;
    padding-bottom: 40%;
  }
}
@media (min-width: 1400px) {
  .my-overlayer .flex-container:before {
    width: 35%;
    padding-bottom: 35%;
    right: 5%;
  }
}
@media (min-width: 1500px) {
  .my-overlayer .flex-container:before {
    width: 35%;
    padding-bottom: 35%;
    right: 5%;
  }
}
.my-overlayer .flex-container:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
  width: 140%;
  padding-bottom: 140%;
  border: 1.5px solid #ECE2D1;
  border-radius: 99999px 0 0 0;
  z-index: -1;
}
@media (min-width: 992px) {
  .my-overlayer .flex-container:after {
    right: 40%;
    width: 60%;
    padding-bottom: 60%;
  }
}
@media (min-width: 1100px) {
  .my-overlayer .flex-container:after {
    right: 35%;
    width: 57%;
    padding-bottom: 57%;
  }
}
@media (min-width: 1300px) {
  .my-overlayer .flex-container:after {
    right: 32%;
    width: 50%;
    padding-bottom: 45%;
  }
}
.my-overlayer .flex-container img {
  width: 100%;
}
.my-overlayer .flex-container .flex-container {
  align-items: center;
  padding: 0;
}
.my-overlayer .flex-container .flex-container:before, .my-overlayer .flex-container .flex-container:after {
  display: none;
}
@media (min-width: 650px) {
  .my-overlayer .flex-container .flex-container {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .my-overlayer .flex-container .flex-container {
    margin-bottom: 0;
    margin-top: 60px;
  }
}
@media (min-width: 992px) {
  .my-overlayer .flex-container .flex-container {
    margin: 0 80px 0 0;
  }
}
@media (min-width: 1100px) {
  .my-overlayer .flex-container .flex-container {
    margin-right: 100px;
  }
}
@media (min-width: 1300px) {
  .my-overlayer .flex-container .flex-container {
    margin-right: 180px;
  }
}
.my-overlayer .flex-container .flex-container .flex-container__item:first-child {
  max-width: 270px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .my-overlayer .flex-container .flex-container .flex-container__item:first-child {
    margin: 0 40px 0 0;
  }
}
@media (min-width: 1100px) {
  .my-overlayer .flex-container .flex-container .flex-container__item:first-child {
    margin-right: 60px;
  }
}
@media (min-width: 1100px) {
  .my-overlayer .flex-container .flex-container .flex-container__item:first-child {
    margin-right: 85px;
  }
}
.my-overlayer .flex-container .flex-container .flex-container__item:last-child {
  max-width: 240px;
}
.my-overlayer .flex-container .flex-container .flex-container__item:last-child .text-container {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .my-overlayer .flex-container .flex-container .flex-container__item:last-child .text-container {
    margin-bottom: 60px;
  }
}
.my-overlayer .flex-container .decorative-title-container {
  max-width: 360px;
  margin: auto;
}
@media (min-width: 650px) {
  .my-overlayer .flex-container .decorative-title-container {
    margin-right: 30px;
  }
}
@media (min-width: 768px) {
  .my-overlayer .flex-container .decorative-title-container {
    margin-right: auto;
  }
}
@media (min-width: 992px) {
  .my-overlayer .flex-container .decorative-title-container {
    max-width: 300px;
    margin-right: 0;
  }
}
.my-overlayer .flex-container .simple-box-container {
  max-width: 310px;
}
@media (min-width: 650px) {
  .my-overlayer .flex-container .simple-box-container {
    margin-left: 30px;
  }
}
@media (min-width: 992px) {
  .my-overlayer .flex-container .simple-box-container {
    margin-left: 0;
  }
}

.document-overlayer {
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff url("../img/decoration/shape-03.svg") no-repeat 0 0;
  background-size: 17%;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
@media (min-width: 992px) {
  .document-overlayer {
    background-size: 10%;
  }
}

.document-overlayer__close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  padding: 20px;
  z-index: 100;
}

.document-overlayer__main {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 990px;
  margin: auto;
  align-items: center;
  box-sizing: border-box;
  padding: 30px;
  overflow-x: hidden;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .document-overlayer__main {
    padding: 50px;
  }
}

.document-overlayer__title {
  margin-bottom: 30px;
}

.document-overlayer__text {
  padding-left: 30px;
}
.document-overlayer__text .text, .document-overlayer__text .simple-label {
  margin-bottom: 20px;
}
.document-overlayer__text:last-child {
  margin-bottom: 0;
}

.document-overlayer__text--numeric {
  counter-reset: document;
}
.document-overlayer__text--numeric .text, .document-overlayer__text--numeric .simple-label {
  counter-increment: document;
  position: relative;
}
.document-overlayer__text--numeric .text:before, .document-overlayer__text--numeric .simple-label:before {
  content: counters(document, ".") ")";
  position: absolute;
  top: 0;
  font-weight: 500;
  left: -30px;
}

.document-overlayer.document-overlayer--active {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.alphabet-list {
  counter-reset: letter;
}
.alphabet-list .alphabet-list__item {
  counter-increment: letter;
  position: relative;
  list-style-type: none;
}
.alphabet-list .alphabet-list__item:before {
  content: counter(letter, lower-alpha) ".";
  position: absolute;
  top: 2px;
  font-weight: 500;
  left: 0;
}

.cookies-info {
  position: fixed;
  z-index: 200;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ECE2D1;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.cookies-info__close {
  margin-left: 20px;
}
.cookies-info--hide {
  bottom: -100px;
  opacity: 0;
}

.audio-player {
  position: fixed;
  background: #eee;
  bottom: -100px;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: -199;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
.audio-player--visible {
  bottom: 0;
  opacity: 1;
  z-index: 199;
}
.audio-player__wave {
  width: 50%;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.audio-player__wave--show {
  opacity: 1;
}
.audio-player__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.audio-player__loader--hide {
  opacity: 0;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #A99F8D;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.languages-toggler {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.languages-toggler > li {
  padding: 0 4px;
}
.languages-toggler > li:first-child {
  padding-left: 0;
}
.languages-toggler > li:last-child {
  padding-right: 0;
}
.languages-toggler__item {
  color: #A99F8D;
  opacity: 0.8;
}

.languages-toggler__item--active, .languages-toggler--en .languages-toggler__item-en, .languages-toggler--pl .languages-toggler__item-pl {
  font-weight: 700;
  color: #ECE2D1;
  opacity: 1;
}
