@-webkit-keyframes arrowTurnUp {
  0% {
    -webkit-transform: rotate(0); }
  100% {
    -webkit-transform: rotate(180deg); } }
@keyframes arrowTurnUp {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(180deg); } }
@-webkit-keyframes arrowTurnDown {
  0% {
    -webkit-transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(0); } }
@keyframes arrowTurnDown {
  0% {
    transform: rotate(180deg); }
  100% {
    transform: rotate(0); } }
@-webkit-keyframes Tremble {
  0% {
    -webkit-transform: translate3d(0, -10%, 0); }
  50% {
    -webkit-transform: translate3d(0, 10%, 0); }
  100% {
    -webkit-transform: translate3d(0, -10%, 0); } }
@keyframes Tremble {
  0% {
    transform: translate3d(0, -10%, 0); }
  50% {
    transform: translate3d(0, 10%, 0); }
  100% {
    transform: translate3d(0, -10%, 0); } }
@-webkit-keyframes arrowTurnUp {
  0% {
    -webkit-transform: rotate(0); }
  100% {
    -webkit-transform: rotate(180deg); } }
@keyframes arrowTurnUp {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(180deg); } }
@-webkit-keyframes arrowTurnDown {
  0% {
    -webkit-transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(0); } }
@keyframes arrowTurnDown {
  0% {
    transform: rotate(180deg); }
  100% {
    transform: rotate(0); } }
@-webkit-keyframes Tremble {
  0% {
    -webkit-transform: translate3d(0, -10%, 0); }
  50% {
    -webkit-transform: translate3d(0, 10%, 0); }
  100% {
    -webkit-transform: translate3d(0, -10%, 0); } }
@keyframes Tremble {
  0% {
    transform: translate3d(0, -10%, 0); }
  50% {
    transform: translate3d(0, 10%, 0); }
  100% {
    transform: translate3d(0, -10%, 0); } }
* {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent; }

*:focus {
  outline: none; }

.hidden {
  opacity: 0; }

.visible {
  opacity: 1; }

html {
  font-family: "europa", Verdana, sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #000; }

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear; }
  a img {
    border: 0; }

img {
  display: inline-block;
  max-width: 100%; }

/***** TEXT *****/
.line {
  display: block; }

/***** LISTS *****/
ul {
  list-style-type: none; }

.dropdown {
  position: relative;
  display: block;
  max-width: 300px; }
  .dropdown .dropdown__header {
    padding: 10px 50px 10px 15px;
    border: 1px solid #444;
    position: relative;
    cursor: pointer; }
    .dropdown .dropdown__header .icon {
      position: absolute;
      top: 50%;
      right: 16px;
      margin: -4px 0 0 0;
      -webkit-animation-name: arrowTurnDown;
      -moz-animation-name: arrowTurnDown;
      animation-name: arrowTurnDown;
      -webkit-animation-duration: 0.2s;
      -moz-animation-duration: 0.2s;
      animation-duration: 0.2s; }
  .dropdown .dropdown__title {
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px; }
  .dropdown .dropdown__list {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 100%;
    font-size: 14px;
    padding: 15px 10px;
    background: #fafafa;
    border: 1px solid #c4c4c4;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10; }
    .dropdown .dropdown__list > li {
      display: block;
      padding: 5px 0; }
    .dropdown .dropdown__list a {
      display: block; }

.dropdown.dropdown--open .dropdown__header .icon {
  -webkit-animation-name: arrowTurnUp;
  -moz-animation-name: arrowTurnUp;
  animation-name: arrowTurnUp;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg); }

/***** CONTAINERS *****/
.wrapper {
  display: table;
  width: 100%;
  height: 100%; }
  .wrapper > div {
    display: table-cell;
    width: 100%;
    height: 100%;
    vertical-align: middle;
    text-align: center; }

.container {
  overflow: hidden;
  padding: 0;
  position: relative; }
  .container .column {
    float: left;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
  .container .col-9 {
    width: 75%; }
  .container .col-8 {
    width: 66.6666666667%; }
  .container .col-6 {
    width: 50%; }
  .container .col-4 {
    width: 33.3333333333%; }
  .container .col-3 {
    width: 25%; }
  .container .col-2 {
    width: 16.6666666667%; }
  .container .middle {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    margin: 0 0 0 -25%; }

.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; }

.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; }

/***** MODULES *****/
.bookmarks-manager {
  max-width: 900px;
  margin: 0 auto; }
  .bookmarks-manager .bookmarks-manager__bookmarks {
    text-align: center; }
    @media (min-width: 768px) {
      .bookmarks-manager .bookmarks-manager__bookmarks {
        padding: 0 0 20px 0; } }
  .bookmarks-manager .bookmarks-manager__bookmark-container {
    display: block; }
    @media (min-width: 768px) {
      .bookmarks-manager .bookmarks-manager__bookmark-container {
        display: inline-block; } }
  .bookmarks-manager .bookmarks-manager__bookmark {
    cursor: pointer;
    padding: 20px; }
    @media (min-width: 1300px) {
      .bookmarks-manager .bookmarks-manager__bookmark {
        padding-left: 40px;
        padding-right: 40px; } }
  .bookmarks-manager .bookmarks-manager__bookmark-container .bookmarks-manager__bookmark-content {
    display: none; }
  .bookmarks-manager .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) {
      .bookmarks-manager .bookmarks-manager__content-container {
        display: block; } }
  .bookmarks-manager .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; }

.simple-bookmark {
  font-weight: 700; }
  .simple-bookmark .simple-bookmark__number {
    font-size: 18px;
    font-weight: 700;
    padding: 0 0 5px 0; }

.simple-bookmark.active {
  color: #419d34; }

.details-list {
  list-style-type: none;
  max-width: 700px;
  margin: 0 auto; }
  .details-list .details-list__item {
    display: block; }
  .details-list .details-list__title {
    position: relative;
    padding: 10px 0;
    cursor: pointer;
    font-weight: 700;
    border-bottom: 1px solid #b21e28; }
    .details-list .details-list__title .details-list__arrow {
      position: absolute;
      top: 13px;
      right: 5px; }
  .details-list .details-list__content {
    padding: 10px 20px; }

.categorized-items__categories {
  text-align: center;
  list-style-type: none;
  padding: 0 0 40px 0; }
  .categorized-items__categories > li {
    display: block;
    padding: 10px 0;
    cursor: pointer; }
    @media (min-width: 480px) {
      .categorized-items__categories > li {
        display: inline-block;
        padding: 0 20px; } }
    .categorized-items__categories > li.active {
      color: #b21e28;
      font-weight: 700; }
.categorized-items__item {
  display: block; }
.categorized-items__no-items {
  float: none;
  display: block;
  padding: 20px;
  text-align: center; }
.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; }

/***** FORMS *****/
.form {
  width: auto;
  margin: 0 auto;
  padding: 0; }
  .form fieldset {
    border: 0; }
  .form .form__field-container {
    display: block;
    margin: 0 auto;
    padding: 10px 0; }
  .form .form__field {
    display: block;
    letter-spacing: 1px;
    padding: 10px 15px;
    width: 100%;
    margin: 0;
    -webkit-appearance: none;
    border: 1px solid #222;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-family: "europa", Verdana, sans-serif;
    -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; }
  .form .form__field:focus {
    border-color: #000; }
  .form .form__field::-webkit-input-placeholder {
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1; }
  .form .form__field:-moz-placeholder {
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1; }
  .form .form__field::-moz-placeholder {
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1; }
  .form .form__field:-ms-input-placeholder {
    color: #000;
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 1; }
  .form .dropdown__title {
    font-weight: 400; }
  .form .dropdown {
    max-width: 100%; }
  .form .button-container {
    padding: 30px 0 0 0;
    text-align: center; }

.choice-field {
  cursor: pointer; }
  .choice-field input {
    display: none; }
  .choice-field .choice-field__inner {
    margin: 10px 15px;
    position: relative;
    padding: 0 0 0 30px; }
    .choice-field .choice-field__inner .choice-field__field-container {
      border: 1px solid #000;
      position: absolute;
      top: 0;
      left: 0; }
    .choice-field .choice-field__inner .choice-field__field {
      width: 15px;
      height: 15px; }
  .choice-field input[type="checkbox"]:checked + .choice-field__inner .choice-field__field,
  .choice-field input[type="radio"]:checked + .choice-field__inner .choice-field__field {
    background: #222; }

.choice-field--radio .choice-field__field-container {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }
.choice-field--radio .choice-field__field {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%; }

/***** MENU *****/
.slide-menu {
  position: fixed;
  z-index: 4000;
  height: 100%;
  display: block;
  text-align: center;
  width: 100%;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto; }
  @media (min-width: 1300px) {
    .slide-menu {
      position: static;
      background: none;
      top: auto;
      left: auto;
      right: auto;
      bottom: auto;
      height: auto; } }
  .slide-menu .logo-container {
    padding: 0 0 40px 0; }
    @media (min-width: 650px) {
      .slide-menu .logo-container {
        padding-bottom: 80px; } }
    @media (min-width: 1300px) {
      .slide-menu .logo-container {
        display: none; } }
  .slide-menu .slide-menu__inner {
    padding: 30px 20px; }
    @media (min-width: 1300px) {
      .slide-menu .slide-menu__inner {
        padding: 0;
        opacity: 1;
        max-width: 1300px;
        margin: 0 auto; } }

/** fade **/
.slide-menu--fade {
  display: none; }

.slide-menu--fade.slide-menu--top {
  top: 0;
  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: -100%;
  left: 0;
  right: auto;
  bottom: auto; }
  @media (min-width: 1300px) {
    .slide-menu--slide.slide-menu--top {
      top: auto;
      left: auto;
      right: auto;
      bottom: auto; } }

.slide-menu--slide.slide-menu--top.slide-menu--open {
  top: 0; }

.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.3s linear 0.4s;
  -moz-transition: all 0.3s linear 0.4s;
  -o-transition: all 0.3s linear 0.4s;
  transition: all 0.3s linear 0.4s; }
  .slide-menu--slide-fade .slide-menu__inner {
    opacity: 0;
    -webkit-transition: opacity 0.3s linear 0;
    -moz-transition: opacity 0.3s linear 0;
    -o-transition: opacity 0.3s linear 0;
    transition: opacity 0.3s linear 0; }

.slide-menu--slide-fade.slide-menu--open {
  -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-fade.slide-menu--open .slide-menu__inner {
    opacity: 1;
    -webkit-transition: opacity 0.3s linear 0.4s;
    -moz-transition: opacity 0.3s linear 0.4s;
    -o-transition: opacity 0.3s linear 0.4s;
    transition: opacity 0.3s linear 0.4s; }

.slide-menu--slide-fade.slide-menu--top {
  top: -100%;
  left: 0;
  right: auto;
  bottom: auto; }

.slide-menu--slide-fade.slide-menu--top.slide-menu--open {
  top: 0; }

.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; }

/** menu toggler **/
#main-menu-toggler {
  position: fixed;
  z-index: 6500;
  top: 30px;
  right: 30px;
  cursor: pointer; }
  @media (min-width: 1300px) {
    #main-menu-toggler {
      display: none; } }

.menu li {
  display: block;
  padding: 5px 0; }

/***** SECTIONS *****/
.overlayer-content {
  display: none !important; }

.overlayer {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 7000;
  background: rgba(0, 0, 0, 0.8);
  color: #000;
  overflow-y: auto;
  padding: 0; }
  .overlayer .overlayer__spinner-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6900;
    display: none;
    font-size: 32px; }
  .overlayer .overlayer__inner {
    margin: 40px auto;
    max-width: 1360px;
    position: relative;
    padding: 80px 60px;
    background: #978b82; }
  .overlayer .overlayer__close {
    position: absolute;
    top: 30px;
    right: 30px;
    -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; }

.page-loading-layer {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 9999; }

/***** ICONS *****/
/* icon hamburger */
.icon-hamburger {
  display: block;
  width: 27px;
  height: 17px;
  position: relative; }
  .icon-hamburger > div {
    position: absolute;
    left: 0;
    height: 3px;
    background: #978b82;
    width: 100%;
    -webkit-border-radius: 1.5px;
    -moz-border-radius: 1.5px;
    border-radius: 1.5px;
    -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 > div:nth-child(1) {
    top: 0; }
  .icon-hamburger > div:nth-child(2) {
    top: 7px; }
  .icon-hamburger > div:nth-child(3) {
    top: 14px; }

.icon-hamburger.open > div {
  background: #b21e28; }
.icon-hamburger.open > div:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  transform: rotate(135deg); }
.icon-hamburger.open > div:nth-child(2) {
  opacity: 0;
  left: -100%; }
.icon-hamburger.open > div:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  transform: rotate(-135deg); }

.icon-hamburger--medium > div {
  background: #b21e28; }

.icon-hamburger--light > div {
  background: #fff; }

.icon-hamburger--large {
  width: 32px;
  height: 20px; }
  .icon-hamburger--large > div {
    height: 4px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px; }
  .icon-hamburger--large > div:nth-child(1) {
    top: 0; }
  .icon-hamburger--large > div:nth-child(2) {
    top: 8px; }
  .icon-hamburger--large > div:nth-child(3) {
    top: 16px; }

.icon-hamburger--small {
  width: 20px;
  height: 12px; }
  .icon-hamburger--small > div {
    height: 2px;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px; }
  .icon-hamburger--small > div:nth-child(1) {
    top: 0; }
  .icon-hamburger--small > div:nth-child(2) {
    top: 5px; }
  .icon-hamburger--small > div:nth-child(3) {
    top: 10px; }

/* icon cross */
.icon-cross {
  width: 21px;
  height: 21px;
  position: relative;
  overflow: hidden; }
  .icon-cross > div {
    position: absolute;
    background: #000;
    display: block; }
  .icon-cross > div:nth-child(1) {
    width: 100%;
    left: 0;
    top: 50%;
    height: 3px;
    margin: -1.5px 0 0 0; }
  .icon-cross > div:nth-child(2) {
    width: 3px;
    top: 0;
    left: 50%;
    margin: 0 0 0 -1.5px;
    height: 100%; }

.icon-cross--large {
  width: 26px;
  height: 26px; }
  .icon-cross--large > div:nth-child(1) {
    height: 4px;
    margin: -2px 0 0 0; }
  .icon-cross--large > div:nth-child(2) {
    width: 4px;
    margin: 0 0 0 -2px; }

.icon-cross--small {
  width: 16px;
  height: 16px; }
  .icon-cross--small > div:nth-child(1) {
    height: 2px;
    margin: -1px 0 0 0; }
  .icon-cross--small > div:nth-child(2) {
    width: 2px;
    margin: 0 0 0 -1px; }

.icon-cross--light > div {
  background: #fff; }

.icon-cross--rotated {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg); }

.icon-dash {
  width: 21px;
  height: 3px;
  position: relative;
  overflow: hidden;
  background: #000; }

.icon-dash--light {
  background: #fff; }

/* icon arrow */
.icon-arrow {
  position: relative;
  width: 14px;
  height: 14px;
  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: 10px;
  height: 10px;
  border-width: 2px; }
  @media (min-width: 768px) {
    .icon-arrow--small {
      width: 14px;
      height: 14px;
      border-width: 3px; } }

.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--light {
  border-color: #fff; }

.icon-arrow--medium {
  border-color: #b21e28; }

/* 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-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-right {
  border-left: 12px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-right--small {
  border-left-width: 10px;
  border-top-width: 6px;
  border-bottom-width: 6px; }

.icon-triangular-arrow-right--large {
  border-left-width: 14px;
  border-top-width: 8px;
  border-bottom-width: 8px; }

.icon-triangular-arrow-down {
  border-top: 12px solid #000;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  width: 0; }

.icon-triangular-arrow-down--small {
  border-top-width: 10px;
  border-right-width: 6px;
  border-left-width: 6px; }

.icon-triangular-arrow-down--large {
  border-top-width: 14px;
  border-right-width: 8px;
  border-left-width: 8px; }

/***** BUTTONS ******/
.button-container {
  text-align: center;
  clear: both;
  padding: 0 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.more-content-button {
  display: none; }
  .more-content-button .simple-button__icon-top {
    opacity: 0; }

.icon-container {
  display: inline-block;
  position: relative; }

.icon-container--plain {
  border: 2px solid #fff;
  width: 30px;
  height: 30px; }
  .icon-container--plain .icon-arrow {
    margin: 0 auto;
    position: relative;
    top: 5px; }

/** rwd1800 **/
/** rwd1600 **/
/** rwd1400 **/
/** rwd1200 **/
/** rwd992 */
/** rwd850 **/
/** rwd768px **/
/** rwd650 **/
/** rwd600 **/
/** rwd500 **/
/** rwd420 **/
/** rwd380 **/
/***** TEXT *****/
.text {
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  color: #978b82; }
  @media (min-width: 650px) {
    .text {
      font-size: 16px;
      line-height: 28px;
      letter-spacing: 2px;
      max-width: 500px;
      margin: 0 auto; } }
  .text strong {
    color: #b21e28;
    font-weight: 700; }
  .text p {
    padding: 10px 0; }
    @media (min-width: 1300px) {
      .text p {
        padding: 20px 0; } }
  .text .line {
    display: inline; }

.text--distinguished {
  font-weight: 700; }

.text--decorated {
  position: relative;
  padding: 0 0 60px 0; }
  @media (min-width: 650px) {
    .text--decorated {
      padding-bottom: 100px; } }
  .text--decorated:before {
    content: '';
    display: block;
    width: 80px;
    height: 1px;
    background: #b21e28;
    position: absolute;
    bottom: 30px;
    left: 50%;
    margin: 0 0 0 -40px; }
    @media (min-width: 650px) {
      .text--decorated:before {
        bottom: 50px;
        width: 100px;
        margin: 0 0 0 -50px; } }

.text--large {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 2px; }
  @media (min-width: 550px) {
    .text--large {
      font-size: 30px; } }
  @media (min-width: 768px) {
    .text--large {
      font-size: 36px; } }
  @media (min-width: 1500px) {
    .text--large {
      font-size: 42px; } }

.distinguished {
  color: #b21e28;
  font-weight: 700; }

.distinguished-02 {
  text-transform: uppercase; }

.address {
  display: block;
  font-style: normal;
  font-size: 14px; }
  .address__distinguished-item {
    text-transform: uppercase; }

/***** HEADERS *****/
.site-header {
  position: relative; }
  .site-header__layer {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 30px; }

.site-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  -webkit-box-shadow: 0px 2px 4px 0px rgba(151, 139, 130, 0.2);
  -moz-box-shadow: 0px 2px 4px 0px rgba(151, 139, 130, 0.2);
  box-shadow: 0px 2px 4px 0px rgba(151, 139, 130, 0.2);
  z-index: 3000;
  /**.bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  @include box-sizing(border-box);
  background: $light-color;
  border-bottom: 1px solid $light-color-01;
  z-index: 3000;
  }**/ }
  .site-header--fixed .bar {
    padding: 0; }
    @media (min-width: 1300px) {
      .site-header--fixed .bar {
        position: absolute;
        top: 0;
        left: 0; } }
    .site-header--fixed .bar .site-logo {
      margin: 0;
      width: 88px;
      height: 44px; }
      @media (min-width: 1300px) {
        .site-header--fixed .bar .site-logo {
          width: 100px;
          height: 50px; } }
  .site-header--fixed .label {
    top: 0;
    right: 0; }
  @media (min-width: 1300px) {
    .site-header--fixed .menu {
      padding: 18px 0 15px 0;
      font-size: 14px; } }
  @media (min-width: 1300px) {
    .site-header--fixed .menu > ul {
      border: 0;
      padding: 0; } }
  @media (min-width: 1300px) {
    .site-header--fixed .menu > ul > li {
      padding: 0 15px; } }

.label {
  display: inline-block;
  background: #978b82;
  padding: 10px 20px; }
  @media (min-width: 1300px) {
    .label {
      display: block;
      position: absolute;
      top: 40px;
      right: 40px; } }
  @media (min-width: 1700px) {
    .label {
      top: 60px;
      right: 0; } }
  .label__icon-container {
    display: inline-block;
    vertical-align: middle;
    padding: 0 10px 0 0; }
  .label__icon {
    display: block;
    width: 31px;
    height: 28px; }
  .label__inner {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    letter-spacing: 1px;
    font-size: 14px; }

.bar {
  padding: 30px 0 0 0; }
  @media (min-width: 992px) {
    .bar {
      padding-top: 40px; } }
  @media (min-width: 1300px) {
    .bar {
      padding-bottom: 50px; } }
  @media (min-width: 1700px) {
    .bar {
      padding-top: 60px; } }

.site-logo {
  display: block;
  text-align: left;
  text-indent: -10000px;
  overflow: hidden;
  background: url("../img/logo-medium.svg") no-repeat top left;
  background-size: 100% auto;
  width: 120px;
  height: 60px;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .site-logo {
      width: 150px;
      height: 76px; } }
  @media (min-width: 1700px) {
    .site-logo {
      width: 170px;
      height: 86px; } }

.site-logo--light {
  background-image: url("../img/logo-light.svg"); }

.section-header {
  padding: 0 0 20px 0;
  text-align: center; }
  @media (min-width: 1300px) {
    .section-header {
      padding-bottom: 50px; } }

.section-title {
  font-size: 24px;
  font-weight: 300;
  color: #b21e28;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 0 0 0;
  max-width: 700px;
  margin: 0 auto; }
  @media (min-width: 550px) {
    .section-title {
      font-size: 28px; } }
  @media (min-width: 850px) {
    .section-title {
      font-size: 32px; } }
  @media (min-width: 1100px) {
    .section-title {
      font-size: 36px; } }
  @media (min-width: 1300px) {
    .section-title {
      font-size: 40px; } }
  .section-title:first-child {
    padding: 0; }

.section-title--light {
  color: #fff; }

.section-title--nearly-light {
  color: #978b82; }

.spectacular-title {
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
  font-size: 32px; }
  @media (min-width: 480px) {
    .spectacular-title {
      font-size: 44px;
      letter-spacing: 3px; } }
  @media (min-width: 768px) {
    .spectacular-title {
      font-size: 50px; } }
  @media (min-width: 1300px) {
    .spectacular-title {
      font-size: 56px; } }
  @media (min-width: 1500px) {
    .spectacular-title {
      font-size: 62px; } }
  @media (min-width: 1700px) {
    .spectacular-title {
      font-size: 70px; } }

.section-subtitle {
  text-align: center;
  font-weight: 400;
  color: #b21e28;
  font-size: 18px;
  padding: 20px 0 0 0; }
  @media (min-width: 650px) {
    .section-subtitle {
      font-size: 20px; } }
  @media (min-width: 768px) {
    .section-subtitle {
      font-size: 22px; } }
  @media (min-width: 1300px) {
    .section-subtitle {
      font-size: 26px; } }
  @media (min-width: 1500px) {
    .section-subtitle {
      font-size: 28px; } }
  @media (min-width: 1700px) {
    .section-subtitle {
      font-size: 30px; } }

/***** CONTAINERS *****/
.downwards-container {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%; }
  @media (min-width: 768px) {
    .downwards-container {
      bottom: 40px; } }
  @media (min-width: 1500px) {
    .downwards-container {
      bottom: 60px; } }

.single-video {
  max-width: 900px;
  margin: 0 auto; }

.video {
  position: relative;
  padding-bottom: 50%;
  height: 0;
  margin: 0 auto; }
  .video iframe {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }

/***** MENU *****/
.menu {
  font-size: 14px;
  padding: 0 0 20px 0; }
  @media (min-width: 650px) {
    .menu {
      font-size: 16px; } }
  @media (min-width: 1300px) {
    .menu {
      padding: 0; } }
  @media (min-width: 1300px) {
    .menu > ul {
      display: inline-block;
      border-bottom: 1px solid #978b82;
      padding: 0 0 30px 0; } }
  .menu > ul > li {
    display: block;
    text-transform: uppercase;
    padding: 10px 0;
    letter-spacing: 2px; }
    @media (min-width: 650px) {
      .menu > ul > li {
        padding: 15px 0; } }
    @media (min-width: 1300px) {
      .menu > ul > li {
        display: inline-block;
        padding: 0 20px;
        vertical-align: middle; } }
  .menu a {
    color: #978b82;
    display: inline-block;
    padding: 0 15px;
    position: relative; }
    .menu a:before {
      content: '';
      display: block;
      position: absolute;
      top: -100%;
      left: 0;
      width: 5px;
      height: 100%;
      background: #b21e28;
      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; }
    .menu a:after {
      content: '';
      display: block;
      position: absolute;
      top: -100%;
      right: 0;
      width: 5px;
      height: 100%;
      background: #b21e28;
      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; }
    .menu a:hover {
      color: #b21e28;
      font-weight: 700; }
      @media (min-width: 1300px) {
        .menu a:hover {
          font-weight: 400; } }
      .menu a:hover:before {
        top: 0;
        opacity: 1; }
      .menu a:hover:after {
        top: 0;
        opacity: 1; }

/***** FOOTERS *****/
.site-footer {
  background: #b21e28;
  color: #fff;
  text-align: center;
  letter-spacing: 1px; }
  @media (min-width: 1300px) {
    .site-footer {
      letter-spacing: 2px; } }
  @media (min-width: 1700px) {
    .site-footer {
      font-size: 16px; } }
  .site-footer a {
    color: #fff; }
  .site-footer__layer {
    padding: 30px 0; }
    @media (min-width: 768px) {
      .site-footer__layer {
        padding: 60px 0; } }
    @media (min-width: 1300px) {
      .site-footer__layer {
        padding: 80px 0; } }
    @media (min-width: 1700px) {
      .site-footer__layer {
        padding: 100px 0; } }
  .site-footer .column {
    float: none;
    width: auto; }
    .site-footer .column:nth-child(2) {
      padding: 30px 0; }
      @media (min-width: 480px) {
        .site-footer .column:nth-child(2) {
          padding: 50px 0; } }
      @media (min-width: 768px) {
        .site-footer .column:nth-child(2) {
          padding: 0; } }
  @media (min-width: 768px) {
    .site-footer .col-6 {
      float: left;
      width: 60%; } }
  @media (min-width: 768px) {
    .site-footer .col-3 {
      float: left;
      width: 20%; } }
  .site-footer .address {
    padding: 0 0 10px 0; }
    @media (min-width: 1300px) {
      .site-footer .address {
        padding-bottom: 15px; } }

/***** LISTS *****/
.plain-list {
  list-style-type: none; }
  .plain-list > li {
    display: block; }
    .plain-list > li:before {
      content: '-';
      padding: 0 10px 0 0; }

.horizontal-list > li {
  display: block;
  padding: 5px 0; }
  @media (min-width: 1300px) {
    .horizontal-list > li {
      display: inline-block;
      vertical-align: middle;
      margin: 0 0 0 -5px;
      padding: 0 20px;
      border-left: 1px solid #fff; } }
.horizontal-list > li:first-child {
  padding-left: 0;
  border-left: 0; }
.horizontal-list > li:last-child {
  padding-right: 0; }

.icons {
  text-align: center;
  padding: 0;
  margin: 0 auto;
  list-style-type: none; }
  @media (min-width: 768px) {
    .icons {
      max-width: 800px; } }
  @media (min-width: 1100px) {
    .icons {
      max-width: 1000px; } }
  @media (min-width: 1500px) {
    .icons {
      max-width: 1200px; } }
  @media (min-width: 1700px) {
    .icons {
      max-width: 1350px; } }
  .icons > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: 30px 0; }
    @media (min-width: 550px) {
      .icons > li {
        display: inline-block;
        width: 50%;
        padding: 30px 20px;
        margin: 0 0 0 -5px;
        vertical-align: middle; } }
    @media (min-width: 768px) {
      .icons > li {
        width: 33.33%; } }
    @media (min-width: 1100px) {
      .icons > li {
        width: 25%;
        vertical-align: top; } }
    @media (min-width: 1500px) {
      .icons > li {
        padding: 40px 20px; } }
  .icons .icons__icon-container {
    margin: 0 auto 10px auto; }
    @media (min-width: 1100px) {
      .icons .icons__icon-container {
        margin-bottom: 15px; } }
    @media (min-width: 1700px) {
      .icons .icons__icon-container {
        margin-bottom: 20px; } }
  .icons .icons__icon {
    margin: 0 auto;
    width: 60px;
    height: 60px; }
    @media (min-width: 1100px) {
      .icons .icons__icon {
        width: 80px;
        height: 80px; } }
    @media (min-width: 1700px) {
      .icons .icons__icon {
        width: 100px;
        height: 100px; } }
  .icons .icons__icon-description {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    max-width: 260px;
    margin: 0 auto; }
    @media (min-width: 1500px) {
      .icons .icons__icon-description {
        font-size: 15px;
        line-height: 23px; } }
    @media (min-width: 1700px) {
      .icons .icons__icon-description {
        font-size: 16px;
        line-height: 24px; } }

.icons-02 {
  text-align: center;
  padding: 0;
  margin: 0 auto;
  list-style-type: none;
  color: #978b82; }
  @media (min-width: 768px) {
    .icons-02 {
      max-width: 800px; } }
  @media (min-width: 1300px) {
    .icons-02 {
      max-width: 1000px; } }
  @media (min-width: 1500px) {
    .icons-02 {
      max-width: 1000px; } }
  .icons-02 a {
    color: #978b82; }
    .icons-02 a:hover, .icons-02 a:focus {
      color: #b21e28; }
  .icons-02 > li {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    padding: 20px 0; }
    @media (min-width: 768px) {
      .icons-02 > li {
        display: inline-block;
        padding: 30px 20px;
        margin: 0 0 0 -5px;
        vertical-align: top;
        width: 33.33%; } }
    @media (min-width: 1500px) {
      .icons-02 > li {
        padding: 40px 20px; } }
  .icons-02__icon-container {
    margin: 0 auto 15px auto; }
    @media (min-width: 1300px) {
      .icons-02__icon-container {
        margin-bottom: 20px; } }
  .icons-02__icon {
    margin: 0 auto;
    width: 50px;
    height: 50px; }
    @media (min-width: 1300px) {
      .icons-02__icon {
        width: 60px;
        height: 60px; } }
  .icons-02__icon-description {
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 1px;
    max-width: 260px;
    margin: 0 auto; }
    @media (min-width: 650px) {
      .icons-02__icon-description {
        font-size: 16px;
        line-height: 24px; } }
    @media (min-width: 1300px) {
      .icons-02__icon-description {
        letter-spacing: 2px; } }
    .icons-02__icon-description .line {
      padding: 4px 0 0 0; }

.icons-03 {
  text-align: center;
  padding: 0;
  margin: 0 auto;
  list-style-type: none;
  color: #978b82;
  max-width: 600px; }
  @media (min-width: 850px) {
    .icons-03 {
      max-width: 800px; } }
  @media (min-width: 1100px) {
    .icons-03 {
      max-width: 1000px; } }
  .icons-03 > li {
    display: block;
    padding: 30px 0; }
    @media (min-width: 550px) {
      .icons-03 > li {
        display: inline-block;
        padding: 30px 20px;
        margin: 0 0 0 -5px;
        vertical-align: top;
        width: 50%;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box; } }
    @media (min-width: 650px) {
      .icons-03 > li {
        padding: 40px 20px; } }
    @media (min-width: 850px) {
      .icons-03 > li {
        width: 33.33%; } }
  .icons-03__icon-container {
    margin: 0 auto 15px auto; }
    @media (min-width: 480px) {
      .icons-03__icon-container {
        margin-bottom: 20px; } }
  .icons-03__icon {
    margin: 0 auto;
    width: 60px;
    height: 60px; }
    @media (min-width: 1100px) {
      .icons-03__icon {
        width: 80px;
        height: 80px; } }
  .icons-03__icon-description {
    font-size: 14px;
    line-height: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    max-width: 260px;
    margin: 0 auto; }
    @media (min-width: 1100px) {
      .icons-03__icon-description {
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 2px; } }

/***** MODULES *****/
.gallery > ul {
  list-style-type: none; }
  .gallery > ul:after {
    content: '';
    display: block;
    clear: both; }
  .gallery > ul > li {
    display: block; }
    @media (min-width: 480px) {
      .gallery > ul > li {
        float: left;
        width: 50%; } }
    @media (min-width: 992px) {
      .gallery > ul > li {
        float: left;
        width: 25%; } }
    .gallery > ul > li a {
      display: block;
      width: 100%;
      padding: 0 0 67.5% 0;
      height: 0;
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      position: relative;
      overflow: hidden; }
      .gallery > ul > li a:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        z-index: 10;
        background: rgba(0, 0, 0, 0.2);
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out; }
      .gallery > ul > li a:hover:after, .gallery > ul > li a:focus:after {
        opacity: 1; }
    .gallery > ul > li img {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      min-width: 100%;
      min-height: 100%; }
.gallery .button-container {
  padding: 30px 0; }
  @media (min-width: 550px) {
    .gallery .button-container {
      padding: 50px 0; } }
  @media (min-width: 768px) {
    .gallery .button-container {
      padding: 80px 0; } }

.table {
  color: #978b82;
  max-width: 980px;
  margin: 0 auto; }
  .table__header-row {
    display: none; }
    @media (min-width: 650px) {
      .table__header-row {
        font-size: 16px;
        color: #978b82;
        display: block;
        font-weight: 700;
        border-bottom: 1px solid #b21e28;
        padding: 0 5px 15px 5px; } }
    @media (min-width: 1300px) {
      .table__header-row {
        padding-bottom: 20px; } }
    .table__header-row:after {
      content: '';
      display: block;
      clear: both; }
  .table__mobile-header {
    font-size: 16px;
    color: #978b82;
    border-bottom: 1px solid #b21e28;
    padding: 0 0 15px 0;
    text-align: center;
    font-weight: 700;
    max-width: 400px;
    margin: 0 auto; }
    @media (min-width: 650px) {
      .table__mobile-header {
        display: none; } }
  .table__row {
    display: block;
    padding: 20px 0 21px 0;
    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: 550px) {
      .table__row {
        font-size: 16px; } }
    @media (min-width: 650px) {
      .table__row {
        padding: 5px; } }
    .table__row:before {
      content: '';
      display: block;
      width: 100px;
      height: 1px;
      background: #978b82;
      position: absolute;
      left: 50%;
      bottom: 0;
      margin: 0 0 0 -50px; }
      @media (min-width: 650px) {
        .table__row:before {
          display: none; } }
    .table__row:after {
      content: '';
      display: block;
      clear: both; }
    @media (min-width: 650px) {
      .table__row:hover {
        background: #f5f5f5; } }
  @media (min-width: 650px) {
    .table__content {
      padding: 15px 0 0 0; } }
  @media (min-width: 1300px) {
    .table__content {
      padding-top: 20px; } }
  .table__cell {
    display: block;
    text-align: center;
    padding: 5px 0; }
    @media (min-width: 650px) {
      .table__cell {
        float: left;
        width: 35%;
        text-align: left; } }
    @media (min-width: 1100px) {
      .table__cell {
        width: 40%; } }
    @media (min-width: 650px) {
      .table__cell:last-child {
        width: 30%; } }
    @media (min-width: 1100px) {
      .table__cell:last-child {
        width: 20%; } }
  .table__cell--distinguished {
    color: #b21e28;
    font-weight: 700; }
  .table__cell--mobile {
    display: block; }
    @media (min-width: 650px) {
      .table__cell--mobile {
        display: none; } }
  .table__cell--desktop {
    display: none; }
    @media (min-width: 650px) {
      .table__cell--desktop {
        display: block; } }

.google-map-container {
  overflow: hidden;
  position: relative;
  height: 300px; }
  @media (min-width: 650px) {
    .google-map-container {
      height: 500px; } }
  @media (min-width: 1300px) {
    .google-map-container {
      height: 600px; } }
  @media (min-width: 1700px) {
    .google-map-container {
      height: 700px; } }
  .google-map-container .map-controls {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 5; }
    @media (min-width: 650px) {
      .google-map-container .map-controls {
        right: 30px;
        top: 30px; } }
    @media (min-width: 1300px) {
      .google-map-container .map-controls {
        right: 60px;
        top: 60px; } }
    @media (min-width: 1700px) {
      .google-map-container .map-controls {
        right: 100px;
        top: 100px; } }

.google-map {
  width: 100%;
  height: 110%;
  position: absolute;
  top: 0;
  left: 0; }

.map-controls {
  display: block;
  cursor: pointer; }
  .map-controls__item {
    display: block;
    padding: 5px 0 0 0; }
    .map-controls__item:first-child {
      padding: 0; }

.map-control {
  background: #978b82;
  width: 37px;
  height: 37px; }
  .map-control .icon-cross {
    margin: 0 auto; }
  .map-control .icon-dash {
    margin: 0 auto; }

/***** SECTIONS *****/
.site-wrapper {
  overflow: hidden; }

.site-content {
  margin: 0 auto; }
  @media (min-width: 480px) {
    .site-content {
      padding: 20px 0 0 0; } }
  @media (min-width: 650px) {
    .site-content {
      padding-top: 40px; } }

.site-section__layer {
  padding: 40px 0; }
  @media (min-width: 850px) {
    .site-section__layer {
      padding: 60px 0; } }
  @media (min-width: 1500px) {
    .site-section__layer {
      padding: 60px 0 90px 0; } }
  @media (min-width: 1700px) {
    .site-section__layer {
      padding: 90px 0 120px 0; } }
.site-section__inner {
  padding: 0 20px; }
  @media (min-width: 550px) {
    .site-section__inner {
      padding: 0 40px; } }

.site-section--dark {
  color: #fff; }

.site-section--medium {
  background: #b21e28;
  color: #fff; }
  .site-section--medium .section-title {
    color: #fff; }
  .site-section--medium .text {
    color: #fff; }

.site-section--image-background .site-section__layer {
  background: rgba(0, 0, 0, 0.4); }
  @media (min-width: 550px) {
    .site-section--image-background .site-section__layer {
      padding: 60px 0; } }
  @media (min-width: 1100px) {
    .site-section--image-background .site-section__layer {
      padding: 80px 0; } }
  @media (min-width: 1500px) {
    .site-section--image-background .site-section__layer {
      padding: 100px 0; } }

.photo-section img {
  display: block;
  width: 100%; }

.line-separated-sections__item {
  position: relative;
  padding: 50px 0; }
  @media (min-width: 1100px) {
    .line-separated-sections__item {
      padding: 70px 0; } }
  .line-separated-sections__item:before {
    content: '';
    display: block;
    width: 116px;
    height: 1px;
    background: #b21e28;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0 0 0 -58px; }
  .line-separated-sections__item:first-child {
    padding-top: 0; }
    .line-separated-sections__item:first-child:before {
      display: none; }

.section-01 {
  color: #fff;
  padding: 70px 0;
  position: relative;
  background: url("../img/bg-00-mobile.jpg") no-repeat top center;
  background-size: cover;
  text-align: center; }
  @media (min-width: 480px) {
    .section-01 {
      padding: 120px 0; } }
  @media (min-width: 1300px) {
    .section-01 {
      background-image: url("../img/bg-00.jpg"); } }

/**.section-01.constant-height {
padding: 0 !important;
}**/
.section-03 {
  padding: 0 0 30px 0; }
  @media (min-width: 550px) {
    .section-03 {
      padding-bottom: 50px; } }
  @media (min-width: 1300px) {
    .section-03 {
      padding-bottom: 100px; } }
  .section-03 .text strong {
    display: block; }
  @media (min-width: 1300px) {
    .section-03 .text-00 {
      padding-top: 20px; } }
  .section-03 .text-01 {
    padding: 0 0 20px 0; }
    @media (min-width: 650px) {
      .section-03 .text-01 {
        padding-bottom: 60px; } }
    @media (min-width: 1300px) {
      .section-03 .text-01 {
        padding-bottom: 100px; } }
  .section-03 .table {
    padding: 40px 0; }
    @media (min-width: 650px) {
      .section-03 .table {
        padding: 80px 0; } }
    @media (min-width: 1500px) {
      .section-03 .table {
        padding: 120px 0 100px 0; } }

.section-05 .text-01 p {
  padding-bottom: 0; }
.section-05 .text-01 .plain-list {
  padding-bottom: 10px; }
  @media (min-width: 1300px) {
    .section-05 .text-01 .plain-list {
      padding-bottom: 20px; } }
.section-05 .text-03 .plain-list {
  padding: 10px 0; }
  @media (min-width: 1300px) {
    .section-05 .text-03 .plain-list {
      padding: 20px 0; } }
.section-05 .text-04 {
  padding: 40px 0 0 0; }
  @media (min-width: 768px) {
    .section-05 .text-04 {
      padding: 60px 0 0 0; } }
  @media (min-width: 1300px) {
    .section-05 .text-04 {
      padding-top: 100px; } }

.section-08 {
  background: url("../img/bg-01-mobile.jpg") no-repeat center;
  background-size: cover; }
  @media (min-width: 1100px) {
    .section-08 {
      background-image: url("../img/bg-01.jpg"); } }
  .section-08 .section-header {
    padding-bottom: 40px; }
    @media (min-width: 1100px) {
      .section-08 .section-header {
        padding-bottom: 60px; } }

.section-09 p {
  padding: 5px 0; }
.section-09 .icons-02 {
  padding: 30px 0; }
  @media (min-width: 1300px) {
    .section-09 .icons-02 {
      padding-bottom: 50px; } }

@media (min-width: 480px) {
  .section-13 .site-section__layer {
    padding: 60px 0; } }
@media (min-width: 768px) {
  .section-13 .site-section__layer {
    padding: 80px 0; } }
@media (min-width: 1700px) {
  .section-13 .site-section__layer {
    padding: 120px 0; } }
@media (min-width: 550px) {
  .section-13 .section-header {
    padding-bottom: 30px; } }
@media (min-width: 1300px) {
  .section-13 .section-header {
    padding-bottom: 50px; } }

@media (min-width: 1700px) {
  .section-17 .site-section__layer {
    padding-bottom: 80px; } }

.section-18 .site-section__layer {
  padding: 0 0 60px 0; }
  @media (min-width: 1700px) {
    .section-18 .site-section__layer {
      padding-bottom: 120px; } }

.body-home {
  /**.label {
      @media (min-width: $rwd-1300) {
      display: none !important;   
      }
  }**/
    /**.site-header {
    background: url('../img/bg-00-mobile.jpg') no-repeat top center;
    background-size: cover;

        @media (min-width: $rwd-1300) {
        background-image: url('../img/bg-00.jpg');
        }

        &__inner {
        position: relative;
        }
    }

    .site-header--constant-height {
        .wrapper {
            @media (min-width: $rwd-1300) {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            }
        }
    }**/ }
  .body-home .site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50; }
  .body-home .site-content {
    padding: 0 !important; }
  .body-home .site-title .site-logo {
    background-image: url("../img/logo-light.svg"); }
  .body-home .icon-hamburger > div {
    background: #fff; }
  .body-home .icon-hamburger.open > div {
    background: #b21e28; }
  .body-home .slide-menu {
    /**@media (min-width: $rwd-1300) {
    position: relative;
    }**/ }
  @media (min-width: 1300px) {
    .body-home .menu > ul {
      border-color: #fff; } }
  @media (min-width: 1300px) {
    .body-home .menu a {
      color: #fff; } }
  @media (min-width: 1300px) {
    .body-home .menu a:before {
      background: #fff; } }
  @media (min-width: 1300px) {
    .body-home .menu a:after {
      background: #fff; } }
  @media (min-width: 1300px) {
    .body-home .menu a:hover {
      color: #fff; } }
  @media (min-width: 1300px) {
    .body-home .site-header--fixed .menu > ul {
      border-color: #b21e28; } }
  @media (min-width: 1300px) {
    .body-home .site-header--fixed .menu a {
      color: #b21e28; } }
  @media (min-width: 1300px) {
    .body-home .site-header--fixed .menu a:before {
      background: #b21e28; } }
  @media (min-width: 1300px) {
    .body-home .site-header--fixed .menu a:after {
      background: #b21e28; } }
  @media (min-width: 1300px) {
    .body-home .site-header--fixed .menu a:hover {
      color: #b21e28; } }

/***** BUTTONS *****/
.button-00 {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px; }
  @media (min-width: 1300px) {
    .button-00 {
      font-size: 16px; } }
  .button-00__icon {
    display: block;
    font-size: 28px;
    padding: 0 0 5px 0; }
    @media (min-width: 1300px) {
      .button-00__icon {
        font-size: 36px; } }

.button-01 {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px; }
  @media (min-width: 1300px) {
    .button-01 {
      font-size: 16px; } }
  .button-01__inner {
    display: inline-block;
    vertical-align: middle;
    padding: 0 5px 0 0; }
    @media (min-width: 1300px) {
      .button-01__inner {
        padding-right: 10px; } }
  .button-01__icon {
    display: inline-block;
    vertical-align: middle; }

.simple-button {
  display: inline-block;
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 14px;
  font-family: "europa", Verdana, sans-serif;
  font-weight: 700;
  color: #b21e28;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  top: -10px; }
  @media (min-width: 768px) {
    .simple-button {
      font-size: 16px;
      top: -15px; } }
  .simple-button__inner {
    padding: 5px 0; }
    @media (min-width: 768px) {
      .simple-button__inner {
        padding: 8px 0; } }
  .simple-button__icon-top {
    display: block;
    margin: 0 auto; }
  .simple-button__icon-bottom, .simple-button__icon-top {
    margin: 0 auto;
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-name: Tremble;
    -moz-animation-name: Tremble;
    animation-name: Tremble; }
    .simple-button__icon-bottom .icon-arrow, .simple-button__icon-top .icon-arrow {
      margin: 0 auto; }
  .simple-button:hover .simple-button__icon-bottom {
    -webkit-animation-name: none;
    -moz-animation-name: none;
    animation-name: none; }
  .simple-button:hover .simple-button__icon-top {
    -webkit-animation-name: none;
    -moz-animation-name: none;
    animation-name: none; }

.simple-button--light {
  color: #fff; }

.simple-button--open {
  position: relative;
  top: 10px; }
  @media (min-width: 768px) {
    .simple-button--open {
      top: 15px; } }

/*# sourceMappingURL=main.css.map */
