/* 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: #FFD018;
  }
  48% {
    border-color: #FFD018;
  }
  50% {
    border-color: #043F3C;
  }
  98% {
    border-color: #043F3C;
  }
  100% {
    border-color: #FFD018;
  }
}
.wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
.wrapper > div {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.container, .irregular-grid, .site-footer__major-container, .site-footer__outer-container, .site-footer__inner-container, .site-footer__second-row, .site-footer__main-row, .site-bar__container {
  position: relative;
}
.container:after, .irregular-grid:after, .site-footer__major-container:after, .site-footer__outer-container:after, .site-footer__inner-container:after, .site-footer__second-row:after, .site-footer__main-row: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: 100%;
  background: #FFD018;
  overflow: auto;
  height: 100%;
}
@media (min-width: 992px) {
  .slide-menu {
    background: #fff;
  }
}
.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 {
  padding: 40px 20px;
  position: relative;
}
@media (min-width: 650px) {
  .slide-menu .slide-menu__inner {
    text-align: right;
    padding: 40px 60px;
  }
}
@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: #FFD018;
    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: -2px;
  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: -2px;
}

.slide-menu--slide.slide-menu--right {
  top: 0;
  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: -2px;
}

.slide-menu--slide-fade.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--right.slide-menu--open {
  right: 0;
}

.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 {
  display: block;
  width: 28px;
  position: relative;
}
@media (min-width: 992px) {
  .icon-hamburger {
    width: 24px;
  }
}
.icon-hamburger__inner {
  height: 17px;
  position: relative;
  overflow: hidden;
}
.icon-hamburger__inner > div {
  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-hamburger__inner > div:nth-child(1),
.icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger__inner > div:nth-child(2),
.icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
}
.icon-hamburger__inner > div:nth-child(3),
.icon-hamburger__inner > div:nth-child(6) {
  top: 14px;
}
.icon-hamburger__inner > div:nth-child(4) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger__inner > div:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > div:nth-child(6) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item {
  background: #000;
  left: -100%;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(4) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(6) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger:hover .icon-hamburger__inner > .icon-hamburger__hover-item, .icon-hamburger:focus .icon-hamburger__inner > .icon-hamburger__hover-item {
  left: 0;
}

.icon-hamburger.open .icon-hamburger__inner {
  overflow: visible;
}
.icon-hamburger.open .icon-hamburger__inner > div {
  background: #000;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(4) {
  top: 7px;
  left: auto;
  right: 0;
  width: 24px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(6) {
  opacity: 0;
  left: -100%;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-hamburger--medium .icon-hamburger__inner > div {
  background: #8010A7;
}

.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;
}

/***** CONTAINERS *****/
/***** 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: #FFD018;
}

.dropdown--expanding .dropdown__list-container {
  position: relative;
  top: 0;
}

.dropdown.dropdown--open .dropdown__lead {
  border-color: #FFD018;
  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: #FFD018;
  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: "BwModelicaSS01", 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-spectacular-hamburger {
  display: block;
  width: 28px;
  position: relative;
}
@media (min-width: 992px) {
  .icon-spectacular-hamburger {
    width: 24px;
  }
}
.icon-spectacular-hamburger__inner {
  height: 15px;
  position: relative;
  overflow: hidden;
}
.icon-spectacular-hamburger__inner > div {
  position: absolute;
  left: 0;
  height: 2px;
  background: #F6F4F4;
  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;
}
@media (min-width: 992px) {
  .icon-spectacular-hamburger__inner > div {
    background: #f3ddc3;
  }
}
.icon-spectacular-hamburger__inner > div:nth-child(1),
.icon-spectacular-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-spectacular-hamburger__inner > div:nth-child(2),
.icon-spectacular-hamburger__inner > div:nth-child(5) {
  top: 6px;
}
.icon-spectacular-hamburger__inner > div:nth-child(3),
.icon-spectacular-hamburger__inner > div:nth-child(6) {
  top: 12px;
  width: 50%;
}
.icon-spectacular-hamburger__inner > div:nth-child(4) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-spectacular-hamburger__inner > div:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-spectacular-hamburger__inner > div:nth-child(6) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item {
  background: #8010A7;
  left: -100%;
}
.icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item:nth-child(4) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item:nth-child(6) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-spectacular-hamburger:hover .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item, .icon-spectacular-hamburger:focus .icon-spectacular-hamburger__inner > .icon-spectacular-hamburger__hover-item {
  left: 0;
}

.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner {
  overflow: visible;
}
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(1),
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(4) {
  top: 7px;
  left: auto;
  right: 0;
  width: 100%;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(2),
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(5) {
  opacity: 0;
  left: -100%;
}
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(3),
.icon-spectacular-hamburger.open .icon-spectacular-hamburger__inner > div:nth-child(6) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 100%;
}

.icon-spectacular-hamburger--medium .icon-spectacular-hamburger__inner > div {
  background: #FF931E;
}

/* 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--medium {
  border-color: #8010A7;
}

.icon-arrow--light {
  border-color: #fff;
}

.icon-arrow--primary {
  border-color: #FFD018;
}

.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--medium-10:before, .icon-nice-arrow--medium-10:after {
  background: #f3ddc3;
}

.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--medium {
  border-right-color: #8010A7;
}

.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--medium {
  border-bottom-color: #8010A7;
}

.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--medium {
  border-left-color: #8010A7;
}

.icon-triangular-arrow-right--light {
  border-left-color: #fff;
}

.icon-triangular-arrow-down {
  border-top: 12px solid #FFD018;
  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--medium {
  border-top-color: #8010A7;
}

.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;
  -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:before, .icon-plus:after {
  content: "";
  display: block;
  position: absolute;
  background: #000;
}
.icon-plus:before {
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  margin: 0 0 0 -1px;
}
.icon-plus:after {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  margin: -1px 0 0 0;
}

.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--light:before, .icon-plus--light:after {
  background: #fff;
}

.icon-plus--medium:before, .icon-plus--medium:after {
  background: #8010A7;
}

.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: #FF931E;
  -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: #FFD018;
}
.icon-rectangle--small {
  height: 14px;
}
.icon-rectangle--height {
  height: 28px;
}

.icon-wrapper {
  padding-left: 4px;
}
.icon-wrapper button {
  display: block;
}

/** icons-end **/
/* 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: #FFD018;
  }
  48% {
    border-color: #FFD018;
  }
  50% {
    border-color: #043F3C;
  }
  98% {
    border-color: #043F3C;
  }
  100% {
    border-color: #FFD018;
  }
}
.wrapper {
  display: table;
  width: 100%;
  height: 100%;
}
.wrapper > div {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.container, .irregular-grid, .site-footer__major-container, .site-footer__outer-container, .site-footer__inner-container, .site-footer__second-row, .site-footer__main-row, .site-bar__container {
  position: relative;
}
.container:after, .irregular-grid:after, .site-footer__major-container:after, .site-footer__outer-container:after, .site-footer__inner-container:after, .site-footer__second-row:after, .site-footer__main-row: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: 100%;
  background: #FFD018;
  overflow: auto;
  height: 100%;
}
@media (min-width: 992px) {
  .slide-menu {
    background: #fff;
  }
}
.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 {
  padding: 40px 20px;
  position: relative;
}
@media (min-width: 650px) {
  .slide-menu .slide-menu__inner {
    text-align: right;
    padding: 40px 60px;
  }
}
@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: #FFD018;
    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: -2px;
  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: -2px;
}

.slide-menu--slide.slide-menu--right {
  top: 0;
  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: -2px;
}

.slide-menu--slide-fade.slide-menu--right {
  top: 0;
  left: auto;
  right: -100%;
  bottom: auto;
}

.slide-menu--slide-fade.slide-menu--right.slide-menu--open {
  right: 0;
}

.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-arrow-with-belt, .icon-download {
  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-arrow-with-belt:before, .icon-download:before, .extended-icon:after, .icon-search:after, .icon-action:after, .icon-instagram:after, .icon-youtube:after, .icon-facebook:after, .icon-arrow-with-belt:after, .icon-download: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-arrow-with-belt:after, .icon-download: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-arrow-with-belt:hover:before, .icon-download: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-arrow-with-belt:hover:after, .icon-download: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 {
  display: block;
  width: 28px;
  position: relative;
}
@media (min-width: 992px) {
  .icon-hamburger {
    width: 24px;
  }
}
.icon-hamburger__inner {
  height: 17px;
  position: relative;
  overflow: hidden;
}
.icon-hamburger__inner > div {
  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-hamburger__inner > div:nth-child(1),
.icon-hamburger__inner > div:nth-child(4) {
  top: 0;
}
.icon-hamburger__inner > div:nth-child(2),
.icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
}
.icon-hamburger__inner > div:nth-child(3),
.icon-hamburger__inner > div:nth-child(6) {
  top: 14px;
}
.icon-hamburger__inner > div:nth-child(4) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger__inner > div:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > div:nth-child(6) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item {
  background: #000;
  left: -100%;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(4) {
  -webkit-transition: all 0.6s linear;
  -moz-transition: all 0.6s linear;
  -o-transition: all 0.6s linear;
  transition: all 0.6s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(5) {
  -webkit-transition: all 0.4s linear;
  -moz-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.icon-hamburger__inner > .icon-hamburger__hover-item:nth-child(6) {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.icon-hamburger:hover .icon-hamburger__inner > .icon-hamburger__hover-item, .icon-hamburger:focus .icon-hamburger__inner > .icon-hamburger__hover-item {
  left: 0;
}

.icon-hamburger.open .icon-hamburger__inner {
  overflow: visible;
}
.icon-hamburger.open .icon-hamburger__inner > div {
  background: #000;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(1),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(4) {
  top: 7px;
  left: auto;
  right: 0;
  width: 24px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg);
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(3),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(6) {
  opacity: 0;
  left: -100%;
}
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(2),
.icon-hamburger.open .icon-hamburger__inner > div:nth-child(5) {
  top: 7px;
  left: auto;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg);
  right: 0;
  width: 24px;
}

.icon-hamburger--medium .icon-hamburger__inner > div {
  background: #8010A7;
}

.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;
}

* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}

*:focus {
  outline: none;
}

html {
  font-family: europa, sans-serif;
  font-size: 14px;
  color: #000;
}

body {
  font-weight: 400;
  font-family: europa, sans-serif;
}

a {
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

.line {
  display: block;
}

@media (min-width: 768px) {
  .line--moved {
    padding-left: 100px;
  }
}

@media (min-width: 768px) {
  .line--moved-a-little-bit {
    padding-left: 20px;
  }
}

/***** CONTAINERS *****/
.site-bar__wrapper {
  padding: 20px 0;
}
.site-bar__inner {
  padding: 0 20px;
  max-width: 1350px;
  margin: 0 auto;
}
@media (min-width: 650px) {
  .site-bar__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1700px) {
  .site-bar__inner {
    max-width: 1500px;
  }
}
.site-bar__logo-container {
  float: left;
}
.site-bar__side-container {
  float: right;
  display: none;
}
@media (min-width: 768px) {
  .site-bar__side-container {
    display: block;
    padding: 12px 80px 0 0;
  }
}
@media (min-width: 1300px) {
  .site-bar__side-container {
    padding: 16px 120px 0 0;
  }
}

.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;
  }
}

/***** MENU *****/
.menu-toggler-container {
  cursor: pointer;
}

#menu-toggler {
  position: fixed;
  top: 24px;
  right: 20px;
  z-index: 9000;
}
@media (min-width: 650px) {
  #menu-toggler {
    right: 40px;
    top: 40px;
  }
}
@media (min-width: 1300px) {
  #menu-toggler {
    right: 60px;
  }
}
@media (min-width: 1700px) {
  #menu-toggler {
    right: 100px;
  }
}

@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: #FFD018;
}

.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;
}

.spectacular-bookmark {
  padding: 0 12px;
  position: relative;
  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;
  cursor: pointer;
  font-family: "BwModelicaSS01", sans-serif;
}
.spectacular-bookmark:before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background: #FFD018;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.spectacular-bookmark__inner {
  position: relative;
  z-index: 10;
  font-size: 20px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
}
.spectacular-bookmark:hover:before, .spectacular-bookmark:focus:before {
  height: 20px;
}
.spectacular-bookmark.active {
  padding: 0 28px;
  font-weight: 800;
}
.spectacular-bookmark.active:before {
  height: 20px;
}

.spectacular-bookmark--small .spectacular-bookmark__inner {
  font-size: 16px;
}
@media (min-width: 1300px) {
  .spectacular-bookmark--small .spectacular-bookmark__inner {
    font-size: 20px;
  }
}
.spectacular-bookmark--small:hover:before, .spectacular-bookmark--small:focus:before {
  height: 16px;
}
@media (min-width: 1300px) {
  .spectacular-bookmark--small:hover:before, .spectacular-bookmark--small:focus:before {
    height: 20px;
  }
}
.spectacular-bookmark--small.active:before {
  height: 16px;
}
@media (min-width: 1300px) {
  .spectacular-bookmark--small.active:before {
    height: 20px;
  }
}

/***** HEADER *****/
.site-header {
  position: relative;
}
.site-header__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/***** HEADERS *****/
.common-title {
  font-size: 18px;
  font-weight: 700;
  font-family: "BwModelicaSS01", sans-serif;
}

.common-title--large {
  font-size: 32px;
}
@media (min-width: 1700px) {
  .common-title--large {
    font-size: 38px;
  }
}

.shy-title {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.shy-title-02 {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/***** FOOTER *****/
.site-footer {
  text-align: center;
  position: relative;
  z-index: 100;
}
@media (min-width: 768px) {
  .site-footer {
    text-align: left;
  }
}
.site-footer__main-row {
  background: #043F3C;
  color: #fff;
}
.site-footer__second-row {
  padding: 60px 0 0 0;
}
@media (min-width: 992px) {
  .site-footer__second-row {
    padding-top: 72px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
@media (min-width: 1300px) {
  .site-footer__second-row {
    align-items: center;
  }
}
.site-footer__wrapper {
  padding: 40px 0 20px 0;
}
.site-footer__inner {
  padding: 0 20px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-footer__inner {
    padding: 0 40px;
  }
}
@media (min-width: 1300px) {
  .site-footer__inner {
    padding: 0 64px;
  }
}
@media (min-width: 1700px) {
  .site-footer__inner {
    max-width: 100%;
    margin: 0 8%;
  }
}
.site-footer__logo-container {
  padding: 0 0 40px 0;
}
@media (min-width: 992px) {
  .site-footer__logo-container {
    padding-right: 40px;
  }
}
@media (min-width: 1100px) {
  .site-footer__logo-container {
    padding-right: 60px;
  }
}
@media (min-width: 1300px) {
  .site-footer__logo-container {
    padding-right: 80px;
  }
}
@media (min-width: 1700px) {
  .site-footer__logo-container {
    padding-right: 100px;
  }
}
.site-footer__logo {
  margin: 0 auto;
}
.site-footer__secondary-column {
  padding: 48px 0 0 0;
}
@media (min-width: 768px) {
  .site-footer__secondary-column {
    padding: 0;
  }
}
.site-footer__inner-container {
  max-width: 600px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .site-footer__inner-container {
    max-width: 100%;
  }
}
@media (min-width: 1300px) {
  .site-footer__inner-container {
    padding-right: 10%;
  }
}
@media (min-width: 650px) {
  .site-footer__inner-container > .column {
    float: left;
    width: 33.33%;
  }
}
@media (min-width: 768px) {
  .site-footer__main-column {
    float: left;
    width: 60%;
    padding: 0 40px 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media (min-width: 1100px) {
  .site-footer__main-column {
    width: 55%;
  }
}
@media (min-width: 768px) {
  .site-footer__secondary-column {
    float: left;
    width: 40%;
  }
}
@media (min-width: 1100px) {
  .site-footer__secondary-column {
    width: 45%;
  }
}
@media (min-width: 992px) {
  .site-footer__major-container {
    display: flex;
  }
}
.site-footer__main-container {
  width: 100%;
}
.site-footer__secondary-row {
  background: #fff;
  padding-bottom: 64px;
}
.site-footer__copyright-row {
  padding: 12px 0;
}
.site-footer__logotypes-row {
  padding: 8px 20px 0 20px;
}
@media (min-width: 650px) {
  .site-footer__logotypes-row {
    padding-right: 0;
  }
}
@media (min-width: 1300px) {
  .site-footer__logotypes-row {
    padding-left: 64px;
  }
}
@media (min-width: 1700px) {
  .site-footer__logotypes-row {
    margin: 0 0 0 8%;
  }
}

/***** LISTS *****/
.horizontal-items > li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 20px;
}
.horizontal-items > li:first-child {
  padding-left: 0;
}
.horizontal-items > li:last-child {
  padding-right: 0;
}

.social-media {
  text-align: center;
}
@media (min-width: 768px) {
  .social-media {
    text-align: left;
  }
}
.social-media > li {
  display: inline-block;
  vertical-align: middle;
  padding: 0 8px;
}
.social-media > li:first-child {
  padding-left: 0;
}
.social-media > li:last-child {
  padding-right: 0;
}

@media (max-width: 991px) {
  .social-media--vertical > li {
    display: block;
    padding: 8px 0;
  }
}

.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;
  }
}

/***** TEXT *****/
.copyright {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 0.1em;
}

/***** LINKS *****/
.independent-link {
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  font-weight: 300;
  font-size: 12px;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.independent-link:hover, .independent-link:focus {
  color: #FFD018;
}

.independent-link--light {
  color: #fff;
}

/***** PICTURES *****/
.logo, .logo-festival, .logo-jwg, .logo-mkidn, .logo-banialuka-horizontal, .logo-banialuka {
  background-repeat: no-repeat;
  background-size: contain;
  overflow: hidden;
  display: block;
  text-indent: -100000px;
  text-align: left;
}

.logo-banialuka {
  background-image: url("../img/logo-banialuka-02.svg");
  width: 100px;
  height: 100px;
}
@media (min-width: 480px) {
  .logo-banialuka {
    width: 110px;
    height: 110px;
  }
}
@media (min-width: 1300px) {
  .logo-banialuka {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 1700px) {
  .logo-banialuka {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 991px) {
  .logo-banialuka--large {
    width: 120px;
    height: 120px;
  }
}

.logo-banialuka-horizontal {
  background-image: url("../img/logo-banialuka-horizontal.svg");
  width: 180px;
  height: 64px;
}
@media (min-width: 1100px) {
  .logo-banialuka-horizontal {
    width: 196px;
    height: 70px;
  }
}
@media (min-width: 1700px) {
  .logo-banialuka-horizontal {
    width: 208px;
    height: 74px;
  }
}

.logo-banialuka-horizontal--light {
  background-image: url("../img/logo-banialuka-horizontal-light.svg");
}

.logo-banialuka--light {
  background-image: url("../img/logo-banialuka-02-light.svg");
}

.logo-banialuka--75-lat {
  background-image: url("../img/logo-banialuka-75-lat.svg");
  width: 212px;
  height: 100px;
}
@media (min-width: 480px) {
  .logo-banialuka--75-lat {
    width: 232px;
    height: 110px;
  }
}
@media (min-width: 1300px) {
  .logo-banialuka--75-lat {
    width: 254px;
    height: 120px;
  }
}
@media (min-width: 1700px) {
  .logo-banialuka--75-lat {
    width: 280px;
    height: 132px;
  }
}

.logo-banialuka--75-lat.logo-banialuka--light {
  background-image: url("../img/logo-banialuka-75-lat-light.svg");
}

.logo-mkidn {
  background-image: url("../img/logo-mkidn-02.svg");
  background-position: center;
  width: 140px;
  height: 100px;
}

.logo-jwg {
  background-image: url("../img/logo-jwg.svg");
  width: 120px;
  height: 29px;
}

.logo-jwg--light {
  background-image: url("../img/logo-jwg-light.svg");
}

.same-height-descripted-logo {
  text-align: center;
  margin: 0 auto;
  font-family: europa, sans-serif;
  overflow: hidden;
}
@media (min-width: 650px) {
  .same-height-descripted-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .same-height-descripted-logo {
    margin: 0;
  }
}
.same-height-descripted-logo__description-container {
  max-width: 280px;
  margin: 0 auto;
}
@media (min-width: 650px) {
  .same-height-descripted-logo__description-container {
    max-width: 200px;
  }
}
.same-height-descripted-logo__logo-container {
  padding: 12px 0 0 0;
}
@media (min-width: 650px) {
  .same-height-descripted-logo__logo-container {
    padding: 0 0 0 20px;
  }
}
.same-height-descripted-logo .same-height-descripted-logo__logo {
  margin: 0 auto;
  display: block;
  height: 140px;
  width: auto !important;
  max-width: 200% !important;
}
@media (min-width: 650px) {
  .same-height-descripted-logo .same-height-descripted-logo__logo {
    margin: 0;
  }
}
@media (min-width: 1300px) {
  .same-height-descripted-logo .same-height-descripted-logo__logo {
    height: 160px;
  }
}

.same-height-descripted-logos-list__item {
  position: relative;
}
@media (min-width: 650px) {
  .same-height-descripted-logos-list__item {
    padding: 0 50px 0 0;
  }
}
@media (min-width: 650px) {
  .same-height-descripted-logos-list__item:before {
    content: "";
    display: block;
    position: absolute;
    background: #000;
    height: 60px;
    width: 1px;
    right: 0;
    left: auto;
    top: 50%;
    margin: -30px 0 0 0;
  }
}

.descripted-logotypes {
  list-style-type: none;
}
@media (min-width: 768px) {
  .descripted-logotypes {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.descripted-logotypes > li {
  position: relative;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .descripted-logotypes > li {
    padding: 0 100px 20px 0;
  }
}
@media (min-width: 1700px) {
  .descripted-logotypes > li {
    padding-right: 160px;
  }
}
.descripted-logotypes > li:first-child {
  padding-top: 0;
}
.descripted-logotypes > li:last-child {
  padding-bottom: 0;
}
.descripted-logotypes > li:last-child:before {
  display: none;
}
.descripted-logotypes > li:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 80px;
  margin: 0 0 0 -40px;
  height: 1px;
  background: #000;
}
@media (min-width: 768px) {
  .descripted-logotypes > li:before {
    height: 60px;
    width: 1px;
    right: 50px;
    left: auto;
    top: 50%;
    margin: -30px 0 0 0;
  }
}
@media (min-width: 1700px) {
  .descripted-logotypes > li:before {
    right: 80px;
  }
}

.descripted-logo {
  text-align: center;
  max-width: 220px;
  margin: 0 auto;
  font-family: europa, sans-serif;
}
@media (min-width: 650px) {
  .descripted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    max-width: 340px;
  }
}
@media (min-width: 768px) {
  .descripted-logo {
    margin: 0;
  }
}
.descripted-logo__logo-container {
  padding: 12px 0 0 0;
}
@media (min-width: 650px) {
  .descripted-logo__logo-container {
    padding: 0 0 0 32px;
  }
}
.descripted-logo__logo {
  margin: 0 auto;
  display: block;
  width: 140px;
}

.descripted-logo--large {
  max-width: 320px;
}
@media (min-width: 650px) {
  .descripted-logo--large {
    max-width: 620px;
  }
}
.descripted-logo--large .descripted-logo__logo {
  width: 320px;
}
@media (min-width: 650px) {
  .descripted-logo--large .descripted-logo__logo {
    width: 380px;
  }
}

.descripted-logo--extra-large {
  max-width: 320px;
}
@media (min-width: 650px) {
  .descripted-logo--extra-large {
    max-width: 620px;
  }
}
@media (min-width: 1500px) {
  .descripted-logo--extra-large {
    max-width: 720px;
  }
}
.descripted-logo--extra-large .descripted-logo__logo {
  width: 320px;
}
@media (min-width: 650px) {
  .descripted-logo--extra-large .descripted-logo__logo {
    width: 380px;
  }
}
@media (min-width: 1500px) {
  .descripted-logo--extra-large .descripted-logo__logo {
    width: 480px;
  }
}

/***** 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;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 48px;
}

.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-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: #FFD018;
  -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-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");
}

/***** CORRECTIONS - SECOND *****/
.news-item__subtitle {
  display: block;
}
.news-item__image {
  display: block;
}
.news-item__image-core {
  background-position: center;
}
.news-item__date {
  white-space: nowrap;
}

.news-item.news-item--side-content {
  width: auto;
  padding: 0 20px;
  width: 240px;
}
@media (min-width: 992px) {
  .news-item.news-item--side-content {
    width: 460px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px;
  }
}
@media (min-width: 1300px) {
  .news-item.news-item--side-content {
    width: 500px;
  }
}
@media (min-width: 1500px) {
  .news-item.news-item--side-content {
    width: 540px;
  }
}
.news-item.news-item--side-content .news-item__image__header {
  margin: 0 0 40px 0;
}
@media (min-width: 768px) {
  .news-item.news-item--side-content .news-item__image__header {
    min-width: 50%;
    padding: 0 32px 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media (min-width: 992px) {
  .news-item.news-item--side-content .news-item__image__header {
    margin: 0;
  }
}
.news-item.news-item--side-content .news-item__image {
  padding: 0 !important;
}
@media (min-width: 992px) {
  .news-item.news-item--side-content .news-item__image {
    width: 100%;
  }
}
.news-item.news-item--side-content .news-item__image-core {
  display: block;
  padding: 0 0 100% 0;
  background-size: cover;
  background-position: center;
}

.news-item--side-content.news-item--vertical .news-item__image-core {
  padding: 0 0 130% 0;
}

.news-item--not-decorated.news-item--vertical .news-item__image-core {
  width: auto;
}

@media (min-width: 1700px) {
  .subtitle-100 {
    font-size: 13px;
  }
}

@media (min-width: 1700px) {
  .title-101 {
    font-size: 22px;
  }
}
@media (min-width: 1700px) {
  .title-101:hover, .title-101:focus {
    font-size: 22px;
  }
}

.title-101--uppercase {
  text-transform: uppercase;
}

@media (min-width: 1700px) {
  .decorated-container__inner {
    max-width: 800px;
    margin: 0 0 0 100px;
  }
}

.site-header-103 .flex-row {
  flex-wrap: nowrap;
}

@media (min-width: 768px) {
  .extra-info-100__item-clear {
    margin-right: 145px;
  }
}
.extra-info-100__item-clear:last-child {
  margin-right: 0;
}

.subpage-header__posttitle-wrapper {
  padding: 20px 0 0 0;
}
.subpage-header__posttitle {
  letter-spacing: 0.16em;
}

.sponsor-item__header {
  display: block;
}

/***** CORRECTIONS - MAIN *****/
@media (min-width: 1700px) {
  .decorated-container__layer {
    max-width: 1400px;
    margin: 0 auto;
  }
}
@media (min-width: 1700px) {
  .decorated-container__inner {
    margin: 0 0 0 auto;
  }
}

.carousel__header--flat {
  padding-bottom: 20px;
}
@media (min-width: 1100px) {
  .carousel__header--flat {
    padding-bottom: 32px;
  }
}
@media (min-width: 1100px) {
  .carousel__inner {
    max-width: 1160px;
    margin: 0 auto;
  }
}
@media (min-width: 1700px) {
  .carousel__inner {
    max-width: 1360px;
    margin: 0 auto;
  }
}

.gallery-item {
  max-width: 250px;
  margin: 0 auto;
  display: block;
}
@media (min-width: 1700px) {
  .gallery-item {
    max-width: 280px;
  }
}

.list-item__title-container {
  max-width: 100%;
  padding: 0 16px 0 0;
}

.article__header {
  padding: 0 0 40px 0;
}
@media (min-width: 1300px) {
  .article__header {
    padding-bottom: 60px;
  }
}

.tile {
  display: block;
}
.tile__title {
  color: #000;
}
@media (min-width: 1700px) {
  .tile__title {
    font-size: 18px;
    line-height: 26px;
  }
}

.picture-section__inner {
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 1300px) {
  .picture-section__inner {
    max-width: 800px;
  }
}
@media (min-width: 1700px) {
  .picture-section__inner {
    max-width: 900px;
  }
}
.video-box-100 {
  display: inline-block;
}

.video-box-100--independent {
  display: block;
}

.video-box-100--primary .video-box-100__cover:before {
  background: #FFD018;
}

.video-box-100--secondary .video-box-100__cover:before {
  background: #043F3C;
}

.video-box-100--tertiary .video-box-100__cover:before {
  background: #E9187C;
}

.bounded-high-picture {
  max-height: 480px;
  margin: 0 auto;
  width: auto;
}
@media (min-width: 768px) {
  .bounded-high-picture {
    margin: 0;
  }
}
@media (min-width: 1300px) {
  .bounded-high-picture {
    max-height: 680px;
  }
}
@media (min-width: 1700px) {
  .bounded-high-picture {
    max-height: 760px;
  }
}

@media (min-width: 768px) {
  .horizontal-subsections {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
}
.horizontal-subsections__item {
  position: relative;
  padding: 20px 0;
}
@media (min-width: 768px) {
  .horizontal-subsections__item {
    width: 33.33%;
    padding: 0 20px;
  }
}
@media (min-width: 768px) {
  .horizontal-subsections__item:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #000;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.horizontal-subsections__item:first-child {
  padding-top: 0;
}
@media (min-width: 768px) {
  .horizontal-subsections__item:first-child {
    padding-left: 0;
  }
}
.horizontal-subsections__item:first-child:before {
  display: none;
}
.horizontal-subsections__item:last-child {
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .horizontal-subsections__item:last-child {
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .horizontal-subsections__item--wide {
    width: 66.66%;
  }
}
@media (min-width: 768px) {
  .horizontal-subsections__item--a-bit-narrow {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .horizontal-subsections__item--a-bit-narrow {
    width: 45%;
    padding-left: 40px;
  }
}
@media (min-width: 1300px) {
  .horizontal-subsections__item--a-bit-narrow {
    width: 40%;
  }
}
@media (min-width: 768px) {
  .horizontal-subsections__item--a-bit-wide {
    width: 60%;
  }
}
@media (min-width: 992px) {
  .horizontal-subsections__item--a-bit-wide {
    width: 55%;
  }
}
@media (min-width: 1300px) {
  .horizontal-subsections__item--a-bit-wide {
    width: 60%;
  }
}

.another-preview-item {
  background: #043F3C;
  color: #fff;
  display: block;
  max-width: 420px;
  margin: 0 auto;
}
@media (min-width: 1300px) {
  .another-preview-item {
    max-width: 480px;
  }
}
.another-preview-item__wrapper {
  padding: 40px;
  position: relative;
}
.another-preview-item__icon-container {
  padding: 0 0 32px 0;
}
.another-preview-item__icon {
  margin: 0 auto;
}
.another-preview-item__subtitle {
  padding: 12px 0 0 0;
}
.another-preview-item .subtitle-100 {
  color: #fff;
}
.another-preview-item__layer {
  background: rgba(4, 63, 60, 0.85);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -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;
  transition: all 0.35s ease;
}
.another-preview-item.another-preview-item--clickable:hover .another-preview-item__layer, .another-preview-item.another-preview-item--clickable:focus .another-preview-item__layer {
  opacity: 1;
}

.another-preview-item--primary {
  background: #FFD018;
  color: #000;
}
.another-preview-item--primary .subtitle-100 {
  color: #000;
}

/***** MASTER *****/
.body--primary {
  background: #FFD018;
}

.body--high-footer .site-footer__main-row {
  padding: 40px 0 0 0;
}
@media (min-width: 650px) {
  .body--high-footer .site-footer__main-row {
    padding-top: 80px;
  }
}

.nowrap {
  white-space: nowrap;
}

/***** LINKS *****/
a {
  color: #000;
}

/***** HEADERS *****/
.section-header__pretitle-container {
  padding: 0 0 16px 0;
}

.page-title {
  font-size: 56px;
  line-height: 64px;
  font-weight: 700;
  font-family: "BwModelicaSS01", 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;
  }
}

.slide-header {
  color: #fff;
}

.slide__bg, .slide__bg-mobile {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
@media (min-width: 768px) {
  .slide__bg, .slide__bg-mobile {
    display: block;
    background-size: auto 120%;
    background-position: top center;
    width: 110%;
  }
}
@media (min-width: 1300px) {
  .slide__bg, .slide__bg-mobile {
    width: 100%;
  }
}
.slide__bg-mobile {
  display: block;
}
@media (min-width: 650px) {
  .slide__bg-mobile {
    background-size: auto 120%;
    background-position: top center;
    width: 110%;
  }
}
@media (min-width: 768px) {
  .slide__bg-mobile {
    display: none;
  }
}
.slide__wrapper {
  padding: 250px 0 120px 0;
  position: relative;
  z-index: 4;
}
@media (min-width: 420px) {
  .slide__wrapper {
    padding-bottom: 120px;
  }
}
@media (min-width: 650px) {
  .slide__wrapper {
    padding-bottom: 160px;
  }
}
@media (min-width: 768px) {
  .slide__wrapper {
    padding: 200px 0 180px 0;
  }
}
@media (min-width: 992px) {
  .slide__wrapper {
    padding: 160px 0 60px 0;
  }
}
@media (min-width: 1300px) {
  .slide__wrapper {
    padding: 180px 0 60px 0;
  }
}
@media (min-width: 1700px) {
  .slide__wrapper {
    padding: 220px 0 100px 0;
  }
}
.slide__inner {
  padding: 0 40px;
}
@media (min-width: 480px) {
  .slide__inner {
    padding: 0 40px 0 16%;
  }
}
@media (min-width: 992px) {
  .slide__inner {
    padding: 0 40px 0 8%;
  }
}
@media (min-width: 1100px) {
  .slide__inner {
    padding: 0 40px 0 12%;
  }
}
@media (min-width: 1500px) {
  .slide__inner {
    padding: 0 40px 0 16%;
  }
}

.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;
}

.lead--wide {
  max-width: 500px;
}
@media (min-width: 1700px) {
  .lead--wide {
    max-width: 600px;
  }
}
.lead--wide .lead__content {
  max-width: 420px;
}

.section-half-header {
  padding: 0 0 40px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .section-half-header {
    padding: 0 50% 60px 0;
    text-align: right;
  }
}
@media (min-width: 1100px) {
  .section-half-header {
    padding-bottom: 80px;
  }
}
@media (min-width: 1700px) {
  .section-half-header {
    padding-bottom: 100px;
  }
}

@media (min-width: 1100px) {
  .section-half-header--less-space {
    padding-bottom: 40px;
  }
}

.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%;
  }
}

.section-subtitle {
  font-size: 20px;
}

.subsection-title {
  text-align: center;
  font-size: 16px;
}

@media (min-width: 420px) {
  .subsection-title--type-01 {
    text-align: left;
  }
}

.std-pretitle {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}
@media (min-width: 1700px) {
  .std-pretitle {
    font-size: 15px;
  }
}

.std-title {
  font-family: "BwModelicaSS01", sans-serif;
  font-style: normal;
  font-weight: bold;
  line-height: 115%;
  letter-spacing: 0.05em;
  font-size: 40px;
}
@media (min-width: 650px) {
  .std-title {
    font-size: 50px;
  }
}
@media (min-width: 1700px) {
  .std-title {
    font-size: 60px;
  }
}
.std-title__line {
  display: block;
  padding: 0 28px 0 0;
}
@media (min-width: 768px) {
  .std-title__line {
    padding-right: 40px;
  }
}

.std-title--small {
  font-size: 30px;
  font-weight: 700;
}
@media (min-width: 1700px) {
  .std-title--small {
    font-size: 38px;
  }
}

.std-title--smaller {
  font-size: 38px;
  line-height: 50px;
  font-weight: 700;
}
@media (min-width: 1700px) {
  .std-title--smaller {
    font-size: 46px;
    line-height: 58px;
  }
}

.std-small-title {
  font-family: "BwModelicaSS01", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 16px;
}
@media (min-width: 1700px) {
  .std-small-title {
    font-size: 18px;
  }
}

.large-title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (min-width: 420px) {
  .large-title {
    font-size: 22px;
  }
}
@media (min-width: 1300px) {
  .large-title {
    font-size: 26px;
  }
}
@media (min-width: 1700px) {
  .large-title {
    font-size: 32px;
  }
}

.icon-header {
  padding: 0 0 20px 0;
  text-align: center;
}

.section-icon {
  display: inline-block;
  width: 120px;
}
@media (min-width: 1700px) {
  .section-icon {
    width: 132px;
  }
}

.std-section-header {
  text-align: right;
  display: flex;
  justify-content: center;
  padding: 0 0 40px 0;
}
@media (min-width: 768px) {
  .std-section-header {
    justify-content: flex-start;
  }
}

.std-section-header--more-space {
  padding-bottom: 64px;
}

.std-section-header--classic {
  text-align: left;
}

@media (min-width: 768px) {
  .std-section-header--moved {
    padding-left: 10%;
  }
}

.std-section-header--plain {
  padding: 0;
}

.side-header {
  text-align: center;
}
@media (min-width: 768px) {
  .side-header {
    text-align: left;
    max-width: 400px;
  }
}
.side-header__subtitle {
  padding: 12px 0 0 0;
}
.side-header__icon-container {
  padding: 20px 0 0 0;
}
@media (min-width: 768px) {
  .side-header__icon-container {
    padding-top: 16px;
  }
}
@media (min-width: 1500px) {
  .side-header__icon-container {
    padding-top: 48px;
  }
}
.side-header__icon {
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .side-header__icon {
    margin: 0;
  }
}
@media (min-width: 900px) {
  .side-header__icon {
    margin: 0 0 0 auto;
  }
}

/* headers-end */
/***** PICTURES *****/
.logo-festival {
  background-image: url("../img/logo-festival.svg");
  width: 188px;
  height: 50px;
}
@media (min-width: 1700px) {
  .logo-festival {
    width: 240px;
    height: 62px;
  }
}

.horizontal-image {
  display: block;
  width: 100%;
  height: 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0 0 60% 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/***** TEXT *****/
.failure {
  color: #DB2B39;
}

.comment {
  font-family: europa, sans-serif;
  font-weight: 300;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 1.5px;
}
@media (min-width: 768px) {
  .comment {
    font-size: 11px;
    line-height: 17px;
  }
}
@media (min-width: 1300px) {
  .comment {
    font-size: 12px;
    line-height: 20px;
  }
}

.comment--distinguished {
  text-transform: uppercase;
}

.std-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 300;
}
@media (min-width: 1700px) {
  .std-text {
    font-size: 18px;
    line-height: 26px;
  }
}
.std-text h3 {
  font-size: 16px;
  font-weight: 700;
  padding: 32px 0 0 0;
  margin: 0;
}
@media (min-width: 1700px) {
  .std-text h3 {
    font-size: 18px;
    padding: 32px 0 8px 0;
  }
}
.std-text h3:first-child {
  padding-top: 0;
}
.std-text h4 {
  padding: 20px 0 0 0;
  font-size: 16px;
  font-weight: 700;
}
.std-text p {
  padding: 5px 0;
}
.std-text p:first-child {
  padding-top: 0;
}
.std-text p:last-child {
  padding-bottom: 0;
}
.std-text img {
  width: auto;
  display: block;
}
.std-text ul,
.std-text ol {
  padding: 5px 0 16px 20px;
}
.std-text ul > li,
.std-text ol > li {
  padding: 2px 0 2px 16px;
  position: relative;
}
@media (min-width: 1700px) {
  .std-text ul > li,
.std-text ol > li {
    padding: 3px 0 3px 20px;
  }
}
.std-text ol {
  padding-top: 12px;
}
.std-text 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) {
  .std-text ul > li:before {
    top: 14px;
  }
}
.std-text > ol {
  counter-reset: stdCounter;
}
.std-text > ol > li {
  padding: 8px 0 16px 28px;
}
@media (min-width: 1700px) {
  .std-text > ol > li {
    padding: 10px 0 20px 32px;
  }
}
.std-text > ol > li:before {
  content: counters(stdCounter, ".") ".";
  counter-increment: stdCounter;
  width: 20px;
  text-align: right;
  top: 8px;
  position: absolute;
  left: 0;
  font-size: 120%;
  font-weight: 700;
  color: #FFD018;
}
@media (min-width: 1700px) {
  .std-text > ol > li:before {
    width: 24px;
    top: 10px;
  }
}
.std-text > ol > li::marker {
  content: "";
}
.std-text > ol > li > ol {
  counter-reset: stdCounterInner;
}
.std-text > ol > li > ol > li {
  position: relative;
  padding: 2px 0 2px 24px;
}
.std-text > ol > li > ol > li:before {
  content: counters(stdCounterInner, ".", lower-latin) ") ";
  counter-increment: stdCounterInner;
  position: absolute;
  top: 2px;
  left: 0;
  width: 16px;
  text-align: right;
}
.std-text > ol > li p:first-child {
  font-weight: 700;
}
.std-text a {
  color: #E9187C;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.std-text a:hover, .std-text a:focus {
  color: #FFD018;
}

.law-document__header {
  text-align: center;
  padding: 0 0 48px 0;
}

.law-list > li {
  padding: 20px 0;
}
.law-list > li:first-child {
  padding-top: 0;
}

.law-paragraph__header {
  text-align: center;
  padding: 0 0 20px 0;
}

.std-text--large {
  font-size: 18px;
  line-height: 26px;
}
@media (min-width: 1300px) {
  .std-text--large {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width: 1700px) {
  .std-text--large {
    font-size: 24px;
    line-height: 32px;
  }
}

.std-text--small {
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 1700px) {
  .std-text--small {
    font-size: 16px;
    line-height: 24px;
  }
}

.std-text--very-small {
  font-size: 12px;
  line-height: 20px;
}
@media (min-width: 1300px) {
  .std-text--very-small {
    font-size: 14px;
    line-height: 22px;
  }
}

.std-text--thin {
  font-weight: 300;
}

.std-text--bold {
  font-weight: 700;
}

.std-text--independent {
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
}

.std-text--bounded {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .std-text--bounded {
    margin: 0;
    text-align: left;
  }
}
@media (min-width: 1700px) {
  .std-text--bounded {
    max-width: 480px;
  }
}

.plain-cite {
  font-style: italic;
}

/***** CONTAINERS *****/
.site-inner {
  position: relative;
  z-index: 500;
}

.low-page-header {
  position: relative;
  color: #fff;
  background: #E9187C;
}
.low-page-header__layer {
  position: relative;
  z-index: 4;
  max-width: 1250px;
  margin: 0 auto;
}
.low-page-header__wrapper {
  padding: 280px 0 60px 0;
  position: relative;
  z-index: 4;
}
@media (min-width: 768px) {
  .low-page-header__wrapper {
    padding: 140px 0 140px 0;
  }
}
@media (min-width: 1300px) {
  .low-page-header__wrapper {
    padding: 180px 0 220px 0;
  }
}
.low-page-header__inner {
  padding: 0 32px;
}
@media (min-width: 420px) {
  .low-page-header__inner {
    padding: 0 64px;
  }
}
@media (min-width: 480px) {
  .low-page-header__inner {
    padding: 0 80px;
  }
}
@media (min-width: 650px) {
  .low-page-header__inner {
    padding: 0 120px;
  }
}
.low-page-header__bg, .low-page-header__mobile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 120%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: none;
}
@media (min-width: 768px) {
  .low-page-header__bg, .low-page-header__mobile-bg {
    display: block;
    background-size: auto 100%;
    background-position: center;
  }
}
@media (min-width: 1100px) {
  .low-page-header__bg, .low-page-header__mobile-bg {
    width: 100%;
  }
}
.low-page-header__mobile-bg {
  display: block;
  height: 100%;
  background-size: auto 100%;
  background-position: 50% center;
  right: 0;
  left: auto;
  width: 100%;
}
@media (min-width: 650px) {
  .low-page-header__mobile-bg {
    background-position: right center;
  }
}
@media (min-width: 768px) {
  .low-page-header__mobile-bg {
    display: none;
  }
}

.small-event-rows-list > li {
  display: block;
  padding: 20px 0;
}
@media (min-width: 420px) {
  .small-event-rows-list > li {
    padding: 16px 0;
  }
}
.small-event-rows-list > li:first-child {
  padding-top: 0;
}
.small-event-rows-list > li:last-child {
  padding-bottom: 0;
}

.small-event-row {
  text-align: center;
  max-width: 340px;
  margin: 0 auto;
}
@media (min-width: 420px) {
  .small-event-row {
    text-align: left;
    max-width: 100%;
  }
}
@media (min-width: 420px) {
  .small-event-row__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.small-event-row__term-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 650px) {
  .small-event-row__term-container {
    justify-content: flex-start;
    padding: 0 32px 0 0;
  }
}
@media (min-width: 1700px) {
  .small-event-row__term-container {
    padding-right: 48px;
  }
}
@media (min-width: 768px) {
  .small-event-row__main-outer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.small-event-row__main-container {
  padding: 12px 0 0 0;
}
@media (min-width: 768px) {
  .small-event-row__main-container {
    padding: 0;
  }
}
.small-event-row__day {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 420px) {
  .small-event-row__day {
    padding: 0 16px 0 0;
  }
}
@media (min-width: 768px) {
  .small-event-row__day {
    font-size: 20px;
  }
}
@media (min-width: 1700px) {
  .small-event-row__day {
    font-size: 22px;
  }
}
.small-event-row__hour {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .small-event-row__hour {
    color: #FFD018;
    font-size: 20px;
  }
}
@media (min-width: 1700px) {
  .small-event-row__hour {
    font-size: 22px;
  }
}
.small-event-row__day-of-week {
  font-size: 12px;
  font-weight: 400;
  display: none;
}
@media (min-width: 768px) {
  .small-event-row__day-of-week {
    display: block;
  }
}
@media (min-width: 1700px) {
  .small-event-row__day-of-week {
    font-size: 14px;
  }
}
.small-event-row__day-of-week--mobile {
  display: block;
}
@media (min-width: 420px) {
  .small-event-row__day-of-week--mobile {
    padding: 0 16px 0 0;
  }
}
@media (min-width: 768px) {
  .small-event-row__day-of-week--mobile {
    display: none;
  }
}
.small-event-row__extra-info-container {
  padding: 2px 0 0 0;
}
.small-event-row__button-container {
  padding: 20px 0 0 0;
}
@media (min-width: 420px) {
  .small-event-row__button-container {
    padding: 0 0 0 32px;
  }
}
.small-event-row__additional-title {
  padding: 2px 0 0 0;
}

.event-row {
  text-align: center;
  background: #F6F4F4;
  max-width: 460px;
  margin: 0 auto;
  -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) {
  .event-row {
    max-width: 1350px;
    text-align: left;
  }
}
@media (min-width: 1300px) {
  .event-row {
    text-align: center;
  }
}
.event-row:hover {
  background: #eee;
}
.event-row__wrapper {
  padding: 16px 20px;
}
@media (min-width: 420px) {
  .event-row__wrapper {
    padding: 20px 40px 32px 40px;
  }
}
@media (min-width: 768px) {
  .event-row__wrapper {
    padding: 20px 32px;
  }
}
@media (min-width: 1300px) {
  .event-row__wrapper {
    padding: 24px 26px;
  }
}
@media (min-width: 768px) {
  .event-row__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .event-row__main-info-container {
    width: 60%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 20px 0 0;
  }
}
@media (min-width: 1100px) {
  .event-row__main-info-container {
    width: 40%;
  }
}
@media (min-width: 1300px) {
  .event-row__main-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 66%;
    padding-right: 0;
  }
}
@media (min-width: 768px) {
  .event-row__secondary-info-container {
    width: 40%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 0 20px;
    max-width: 284px;
  }
}
@media (min-width: 1100px) {
  .event-row__secondary-info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 60%;
    width: 60%;
  }
}
@media (min-width: 1300px) {
  .event-row__secondary-info-container {
    max-width: 34%;
    width: 34%;
    text-align: center;
    padding: 0;
  }
}
.event-row__term-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 10px 0;
}
@media (min-width: 768px) {
  .event-row__term-container {
    justify-content: flex-start;
    padding-bottom: 20px;
  }
}
@media (min-width: 1300px) {
  .event-row__term-container {
    padding-bottom: 0;
    max-width: 34%;
    min-width: 34%;
    justify-content: space-between;
  }
}
@media (min-width: 420px) {
  .event-row__info-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    padding: 12px 0 20px 0;
  }
}
@media (min-width: 768px) {
  .event-row__info-container {
    width: 100%;
  }
}
@media (min-width: 1300px) {
  .event-row__info-container {
    padding: 0;
    width: 47%;
  }
}
@media (min-width: 420px) {
  .event-row__buttons-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 80%;
    margin: 0 auto;
    padding: 10px 0 0 0;
  }
}
@media (min-width: 768px) {
  .event-row__buttons-container {
    width: 100%;
  }
}
@media (min-width: 1100px) {
  .event-row__buttons-container {
    padding: 0;
  }
}
@media (min-width: 1300px) {
  .event-row__buttons-container {
    width: 53%;
  }
}
.event-row__cell {
  padding: 8px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .event-row__cell {
    padding: 0 16px;
  }
}
@media (min-width: 1100px) {
  .event-row__cell {
    padding: 0 24px;
  }
}
@media (min-width: 1300px) {
  .event-row__cell {
    padding: 0 8px;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .event-row__cell:first-child {
    padding-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1099px) {
  .event-row__cell:last-child {
    padding-right: 0;
  }
}
@media (min-width: 1100px) {
  .event-row__cell--date {
    padding-left: 0;
  }
}
.event-row__cell--more {
  padding-top: 20px;
}
@media (min-width: 420px) {
  .event-row__cell--more {
    padding-top: 0;
  }
}
@media (min-width: 1100px) {
  .event-row__cell--more {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .event-row__cell--title {
    padding-left: 0;
  }
}
@media (min-width: 1300px) {
  .event-row__cell--title {
    padding-left: 18px;
    max-width: 48%;
    min-width: 48%;
    text-align: left;
  }
}
@media (min-width: 420px) {
  .event-row__cell--label {
    padding-top: 20px;
  }
}
@media (min-width: 768px) {
  .event-row__cell--label {
    padding-left: 0;
  }
}
@media (min-width: 1300px) {
  .event-row__cell--label {
    padding: 0 16px;
    max-width: 16%;
    min-width: 16%;
  }
}
@media (min-width: 420px) {
  .event-row__cell--category {
    text-align: left;
  }
}
@media (min-width: 1100px) {
  .event-row__cell--category {
    width: 100%;
  }
}
@media (min-width: 1300px) {
  .event-row__cell--category {
    width: 60%;
    text-align: center;
  }
}
.event-row__cell--duration {
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .event-row__cell--duration {
    width: 100%;
  }
}
@media (min-width: 1300px) {
  .event-row__cell--duration {
    width: 40%;
  }
}
.event-row__cell--button {
  padding-top: 48px;
}
@media (min-width: 420px) {
  .event-row__cell--button {
    padding-top: 0;
    text-align: right;
  }
}
@media (min-width: 1100px) {
  .event-row__cell--button {
    width: 100%;
  }
}

.events-manager__content {
  min-height: 200px;
}
.events-manager__loading-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 100;
}

.std-spinner {
  width: 48px;
  height: 48px;
  background: url("../img/icons/icon-spinner.svg") no-repeat center;
  background-size: contain;
  animation: Rotate 1s infinite linear;
  margin: 0 auto;
}

.events-list > li {
  display: block;
  padding: 10px 0;
}

.row-date {
  font-weight: 700;
  font-size: 22px;
}
@media (min-width: 1300px) {
  .row-date {
    font-size: 30px;
  }
}

.row-label {
  font-size: 14px;
}

.row-label--larger {
  font-size: 16px;
}

.row-title {
  font-size: 16px;
  font-family: "BwModelicaSS01", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (min-width: 768px) {
  .row-title {
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .row-title {
    font-size: 20px;
  }
}

.inline-label {
  text-transform: uppercase;
  color: #E9187C;
  letter-spacing: 1px;
  font-size: 16px;
  font-weight: 400;
  font-family: europa, sans-serif;
}

.inline-label--small {
  font-size: 14px;
}

.linear-calendar__inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 0 0 20px 0;
}
.linear-calendar__week {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.linear-calendar__day--active {
  padding: 0 8px;
}
.linear-calendar__day--passed {
  display: none;
}
.linear-calendar__day-container:nth-child(6), .linear-calendar__day-container:nth-child(7) {
  color: #FFD018;
}
.linear-calendar__months-navigation {
  padding: 0 0 46px 0;
}
@media (min-width: 768px) {
  .linear-calendar__months-navigation {
    padding: 0;
  }
}
.linear-calendar__years-navigation {
  padding: 0 0 32px 0;
}
@media (min-width: 768px) {
  .linear-calendar__years-navigation {
    padding-bottom: 40px;
  }
}
@media (min-width: 1700px) {
  .linear-calendar__years-navigation {
    padding-bottom: 56px;
  }
}
@media (min-width: 768px) {
  .linear-calendar__months-dropdown {
    display: none;
  }
}

.calendar-day {
  font-weight: 700;
  font-size: 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;
  display: block;
  cursor: pointer;
}
@media (min-width: 1700px) {
  .calendar-day {
    font-size: 24px;
  }
}
.calendar-day:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 6px;
  top: 100%;
  margin: 4px 0 0 0;
  opacity: 0;
  background: #FFD018;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.calendar-day.active {
  font-size: 38px;
  top: 6px;
}
.calendar-day.active:before {
  opacity: 1;
}

.std-simple-bookmark {
  display: inline-block;
  font-family: "BwModelicaSS01", 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: #FFD018;
  -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: #FFD018;
}
.std-dropdown-item__wrapper {
  padding: 8px 20px;
  font-size: 16px;
}

.year-blocks {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media (min-width: 768px) {
  .year-blocks {
    align-items: flex-start;
  }
}
.year-blocks__item {
  padding: 0 40px 0 0;
}
@media (min-width: 768px) {
  .year-blocks__item {
    padding-right: 64px;
  }
}
@media (min-width: 1500px) {
  .year-blocks__item {
    padding-right: 100px;
  }
}

.year-block__months-container {
  display: none;
}
@media (min-width: 768px) {
  .year-block__months-container {
    display: block;
    padding: 40px 0 0 0;
  }
}

@media (min-width: 768px) {
  .months-block {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
@media (min-width: 768px) {
  .months-block > li {
    padding: 0 10px 0 0;
  }
}

.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;
  }
}
.irregular-grid__item {
  padding: 32px 0;
}
.irregular-grid__item:first-child {
  padding-top: 0;
}
.irregular-grid__item:last-child {
  padding-bottom: 0;
}
@media (min-width: 650px) {
  .irregular-grid__item:nth-child(3n+1) {
    float: left;
    padding: 80px 0 0 0;
  }
}
@media (min-width: 650px) {
  .irregular-grid__item:nth-child(3n+2) {
    float: right;
    padding: 0;
  }
}
@media (min-width: 650px) {
  .irregular-grid__item:nth-child(3n+3) {
    clear: both;
    padding: 60px 0 0 0;
  }
}

.preview-item--with-content {
  max-width: 240px;
  margin: 0 auto;
}
@media (min-width: 1300px) {
  .preview-item--with-content {
    max-width: 340px;
  }
}
@media (min-width: 1700px) {
  .preview-item--with-content {
    max-width: 400px;
  }
}
.preview-item--with-content .preview-item__image {
  padding: 0;
}
@media (min-width: 1300px) {
  .preview-item--with-content .preview-item__image {
    margin-bottom: 20px;
  }
}
.preview-item--with-content .preview-item__image-core {
  padding: 0 0 100% 0;
  background-size: cover;
  background-position: center;
}
.preview-item--with-content .preview-item__more-button-container {
  padding: 30px 0 0 0;
  text-align: right;
}
.preview-item--with-content .preview-item__button-container {
  padding: 8px 0 0 0;
}
.preview-item--with-content .preview-item__pretitle--desktop {
  display: none;
}
@media (min-width: 768px) {
  .preview-item--with-content .preview-item__pretitle--desktop {
    display: block;
  }
}
@media (min-width: 1700px) {
  .preview-item--with-content .preview-item__description-container {
    padding-top: 10px;
  }
}

@media (min-width: 650px) {
  .preview-item--with-content.preview-item--wide-content {
    max-width: 300px;
  }
}
@media (min-width: 1300px) {
  .preview-item--with-content.preview-item--wide-content {
    max-width: 340px;
  }
}
@media (min-width: 1700px) {
  .preview-item--with-content.preview-item--wide-content {
    max-width: 400px;
  }
}
@media (min-width: 650px) {
  .preview-item--with-content.preview-item--wide-content .preview-item__image {
    max-width: 240px;
  }
}
@media (min-width: 1300px) {
  .preview-item--with-content.preview-item--wide-content .preview-item__image {
    max-width: 280px;
  }
}
@media (min-width: 1700px) {
  .preview-item--with-content.preview-item--wide-content .preview-item__image {
    max-width: 340px;
  }
}
@media (min-width: 768px) {
  .preview-item--with-content.preview-item--side-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 580px;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1300px) {
  .preview-item--with-content.preview-item--side-content {
    max-width: 700px;
  }
}
@media (min-width: 1700px) {
  .preview-item--with-content.preview-item--side-content {
    max-width: 900px;
  }
}
@media (min-width: 768px) {
  .preview-item--with-content.preview-item--side-content .preview-item__image-container {
    min-width: 240px;
    padding: 0 32px 0 0;
  }
}
@media (min-width: 1300px) {
  .preview-item--with-content.preview-item--side-content .preview-item__image-container {
    min-width: 320px;
    padding-right: 40px;
  }
}
@media (min-width: 1700px) {
  .preview-item--with-content.preview-item--side-content .preview-item__image-container {
    min-width: 360px;
    padding-right: 60px;
  }
}
.preview-item--with-content.preview-item--side-content .preview-item__pretitle {
  display: block;
}
@media (min-width: 768px) {
  .preview-item--with-content.preview-item--side-content .preview-item__pretitle--desktop {
    display: block;
  }
}

.preview-item--with-content.preview-item--horizontal .preview-item__image-core {
  padding: 0 0 72% 0;
}

.preview-item--with-content.preview-item--vertical .preview-item__image-core {
  padding: 0 0 130% 0;
}

.preview-item.preview-item--vertical-02 {
  max-width: 360px;
}
.preview-item.preview-item--vertical-02 .preview-item__image-core {
  padding: 0 0 120% 0;
}

.preview-item--horizontal .preview-item__description-text {
  margin-top: 12px;
}

.preview-item__image {
  display: block;
}
.preview-item__image-core {
  background-position: center;
}
.preview-item__description {
  color: #fff;
}

.video {
  display: block;
  position: relative;
  padding-bottom: 56.75%;
  height: 0;
  margin: 0 auto;
}
.video iframe,
.video video {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.video--flat {
  padding-bottom: 42%;
}

.video-with-cover {
  position: relative;
}
.video-with-cover__cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  cursor: pointer;
}

.simple-lead__header {
  padding: 0 0 48px 0;
}
.simple-lead__content {
  text-align: justify;
}
@media (min-width: 1300px) {
  .simple-lead__content {
    padding: 0 0 0 90px;
  }
}
@media (min-width: 1700px) {
  .simple-lead__content {
    padding-left: 104px;
  }
}
.simple-lead__button-container {
  padding: 20px 0 0 0;
  text-align: right;
}
@media (min-width: 1300px) {
  .simple-lead__button-container {
    padding-top: 32px;
  }
}
@media (min-width: 1700px) {
  .simple-lead__button-container {
    padding-top: 40px;
  }
}

.section-with-picture {
  max-width: 360px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .section-with-picture {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .section-with-picture__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row-reverse;
  }
}
.section-with-picture__content-container {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .section-with-picture__content-container {
    width: 50%;
    padding: 0 0 0 40px;
  }
}
@media (min-width: 1700px) {
  .section-with-picture__content-container {
    padding-left: 80px;
  }
}
.section-with-picture__picture-container {
  padding: 64px 0 0 0;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .section-with-picture__picture-container {
    width: 50%;
    padding: 0 60px 0 0;
  }
}
@media (min-width: 1300px) {
  .section-with-picture__picture-container {
    padding-right: 40px;
  }
}
@media (min-width: 1700px) {
  .section-with-picture__picture-container {
    padding-right: 80px;
  }
}
.section-with-picture__picture-wrapper {
  position: relative;
}
.section-with-picture__picture-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -40px;
  width: 300%;
  left: -100%;
  height: 45%;
  background: #F6F4F4;
}
@media (min-width: 768px) {
  .section-with-picture__picture-wrapper:before {
    left: auto;
    right: -40px;
  }
}
@media (min-width: 1300px) {
  .section-with-picture__picture-wrapper:before {
    right: -80px;
    bottom: -80px;
    height: 55%;
  }
}
@media (min-width: 1700px) {
  .section-with-picture__picture-wrapper:before {
    right: -100px;
    bottom: -100px;
  }
}
.section-with-picture__picture-inner {
  position: relative;
  z-index: 4;
}

.indicated-box__header {
  padding: 0 0 0 32px;
}
@media (min-width: 650px) {
  .indicated-box__header {
    padding-left: 64px;
  }
}
@media (min-width: 1300px) {
  .indicated-box__header {
    padding-left: 100px;
  }
}
@media (min-width: 1700px) {
  .indicated-box__header {
    padding: 0 0 10px 140px;
  }
}

@media (min-width: 768px) {
  .bookmarks-manager-00 .bookmarks-manager__bookmarks-container {
    padding: 0 0 32px 0;
  }
}
@media (min-width: 768px) {
  .bookmarks-manager-00 .bookmarks-manager__bookmark-container {
    display: inline-block;
    padding: 10px 48px 0 0;
  }
}
@media (min-width: 768px) {
  .bookmarks-manager-00 .filter-100__item {
    margin: 6px 0;
  }
}

.small-fixed-info {
  background: #043F3C;
  color: #fff;
  padding: 20px 20px 20px 92px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 100000;
  display: none;
}
@media (min-width: 480px) {
  .small-fixed-info {
    padding-left: 116px;
  }
}
@media (min-width: 650px) {
  .small-fixed-info {
    padding: 20px 28px 20px 120px;
  }
}
@media (min-width: 768px) {
  .small-fixed-info {
    max-width: 830px;
    left: 50%;
    margin: 0 0 0 -415px;
  }
}
@media (min-width: 900px) {
  .small-fixed-info {
    padding-left: 80px;
  }
}
.small-fixed-info__inner {
  position: relative;
  padding: 0 32px 0 0;
}
@media (min-width: 480px) {
  .small-fixed-info__inner {
    padding-right: 40px;
  }
}
@media (min-width: 650px) {
  .small-fixed-info__inner {
    padding-right: 72px;
  }
}
.small-fixed-info__close-container {
  position: absolute;
  top: 0;
  right: 0;
}
.small-fixed-info__close {
  cursor: pointer;
}

/** containers-end **/
/***** MODULES *****/
.tooltip-section {
  position: relative;
}
.tooltip-section__tooltip-layer {
  position: absolute;
  right: 0;
  top: 100%;
  width: 280px;
  z-index: 500;
  padding: 12px 0 0 0;
  display: none;
}
.tooltip-section__close {
  cursor: pointer;
}

.tooltip-section--single .tooltip-section__tooltip-layer {
  top: 0;
  padding: 0;
}

.tooltip {
  background: #043F3C;
  color: #fff;
  text-align: center;
  padding: 40px 20px 32px 20px;
  position: relative;
}
.tooltip__close-container {
  position: absolute;
  top: 12px;
  right: 12px;
}
.tooltip__subheader {
  padding: 0 0 10px 0;
}
.tooltip__row {
  padding: 20px 0 0 0;
}
.tooltip__row--flat {
  padding-top: 8px;
}

.std-scrollable-section {
  position: relative;
  padding: 0 40px 0 0;
  max-height: 186px;
}
@media (min-width: 768px) {
  .std-scrollable-section {
    max-height: 140px;
  }
}
@media (min-width: 1300px) {
  .std-scrollable-section {
    max-height: 230px;
  }
}
@media (min-width: 1700px) {
  .std-scrollable-section {
    max-height: 260px;
  }
}

/** modules-end **/
/***** 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;
  }
}

.spectacular-button {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #000;
  margin: 0 0 0 -4px;
  padding: 0 0 8px 0;
}
@media (min-width: 1700px) {
  .spectacular-button {
    font-size: 16px;
  }
}
.spectacular-button:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 16px;
  background: #FFD018;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.spectacular-button__inner {
  padding: 0 24px;
  position: relative;
  z-index: 4;
}
.spectacular-button:hover:before {
  height: 32px;
}

.spectacular-button--large {
  font-size: 16px;
}
@media (min-width: 1300px) {
  .spectacular-button--large {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .spectacular-button--large:before {
    height: 20px;
  }
}
.spectacular-button--large:hover:before {
  height: 38px;
}

.spectacular-button--light-decoration:before {
  background: #fff;
}

.spectacular-downwards {
  width: 20px;
  height: 100px;
  display: block;
  background: url("../img/icons/icon-spectacular-downwards-light.svg") no-repeat center;
  background-size: contain;
  text-indent: -10000px;
  text-align: left;
}
@media (min-width: 1700px) {
  .spectacular-downwards {
    width: 24px;
    height: 120px;
  }
}

.more-button {
  font-size: 16px;
  line-height: 16px;
  text-align: right;
  letter-spacing: 0.05em;
  color: #043F3C;
  outline: none;
  text-decoration: none;
  display: inline-block;
}
.more-button:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 20px;
  background: url("../img/icons/icon-eye-green.svg") no-repeat center;
  background-size: contain;
  margin-right: 15px;
  transition: transform 0.25s ease;
}
.more-button:hover {
  color: #043F3C;
  outline: none;
  text-decoration: none;
}
.more-button:hover:before {
  transform: scale(1.2);
}

/***** ICONS *****/
.icon-rolled-up-arrow {
  width: 100px;
  height: 20px;
  background: url("../img/icons/icon-rolled-up-arrow-tertiary.svg") no-repeat center;
  background-size: contain;
}

.icon-rolled-up-arrow--tertiary {
  background-image: url("../img/icons/icon-rolled-up-arrow-tertiary.svg");
}

.icon-person-placeholder, .icon-person-placeholder-woman, .icon-person-placeholder-man {
  width: 132px;
  height: 132px;
  background-size: contain;
  background-position: center;
}
@media (min-width: 1300px) {
  .icon-person-placeholder, .icon-person-placeholder-woman, .icon-person-placeholder-man {
    width: 150px;
    height: 150px;
  }
}

.icon-person-placeholder-man {
  background-image: url("../img/crew/placeholder-man-light.svg");
}

.icon-person-placeholder-woman {
  background-image: url("../img/crew/placeholder-woman.svg");
}

/***** SECTIONS *****/
.side-box-section {
  position: relative;
  z-index: 2;
}
@media (min-width: 420px) {
  .side-box-section {
    padding: 0 0 40px 40px;
  }
}
@media (min-width: 480px) {
  .side-box-section {
    padding: 0 0 40px 16%;
  }
}
@media (min-width: 992px) {
  .side-box-section {
    max-width: 720px;
    margin: 0 40px 40px auto;
    padding: 0;
  }
}
@media (min-width: 1300px) {
  .side-box-section {
    max-width: 800px;
    margin: 0 40px 0 auto;
  }
}
@media (min-width: 1500px) {
  .side-box-section {
    margin: 0 10% 0 auto;
  }
}
.side-box-section__layer {
  padding: 0 20px;
  background: #fff;
  -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);
}
@media (min-width: 420px) {
  .side-box-section__layer {
    padding: 0 32px;
  }
}
@media (min-width: 480px) {
  .side-box-section__layer {
    padding: 0 48px;
  }
}
@media (min-width: 1300px) {
  .side-box-section__layer {
    padding: 0 60px;
  }
}
.side-box-section__wrapper {
  padding: 32px 0;
}
@media (min-width: 480px) {
  .side-box-section__wrapper {
    padding: 48px 0;
  }
}

@media (min-width: 900px) {
  .side-box-section--lying-beneath .side-box-section__wrapper {
    min-height: 200px;
  }
}

@media (min-width: 480px) {
  .side-box-section--lying-deeper {
    padding-left: 10%;
  }
}

.wide-section__wrapper {
  padding: 40px 0;
}
@media (min-width: 1700px) {
  .wide-section__wrapper {
    padding: 80px 0;
  }
}
.wide-section__inner {
  position: relative;
  z-index: 4;
  padding: 0 20px;
}
@media (min-width: 420px) {
  .wide-section__inner {
    padding: 0 40px;
  }
}

@media (min-width: 900px) {
  .std-horizontal-section {
    display: flex;
    justify-content: space-between;
  }
}
.std-horizontal-section__header {
  padding: 0 0 40px 0;
}
@media (min-width: 768px) {
  .std-horizontal-section__header {
    width: 50%;
  }
}
@media (min-width: 900px) {
  .std-horizontal-section__header {
    width: 33.33%;
    padding-top: 40px;
  }
}
@media (min-width: 1300px) {
  .std-horizontal-section__header {
    padding-top: 64px;
  }
}
@media (min-width: 900px) {
  .std-horizontal-section__content {
    width: 66.66%;
  }
}

.horizontal-scrollable-section {
  position: relative;
}

.std-section {
  position: relative;
}
.std-section__layer {
  padding: 0 40px;
}
@media (min-width: 650px) {
  .std-section__layer {
    padding: 0 40px;
  }
}
.std-section__layer--right-wide {
  padding-right: 0;
  padding-left: 0;
}
@media (min-width: 768px) {
  .std-section__layer--right-wide {
    padding-left: 40px;
  }
}
.std-section__wrapper {
  padding: 64px 0;
}
@media (min-width: 992px) {
  .std-section__wrapper {
    padding: 80px 0;
  }
}
@media (min-width: 1700px) {
  .std-section__wrapper {
    padding: 120px 0;
  }
}
@media (min-width: 1300px) {
  .std-section__wrapper--high {
    padding: 100px 0;
  }
}
@media (min-width: 1700px) {
  .std-section__wrapper--high {
    padding: 160px 0;
  }
}
.std-section__wrapper--only-top {
  padding-bottom: 0;
}
.std-section__wrapper--only-bottom {
  padding-top: 0;
}
.std-section__inner {
  max-width: 680px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .std-section__inner {
    max-width: 780px;
  }
}
@media (min-width: 1300px) {
  .std-section__inner {
    max-width: 860px;
  }
}
@media (min-width: 1700px) {
  .std-section__inner {
    max-width: 1000px;
  }
}
@media (min-width: 1100px) {
  .std-section__inner--wide {
    max-width: 860px;
  }
}
@media (min-width: 1300px) {
  .std-section__inner--wide {
    max-width: 950px;
  }
}
@media (min-width: 1700px) {
  .std-section__inner--wide {
    max-width: 1200px;
  }
}
.std-section__inner--very-wide {
  max-width: 100%;
}
@media (min-width: 1300px) {
  .std-section__inner--very-wide {
    margin: 0 5%;
  }
}
@media (min-width: 1500px) {
  .std-section__inner--very-wide {
    margin: 0 8%;
  }
}
.std-section__content {
  margin: 0 auto;
}
@media (min-width: 1100px) {
  .std-section__content {
    max-width: 650px;
  }
}
@media (min-width: 1300px) {
  .std-section__content {
    max-width: 720px;
  }
}
@media (min-width: 1700px) {
  .std-section__content {
    max-width: 900px;
  }
}
@media (min-width: 1300px) {
  .std-section__content--wider {
    max-width: 820px;
  }
}
@media (min-width: 1700px) {
  .std-section__content--wider {
    max-width: 1000px;
  }
}
@media (min-width: 1100px) {
  .std-section__content--type-02 {
    margin: 0 0 0 auto;
  }
}
.std-section__row {
  padding: 32px 0 0 0;
}
@media (min-width: 768px) {
  .std-section__row {
    padding-top: 64px;
  }
}
.std-section__row--higher {
  padding: 48px 0 0 0;
}
@media (min-width: 768px) {
  .std-section__row--higher {
    padding-top: 80px;
  }
}

.std-section--primary:before {
  content: "";
  display: block;
  background: #FFD018;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
}

.sub-bg-section {
  position: relative;
}
.sub-bg-section:before {
  content: "";
  display: block;
  position: absolute;
  top: 30%;
  height: 70%;
  width: 100%;
  left: 0;
  background: #F6F4F4;
}
@media (min-width: 992px) {
  .sub-bg-section:before {
    top: -5%;
    left: 15%;
  }
}
@media (min-width: 1300px) {
  .sub-bg-section:before {
    height: 80%;
  }
}
@media (min-width: 1500px) {
  .sub-bg-section:before {
    left: 20%;
  }
}
@media (min-width: 1700px) {
  .sub-bg-section:before {
    left: 24%;
  }
}
.sub-bg-section__inner {
  position: relative;
  z-index: 4;
}

.logotype-section {
  max-width: 360px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .logotype-section {
    max-width: 900px;
    margin: 0 auto;
  }
}
@media (min-width: 1300px) {
  .logotype-section {
    max-width: 1200px;
  }
}
@media (min-width: 1700px) {
  .logotype-section {
    max-width: 1500px;
  }
}
.logotype-section__header {
  padding: 0 0 40px 0;
}

.std-decorated-section {
  position: relative;
}
.std-decorated-section__decoration-container {
  position: absolute;
  width: 100%;
}
.std-decorated-section__decoration {
  background-repeat: no-repeat;
}
.std-decorated-section__content-container {
  position: relative;
  z-index: 4;
}

.std-decorated-section-01 .std-decorated-section__decoration-container {
  top: 50%;
  left: 50%;
  width: 1500px;
  margin: -100px 0 0 0;
  -webkit-transform: translate3d(-900px, -50%, 0);
  -moz-transform: translate3d(-900px, -50%, 0);
  transform: translate3d(-900px, -50%, 0);
}
@media (min-width: 650px) {
  .std-decorated-section-01 .std-decorated-section__decoration-container {
    -webkit-transform: translate3d(-850px, -50%, 0);
    -moz-transform: translate3d(-850px, -50%, 0);
    transform: translate3d(-850px, -50%, 0);
  }
}
@media (min-width: 768px) {
  .std-decorated-section-01 .std-decorated-section__decoration-container {
    margin: 120px 0 0 0;
    -webkit-transform: translate3d(-650px, -50%, 0);
    -moz-transform: translate3d(-650px, -50%, 0);
    transform: translate3d(-650px, -50%, 0);
  }
}
@media (min-width: 992px) {
  .std-decorated-section-01 .std-decorated-section__decoration-container {
    width: 1700px;
    -webkit-transform: translate3d(-750px, -50%, 0);
    -moz-transform: translate3d(-750px, -50%, 0);
    transform: translate3d(-750px, -50%, 0);
  }
}
@media (min-width: 1300px) {
  .std-decorated-section-01 .std-decorated-section__decoration-container {
    width: 2800px;
    margin: 350px 0 0 0;
    -webkit-transform: translate3d(-1400px, -50%, 0);
    -moz-transform: translate3d(-1400px, -50%, 0);
    transform: translate3d(-1400px, -50%, 0);
  }
}
@media (min-width: 1700px) {
  .std-decorated-section-01 .std-decorated-section__decoration-container {
    width: 3700px;
    margin: 440px 0 0 0;
    -webkit-transform: translate3d(-1870px, -50%, 0);
    -moz-transform: translate3d(-1870px, -50%, 0);
    transform: translate3d(-1870px, -50%, 0);
  }
}
.std-decorated-section-01 .std-decorated-section__decoration {
  background-image: url("../img/decorations/decoration-heads.svg");
  background-size: 100% auto;
  background-position: center;
  padding: 0 0 300% 0;
}

.std-decorated-section-02 .std-decorated-section__decoration-container {
  top: 0;
  left: 50%;
  width: 1500px;
  margin: 0;
  -webkit-transform: translate3d(-900px, 0, 0);
  -moz-transform: translate3d(-900px, 0, 0);
  transform: translate3d(-900px, 0, 0);
}
@media (min-width: 650px) {
  .std-decorated-section-02 .std-decorated-section__decoration-container {
    -webkit-transform: translate3d(-850px, 0, 0);
    -moz-transform: translate3d(-850px, 0, 0);
    transform: translate3d(-850px, 0, 0);
  }
}
@media (min-width: 768px) {
  .std-decorated-section-02 .std-decorated-section__decoration-container {
    -webkit-transform: translate3d(-650px, 0, 0);
    -moz-transform: translate3d(-650px, 0, 0);
    transform: translate3d(-650px, 0, 0);
  }
}
@media (min-width: 992px) {
  .std-decorated-section-02 .std-decorated-section__decoration-container {
    width: 1700px;
    -webkit-transform: translate3d(-750px, 0, 0);
    -moz-transform: translate3d(-750px, 0, 0);
    transform: translate3d(-750px, 0, 0);
  }
}
@media (min-width: 1300px) {
  .std-decorated-section-02 .std-decorated-section__decoration-container {
    width: 2800px;
    -webkit-transform: translate3d(-1400px, 0, 0);
    -moz-transform: translate3d(-1400px, 0, 0);
    transform: translate3d(-1400px, 0, 0);
  }
}
@media (min-width: 1700px) {
  .std-decorated-section-02 .std-decorated-section__decoration-container {
    width: 3700px;
    -webkit-transform: translate3d(-1870px, 0, 0);
    -moz-transform: translate3d(-1870px, 0, 0);
    transform: translate3d(-1870px, 0, 0);
  }
}
.std-decorated-section-02 .std-decorated-section__decoration {
  background-image: url("../img/decorations/decoration-top-crown-and-head.svg");
  background-size: 100% auto;
  background-position: top center;
  padding: 0 0 300% 0;
}

.std-decorated-section-03 {
  padding: 80px 0 0 0;
}
@media (min-width: 480px) {
  .std-decorated-section-03 {
    padding: 100px 0 40px 0;
  }
}
@media (min-width: 768px) {
  .std-decorated-section-03 {
    padding: 140px 0 80px 0;
  }
}
.std-decorated-section-03 .std-decorated-section__decoration-container {
  display: none;
}
@media (min-width: 992px) {
  .std-decorated-section-03 .std-decorated-section__decoration-container {
    width: 50%;
    left: auto;
    right: -5%;
    height: 120%;
    top: 0;
    display: block;
  }
}
@media (min-width: 1300px) {
  .std-decorated-section-03 .std-decorated-section__decoration-container {
    width: 60%;
    height: 130%;
    margin: -20px 0 0 0;
  }
}
@media (min-width: 1700px) {
  .std-decorated-section-03 .std-decorated-section__decoration-container {
    right: -7%;
  }
}
.std-decorated-section-03 .std-decorated-section__decoration {
  background-repeat: no-repeat;
  background-image: url("../img/decorations/decoration-heads-from-north-to-south.svg");
  background-size: contain;
  background-position: center top;
  height: 100%;
}

@media (min-width: 768px) {
  .section-1001 {
    margin: -100px 0 0 0;
  }
}
@media (min-width: 1300px) {
  .section-1001 {
    margin: -180px 0 0 0;
  }
}
.section-1001 .wide-section__wrapper {
  position: relative;
  padding: 40px 0;
}
.section-1001 .wide-section__wrapper:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: #fff;
  -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);
}
@media (min-width: 768px) {
  .section-1001 .wide-section__layer {
    padding: 0 0 0 40px;
  }
}
@media (min-width: 1500px) {
  .section-1001 .wide-section__layer {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .section-1002 {
    padding: 20px 0 0 0;
  }
}
@media (min-width: 1700px) {
  .section-1002 {
    padding: 0;
  }
}
@media (min-width: 1700px) {
  .section-1002 .wide-section__wrapper {
    padding-top: 60px;
  }
}

.section-1010 {
  position: relative;
  z-index: 12;
}
@media (min-width: 420px) {
  .section-1010 {
    margin-top: -48px;
  }
}
@media (min-width: 650px) {
  .section-1010 {
    margin-top: -80px;
  }
}
@media (min-width: 768px) {
  .section-1010 {
    margin-top: -100px;
  }
}
@media (min-width: 992px) {
  .section-1010 {
    margin-top: -140px;
  }
}
@media (min-width: 1300px) {
  .section-1010 {
    margin-top: -164px;
  }
}

.section-1012 {
  z-index: 4;
  padding: 0 0 164px 0;
}
@media (min-width: 768px) {
  .section-1012 {
    padding-bottom: 64px;
  }
}
@media (min-width: 1700px) {
  .section-1012 {
    padding-bottom: 120px;
  }
}

@media (max-width: 767px) {
  .section-1013 .std-section__wrapper {
    padding-top: 240px;
  }
}

.section-1014 {
  background: #fff;
}
@media (min-width: 1300px) {
  .section-1014 {
    background: none;
  }
}

.section-1015 {
  background: #fff;
}
@media (min-width: 1300px) {
  .section-1015 {
    background: none;
  }
}

.section-1020 {
  margin-bottom: -80px;
  z-index: 500;
}
@media (min-width: 650px) {
  .section-1020 {
    margin-bottom: -100px;
  }
}
