@import url("https://p.typekit.net/p.css?s=1&k=zzq7msc&ht=tk&f=44868.44870.44872&a=5047994&app=typekit&e=css");
@import url("https://p.typekit.net/p.css?s=1&k=zzq7msc&ht=tk&f=44868.44870.44872&a=5047994&app=typekit&e=css");
@import url("//hello.myfonts.net/count/3c1887");
@import url("icomoon.css");

[class*="uk-animation-"] {
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.uk-animation-fade {
  animation-name: uk-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}
.uk-animation-scale-up {
  animation-name: uk-fade-scale-02;
}
.uk-animation-scale-down {
  animation-name: uk-fade-scale-18;
}
.uk-animation-slide-top {
  animation-name: uk-fade-top;
}
.uk-animation-slide-bottom {
  animation-name: uk-fade-bottom;
}
.uk-animation-slide-left {
  animation-name: uk-fade-left;
}
.uk-animation-slide-right {
  animation-name: uk-fade-right;
}
.uk-animation-slide-top-small {
  animation-name: uk-fade-top-small;
}
.uk-animation-slide-bottom-small {
  animation-name: uk-fade-bottom-small;
}
.uk-animation-slide-left-small {
  animation-name: uk-fade-left-small;
}
.uk-animation-slide-right-small {
  animation-name: uk-fade-right-small;
}
.uk-animation-slide-top-medium {
  animation-name: uk-fade-top-medium;
}
.uk-animation-slide-bottom-medium {
  animation-name: uk-fade-bottom-medium;
}
.uk-animation-slide-left-medium {
  animation-name: uk-fade-left-medium;
}
.uk-animation-slide-right-medium {
  animation-name: uk-fade-right-medium;
}
.uk-animation-kenburns {
  animation-name: uk-scale-kenburns;
  animation-duration: 15s;
}
.uk-animation-shake {
  animation-name: uk-shake;
}
.uk-animation-stroke {
  animation-name: uk-stroke;
  stroke-dasharray: var(--uk-animation-stroke);
  animation-duration: 2s;
}
.uk-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}
.uk-animation-fast {
  animation-duration: 0.1s;
}
.uk-animation-toggle:not(:hover):not(:focus) [class*="uk-animation-"] {
  animation-name: none;
}
.uk-animation-toggle {
  -webkit-tap-highlight-color: transparent;
}
.uk-animation-toggle:focus {
  outline: none;
}
@keyframes uk-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes uk-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes uk-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes uk-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes uk-fade-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes uk-fade-top-small {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes uk-fade-bottom-small {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes uk-fade-left-small {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes uk-fade-right-small {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes uk-fade-top-medium {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes uk-fade-bottom-medium {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes uk-fade-left-medium {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes uk-fade-right-medium {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes uk-fade-scale-02 {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes uk-fade-scale-18 {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes uk-scale-kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes uk-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}
@keyframes uk-stroke {
  0% {
    stroke-dashoffset: var(--uk-animation-stroke);
  }
  100% {
    stroke-dashoffset: 0;
  }
}
.uk-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}
.uk-grid > * {
  margin: 0;
}
.uk-grid > * > :last-child {
  margin-bottom: 0;
}
.uk-grid {
  margin-left: -30px;
}
.uk-grid > * {
  padding-left: 30px;
}
.uk-grid + .uk-grid,
.uk-grid > .uk-grid-margin,
* + .uk-grid-margin {
  margin-top: 30px;
}
@media (min-width: 1200px) {
  .uk-grid {
    margin-left: -40px;
  }
  .uk-grid > * {
    padding-left: 40px;
  }
  .uk-grid + .uk-grid,
  .uk-grid > .uk-grid-margin,
  * + .uk-grid-margin {
    margin-top: 40px;
  }
}
.uk-grid-small,
.uk-grid-column-small {
  margin-left: -15px;
}
.uk-grid-small > *,
.uk-grid-column-small > * {
  padding-left: 15px;
}
.uk-grid + .uk-grid-small,
.uk-grid + .uk-grid-row-small,
.uk-grid-small > .uk-grid-margin,
.uk-grid-row-small > .uk-grid-margin,
* + .uk-grid-margin-small {
  margin-top: 15px;
}
.uk-grid-medium,
.uk-grid-column-medium {
  margin-left: -30px;
}
.uk-grid-medium > *,
.uk-grid-column-medium > * {
  padding-left: 30px;
}
.uk-grid + .uk-grid-medium,
.uk-grid + .uk-grid-row-medium,
.uk-grid-medium > .uk-grid-margin,
.uk-grid-row-medium > .uk-grid-margin,
* + .uk-grid-margin-medium {
  margin-top: 30px;
}
.uk-grid-large,
.uk-grid-column-large {
  margin-left: -40px;
}
.uk-grid-large > *,
.uk-grid-column-large > * {
  padding-left: 40px;
}
.uk-grid + .uk-grid-large,
.uk-grid + .uk-grid-row-large,
.uk-grid-large > .uk-grid-margin,
.uk-grid-row-large > .uk-grid-margin,
* + .uk-grid-margin-large {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .uk-grid-large,
  .uk-grid-column-large {
    margin-left: -70px;
  }
  .uk-grid-large > *,
  .uk-grid-column-large > * {
    padding-left: 70px;
  }
  .uk-grid + .uk-grid-large,
  .uk-grid + .uk-grid-row-large,
  .uk-grid-large > .uk-grid-margin,
  .uk-grid-row-large > .uk-grid-margin,
  * + .uk-grid-margin-large {
    margin-top: 70px;
  }
}
.uk-grid-collapse,
.uk-grid-column-collapse {
  margin-left: 0;
}
.uk-grid-collapse > *,
.uk-grid-column-collapse > * {
  padding-left: 0;
}
.uk-grid + .uk-grid-collapse,
.uk-grid + .uk-grid-row-collapse,
.uk-grid-collapse > .uk-grid-margin,
.uk-grid-row-collapse > .uk-grid-margin {
  margin-top: 0;
}
.uk-grid-divider > * {
  position: relative;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
}
.uk-grid-divider {
  margin-left: -60px;
}
.uk-grid-divider > * {
  padding-left: 60px;
}
.uk-grid-divider > :not(.uk-first-column)::before {
  left: 30px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
@media (min-width: 1200px) {
  .uk-grid-divider {
    margin-left: -80px;
  }
  .uk-grid-divider > * {
    padding-left: 80px;
  }
  .uk-grid-divider > :not(.uk-first-column)::before {
    left: 40px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin {
    margin-top: 80px;
  }
  .uk-grid-divider.uk-grid-stack > .uk-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}
.uk-grid-divider.uk-grid-small,
.uk-grid-divider.uk-grid-column-small {
  margin-left: -30px;
}
.uk-grid-divider.uk-grid-small > *,
.uk-grid-divider.uk-grid-column-small > * {
  padding-left: 30px;
}
.uk-grid-divider.uk-grid-small > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-small > :not(.uk-first-column)::before {
  left: 15px;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin {
  margin-top: 30px;
}
.uk-grid-divider.uk-grid-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
  left: 30px;
}
.uk-grid-divider.uk-grid-row-small.uk-grid-stack > .uk-grid-margin::before {
  top: -15px;
}
.uk-grid-divider.uk-grid-column-small.uk-grid-stack > .uk-grid-margin::before {
  left: 30px;
}
.uk-grid-divider.uk-grid-medium,
.uk-grid-divider.uk-grid-column-medium {
  margin-left: -60px;
}
.uk-grid-divider.uk-grid-medium > *,
.uk-grid-divider.uk-grid-column-medium > * {
  padding-left: 60px;
}
.uk-grid-divider.uk-grid-medium > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-medium > :not(.uk-first-column)::before {
  left: 30px;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin {
  margin-top: 60px;
}
.uk-grid-divider.uk-grid-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
  left: 60px;
}
.uk-grid-divider.uk-grid-row-medium.uk-grid-stack > .uk-grid-margin::before {
  top: -30px;
}
.uk-grid-divider.uk-grid-column-medium.uk-grid-stack > .uk-grid-margin::before {
  left: 60px;
}
.uk-grid-divider.uk-grid-large,
.uk-grid-divider.uk-grid-column-large {
  margin-left: -80px;
}
.uk-grid-divider.uk-grid-large > *,
.uk-grid-divider.uk-grid-column-large > * {
  padding-left: 80px;
}
.uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
.uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
  left: 40px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
  margin-top: 80px;
}
.uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
  left: 80px;
}
.uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
  top: -40px;
}
.uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
  left: 80px;
}
@media (min-width: 1200px) {
  .uk-grid-divider.uk-grid-large,
  .uk-grid-divider.uk-grid-column-large {
    margin-left: -140px;
  }
  .uk-grid-divider.uk-grid-large > *,
  .uk-grid-divider.uk-grid-column-large > * {
    padding-left: 140px;
  }
  .uk-grid-divider.uk-grid-large > :not(.uk-first-column)::before,
  .uk-grid-divider.uk-grid-column-large > :not(.uk-first-column)::before {
    left: 70px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin,
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin {
    margin-top: 140px;
  }
  .uk-grid-divider.uk-grid-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
    left: 140px;
  }
  .uk-grid-divider.uk-grid-row-large.uk-grid-stack > .uk-grid-margin::before {
    top: -70px;
  }
  .uk-grid-divider.uk-grid-column-large.uk-grid-stack > .uk-grid-margin::before {
    left: 140px;
  }
}
.uk-grid-match > *,
.uk-grid-item-match {
  display: flex;
  flex-wrap: wrap;
}
.uk-grid-match > * > :not([class*="uk-width"]),
.uk-grid-item-match > :not([class*="uk-width"]) {
  box-sizing: border-box;
  width: 100%;
  flex: auto;
}
.uk-flex {
  display: flex;
}
.uk-flex-inline {
  display: inline-flex;
}
.uk-flex::before,
.uk-flex::after,
.uk-flex-inline::before,
.uk-flex-inline::after {
  display: none;
}
.uk-flex-left {
  justify-content: flex-start;
}
.uk-flex-center {
  justify-content: center;
}
.uk-flex-right {
  justify-content: flex-end;
}
.uk-flex-between {
  justify-content: space-between;
}
.uk-flex-around {
  justify-content: space-around;
}
@media (min-width: 640px) {
  .uk-flex-left\@s {
    justify-content: flex-start;
  }
  .uk-flex-center\@s {
    justify-content: center;
  }
  .uk-flex-right\@s {
    justify-content: flex-end;
  }
  .uk-flex-between\@s {
    justify-content: space-between;
  }
  .uk-flex-around\@s {
    justify-content: space-around;
  }
}
@media (min-width: 960px) {
  .uk-flex-left\@m {
    justify-content: flex-start;
  }
  .uk-flex-center\@m {
    justify-content: center;
  }
  .uk-flex-right\@m {
    justify-content: flex-end;
  }
  .uk-flex-between\@m {
    justify-content: space-between;
  }
  .uk-flex-around\@m {
    justify-content: space-around;
  }
}
@media (min-width: 1200px) {
  .uk-flex-left\@l {
    justify-content: flex-start;
  }
  .uk-flex-center\@l {
    justify-content: center;
  }
  .uk-flex-right\@l {
    justify-content: flex-end;
  }
  .uk-flex-between\@l {
    justify-content: space-between;
  }
  .uk-flex-around\@l {
    justify-content: space-around;
  }
}
@media (min-width: 1600px) {
  .uk-flex-left\@xl {
    justify-content: flex-start;
  }
  .uk-flex-center\@xl {
    justify-content: center;
  }
  .uk-flex-right\@xl {
    justify-content: flex-end;
  }
  .uk-flex-between\@xl {
    justify-content: space-between;
  }
  .uk-flex-around\@xl {
    justify-content: space-around;
  }
}
.uk-flex-stretch {
  align-items: stretch;
}
.uk-flex-top {
  align-items: flex-start;
}
.uk-flex-middle {
  align-items: center;
}
.uk-flex-bottom {
  align-items: flex-end;
}
.uk-flex-row {
  flex-direction: row;
}
.uk-flex-row-reverse {
  flex-direction: row-reverse;
}
.uk-flex-column {
  flex-direction: column;
}
.uk-flex-column-reverse {
  flex-direction: column-reverse;
}
.uk-flex-nowrap {
  flex-wrap: nowrap;
}
.uk-flex-wrap {
  flex-wrap: wrap;
}
.uk-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}
.uk-flex-wrap-stretch {
  align-content: stretch;
}
.uk-flex-wrap-top {
  align-content: flex-start;
}
.uk-flex-wrap-middle {
  align-content: center;
}
.uk-flex-wrap-bottom {
  align-content: flex-end;
}
.uk-flex-wrap-between {
  align-content: space-between;
}
.uk-flex-wrap-around {
  align-content: space-around;
}
.uk-flex-first {
  order: -1;
}
.uk-flex-last {
  order: 99;
}
@media (min-width: 640px) {
  .uk-flex-first\@s {
    order: -1;
  }
  .uk-flex-last\@s {
    order: 99;
  }
}
@media (min-width: 960px) {
  .uk-flex-first\@m {
    order: -1;
  }
  .uk-flex-last\@m {
    order: 99;
  }
}
@media (min-width: 1200px) {
  .uk-flex-first\@l {
    order: -1;
  }
  .uk-flex-last\@l {
    order: 99;
  }
}
@media (min-width: 1600px) {
  .uk-flex-first\@xl {
    order: -1;
  }
  .uk-flex-last\@xl {
    order: 99;
  }
}
.uk-flex-none {
  flex: none;
}
.uk-flex-auto {
  flex: auto;
}
.uk-flex-1 {
  flex: 1;
}
.uk-background-default {
  background-color: #fff;
}
.uk-background-muted {
  background-color: #f8f8f8;
}
.uk-background-primary {
  background-color: #1e87f0;
}
.uk-background-secondary {
  background-color: #222;
}
.uk-background-cover,
.uk-background-contain {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.uk-background-cover {
  background-size: cover;
}
.uk-background-contain {
  background-size: contain;
}
.uk-background-top-left {
  background-position: 0 0;
}
.uk-background-top-center {
  background-position: 50% 0;
}
.uk-background-top-right {
  background-position: 100% 0;
}
.uk-background-center-left {
  background-position: 0 50%;
}
.uk-background-center-center {
  background-position: 50% 50%;
}
.uk-background-center-right {
  background-position: 100% 50%;
}
.uk-background-bottom-left {
  background-position: 0 100%;
}
.uk-background-bottom-center {
  background-position: 50% 100%;
}
.uk-background-bottom-right {
  background-position: 100% 100%;
}
.uk-background-norepeat {
  background-repeat: no-repeat;
}
.uk-background-fixed {
  background-attachment: fixed;
  backface-visibility: hidden;
}
@media (pointer: coarse) {
  .uk-background-fixed {
    background-attachment: scroll;
  }
}
@media (max-width: 639px) {
  .uk-background-image\@s {
    background-image: none !important;
  }
}
@media (max-width: 959px) {
  .uk-background-image\@m {
    background-image: none !important;
  }
}
@media (max-width: 1199px) {
  .uk-background-image\@l {
    background-image: none !important;
  }
}
@media (max-width: 1599px) {
  .uk-background-image\@xl {
    background-image: none !important;
  }
}
.uk-background-blend-multiply {
  background-blend-mode: multiply;
}
.uk-background-blend-screen {
  background-blend-mode: screen;
}
.uk-background-blend-overlay {
  background-blend-mode: overlay;
}
.uk-background-blend-darken {
  background-blend-mode: darken;
}
.uk-background-blend-lighten {
  background-blend-mode: lighten;
}
.uk-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}
.uk-background-blend-color-burn {
  background-blend-mode: color-burn;
}
.uk-background-blend-hard-light {
  background-blend-mode: hard-light;
}
.uk-background-blend-soft-light {
  background-blend-mode: soft-light;
}
.uk-background-blend-difference {
  background-blend-mode: difference;
}
.uk-background-blend-exclusion {
  background-blend-mode: exclusion;
}
.uk-background-blend-hue {
  background-blend-mode: hue;
}
.uk-background-blend-saturation {
  background-blend-mode: saturation;
}
.uk-background-blend-color {
  background-blend-mode: color;
}
.uk-background-blend-luminosity {
  background-blend-mode: luminosity;
}
[class*="uk-position-top"],
[class*="uk-position-bottom"],
[class*="uk-position-left"],
[class*="uk-position-right"],
[class*="uk-position-center"] {
  position: absolute !important;
  max-width: 100%;
}
.uk-position-top {
  top: 0;
  left: 0;
  right: 0;
}
.uk-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}
.uk-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}
.uk-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}
.uk-position-top-left {
  top: 0;
  left: 0;
}
.uk-position-top-right {
  top: 0;
  right: 0;
}
.uk-position-bottom-left {
  bottom: 0;
  left: 0;
}
.uk-position-bottom-right {
  bottom: 0;
  right: 0;
}
.uk-position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}
[class*="uk-position-center-left"],
[class*="uk-position-center-right"] {
  top: 50%;
  transform: translateY(-50%);
}
.uk-position-center-left {
  left: 0;
}
.uk-position-center-right {
  right: 0;
}
.uk-position-center-left-out {
  right: 100%;
  width: max-content;
}
.uk-position-center-right-out {
  left: 100%;
  width: max-content;
}
.uk-position-top-center,
.uk-position-bottom-center {
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 100%;
  box-sizing: border-box;
}
.uk-position-top-center {
  top: 0;
}
.uk-position-bottom-center {
  bottom: 0;
}
.uk-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.uk-position-relative {
  position: relative !important;
}
.uk-position-absolute {
  position: absolute !important;
}
.uk-position-fixed {
  position: fixed !important;
}
.uk-position-z-index {
  z-index: 1;
}
.uk-position-small {
  max-width: calc(100% - (15px * 2));
  margin: 15px;
}
.uk-position-small.uk-position-center {
  transform: translate(-50%, -50%) translate(-15px, -15px);
}
.uk-position-small[class*="uk-position-center-left"],
.uk-position-small[class*="uk-position-center-right"] {
  transform: translateY(-50%) translateY(-15px);
}
.uk-position-small.uk-position-top-center,
.uk-position-small.uk-position-bottom-center {
  transform: translateX(-50%) translateX(-15px);
}
.uk-position-medium {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}
.uk-position-medium.uk-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.uk-position-medium[class*="uk-position-center-left"],
.uk-position-medium[class*="uk-position-center-right"] {
  transform: translateY(-50%) translateY(-30px);
}
.uk-position-medium.uk-position-top-center,
.uk-position-medium.uk-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
.uk-position-large {
  max-width: calc(100% - (30px * 2));
  margin: 30px;
}
.uk-position-large.uk-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}
.uk-position-large[class*="uk-position-center-left"],
.uk-position-large[class*="uk-position-center-right"] {
  transform: translateY(-50%) translateY(-30px);
}
.uk-position-large.uk-position-top-center,
.uk-position-large.uk-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}
@media (min-width: 1200px) {
  .uk-position-large {
    max-width: calc(100% - (50px * 2));
    margin: 50px;
  }
  .uk-position-large.uk-position-center {
    transform: translate(-50%, -50%) translate(-50px, -50px);
  }
  .uk-position-large[class*="uk-position-center-left"],
  .uk-position-large[class*="uk-position-center-right"] {
    transform: translateY(-50%) translateY(-50px);
  }
  .uk-position-large.uk-position-top-center,
  .uk-position-large.uk-position-bottom-center {
    transform: translateX(-50%) translateX(-50px);
  }
}
.padding-0 {
  padding: 0px !important;
}
.p-t-0 {
  padding-top: 0px !important;
}
.p-r-0 {
  padding-right: 0px !important;
}
.p-l-0 {
  padding-left: 0px !important;
}
.p-b-0 {
  padding-bottom: 0px !important;
}
.margin-0 {
  margin: 0px !important;
}
.m-t-0 {
  margin-top: 0px !important;
}
.m-r-0 {
  margin-right: 0px !important;
}
.m-l-0 {
  margin-left: 0px !important;
}
.m-b-0 {
  margin-bottom: 0px !important;
}
.padding-5 {
  padding: 5px !important;
}
.p-t-5 {
  padding-top: 5px !important;
}
.p-r-5 {
  padding-right: 5px !important;
}
.p-l-5 {
  padding-left: 5px !important;
}
.p-b-5 {
  padding-bottom: 5px !important;
}
.margin-5 {
  margin: 5px !important;
}
.m-t-5 {
  margin-top: 5px !important;
}
.m-r-5 {
  margin-right: 5px !important;
}
.m-l-5 {
  margin-left: 5px !important;
}
.m-b-5 {
  margin-bottom: 5px !important;
}
.padding-10 {
  padding: 10px !important;
}
.p-t-10 {
  padding-top: 10px !important;
}
.p-r-10 {
  padding-right: 10px !important;
}
.p-l-10 {
  padding-left: 10px !important;
}
.p-b-10 {
  padding-bottom: 10px !important;
}
.margin-10 {
  margin: 10px !important;
}
.m-t-10 {
  margin-top: 10px !important;
}
.m-r-10 {
  margin-right: 10px !important;
}
.m-l-10 {
  margin-left: 10px !important;
}
.m-b-10 {
  margin-bottom: 10px !important;
}
.padding-15 {
  padding: 15px !important;
}
.p-t-15 {
  padding-top: 15px !important;
}
.p-r-15 {
  padding-right: 15px !important;
}
.p-l-15 {
  padding-left: 15px !important;
}
.p-b-15 {
  padding-bottom: 15px !important;
}
.margin-15 {
  margin: 15px !important;
}
.m-t-15 {
  margin-top: 15px !important;
}
.m-r-15 {
  margin-right: 15px !important;
}
.m-l-15 {
  margin-left: 15px !important;
}
.m-b-15 {
  margin-bottom: 15px !important;
}
.padding-20 {
  padding: 20px !important;
}
.p-t-20 {
  padding-top: 20px !important;
}
.p-r-20 {
  padding-right: 20px !important;
}
.p-l-20 {
  padding-left: 20px !important;
}
.p-b-20 {
  padding-bottom: 20px !important;
}
.margin-20 {
  margin: 20px !important;
}
.m-t-20 {
  margin-top: 20px !important;
}
.m-r-20 {
  margin-right: 20px !important;
}
.m-l-20 {
  margin-left: 20px !important;
}
.m-b-20 {
  margin-bottom: 20px !important;
}
.padding-25 {
  padding: 25px !important;
}
.p-t-25 {
  padding-top: 25px !important;
}
.p-r-25 {
  padding-right: 25px !important;
}
.p-l-25 {
  padding-left: 25px !important;
}
.p-b-25 {
  padding-bottom: 25px !important;
}
.margin-25 {
  margin: 25px !important;
}
.m-t-25 {
  margin-top: 25px !important;
}
.m-r-25 {
  margin-right: 25px !important;
}
.m-l-25 {
  margin-left: 25px !important;
}
.m-b-25 {
  margin-bottom: 25px !important;
}
.padding-30 {
  padding: 30px !important;
}
.p-t-30 {
  padding-top: 30px !important;
}
.p-r-30 {
  padding-right: 30px !important;
}
.p-l-30 {
  padding-left: 30px !important;
}
.p-b-30 {
  padding-bottom: 30px !important;
}
.margin-30 {
  margin: 30px !important;
}
.m-t-30 {
  margin-top: 30px !important;
}
.m-r-30 {
  margin-right: 30px !important;
}
.m-l-30 {
  margin-left: 30px !important;
}
.m-b-30 {
  margin-bottom: 30px !important;
}
.padding-35 {
  padding: 35px !important;
}
.p-t-35 {
  padding-top: 35px !important;
}
.p-r-35 {
  padding-right: 35px !important;
}
.p-l-35 {
  padding-left: 35px !important;
}
.p-b-35 {
  padding-bottom: 35px !important;
}
.margin-35 {
  margin: 35px !important;
}
.m-t-35 {
  margin-top: 35px !important;
}
.m-r-35 {
  margin-right: 35px !important;
}
.m-l-35 {
  margin-left: 35px !important;
}
.m-b-35 {
  margin-bottom: 35px !important;
}
.padding-40 {
  padding: 40px !important;
}
.p-t-40 {
  padding-top: 40px !important;
}
.p-r-40 {
  padding-right: 40px !important;
}
.p-l-40 {
  padding-left: 40px !important;
}
.p-b-40 {
  padding-bottom: 40px !important;
}
.margin-40 {
  margin: 40px !important;
}
.m-t-40 {
  margin-top: 40px !important;
}
.m-r-40 {
  margin-right: 40px !important;
}
.m-l-40 {
  margin-left: 40px !important;
}
.m-b-40 {
  margin-bottom: 40px !important;
}
.padding-45 {
  padding: 45px !important;
}
.p-t-45 {
  padding-top: 45px !important;
}
.p-r-45 {
  padding-right: 45px !important;
}
.p-l-45 {
  padding-left: 45px !important;
}
.p-b-45 {
  padding-bottom: 45px !important;
}
.margin-45 {
  margin: 45px !important;
}
.m-t-45 {
  margin-top: 45px !important;
}
.m-r-45 {
  margin-right: 45px !important;
}
.m-l-45 {
  margin-left: 45px !important;
}
.m-b-45 {
  margin-bottom: 45px !important;
}
.padding-50 {
  padding: 50px !important;
}
.p-t-50 {
  padding-top: 50px !important;
}
.p-r-50 {
  padding-right: 50px !important;
}
.p-l-50 {
  padding-left: 50px !important;
}
.p-b-50 {
  padding-bottom: 50px !important;
}
.margin-50 {
  margin: 50px !important;
}
.m-t-50 {
  margin-top: 50px !important;
}
.m-r-50 {
  margin-right: 50px !important;
}
.m-l-50 {
  margin-left: 50px !important;
}
.m-b-50 {
  margin-bottom: 50px !important;
}
.padding-55 {
  padding: 55px !important;
}
.p-t-55 {
  padding-top: 55px !important;
}
.p-r-55 {
  padding-right: 55px !important;
}
.p-l-55 {
  padding-left: 55px !important;
}
.p-b-55 {
  padding-bottom: 55px !important;
}
.margin-55 {
  margin: 55px !important;
}
.m-t-55 {
  margin-top: 55px !important;
}
.m-r-55 {
  margin-right: 55px !important;
}
.m-l-55 {
  margin-left: 55px !important;
}
.m-b-55 {
  margin-bottom: 55px !important;
}
.padding-60 {
  padding: 60px !important;
}
.p-t-60 {
  padding-top: 60px !important;
}
.p-r-60 {
  padding-right: 60px !important;
}
.p-l-60 {
  padding-left: 60px !important;
}
.p-b-60 {
  padding-bottom: 60px !important;
}
.margin-60 {
  margin: 60px !important;
}
.m-t-60 {
  margin-top: 60px !important;
}
.m-r-60 {
  margin-right: 60px !important;
}
.m-l-60 {
  margin-left: 60px !important;
}
.m-b-60 {
  margin-bottom: 60px !important;
}
.padding-65 {
  padding: 65px !important;
}
.p-t-65 {
  padding-top: 65px !important;
}
.p-r-65 {
  padding-right: 65px !important;
}
.p-l-65 {
  padding-left: 65px !important;
}
.p-b-65 {
  padding-bottom: 65px !important;
}
.margin-65 {
  margin: 65px !important;
}
.m-t-65 {
  margin-top: 65px !important;
}
.m-r-65 {
  margin-right: 65px !important;
}
.m-l-65 {
  margin-left: 65px !important;
}
.m-b-65 {
  margin-bottom: 65px !important;
}
.padding-70 {
  padding: 70px !important;
}
.p-t-70 {
  padding-top: 70px !important;
}
.p-r-70 {
  padding-right: 70px !important;
}
.p-l-70 {
  padding-left: 70px !important;
}
.p-b-70 {
  padding-bottom: 70px !important;
}
.margin-70 {
  margin: 70px !important;
}
.m-t-70 {
  margin-top: 70px !important;
}
.m-r-70 {
  margin-right: 70px !important;
}
.m-l-70 {
  margin-left: 70px !important;
}
.m-b-70 {
  margin-bottom: 70px !important;
}
.padding-75 {
  padding: 75px !important;
}
.p-t-75 {
  padding-top: 75px !important;
}
.p-r-75 {
  padding-right: 75px !important;
}
.p-l-75 {
  padding-left: 75px !important;
}
.p-b-75 {
  padding-bottom: 75px !important;
}
.margin-75 {
  margin: 75px !important;
}
.m-t-75 {
  margin-top: 75px !important;
}
.m-r-75 {
  margin-right: 75px !important;
}
.m-l-75 {
  margin-left: 75px !important;
}
.m-b-75 {
  margin-bottom: 75px !important;
}
.padding-80 {
  padding: 80px !important;
}
.p-t-80 {
  padding-top: 80px !important;
}
.p-r-80 {
  padding-right: 80px !important;
}
.p-l-80 {
  padding-left: 80px !important;
}
.p-b-80 {
  padding-bottom: 80px !important;
}
.margin-80 {
  margin: 80px !important;
}
.m-t-80 {
  margin-top: 80px !important;
}
.m-r-80 {
  margin-right: 80px !important;
}
.m-l-80 {
  margin-left: 80px !important;
}
.m-b-80 {
  margin-bottom: 80px !important;
}
.padding-85 {
  padding: 85px !important;
}
.p-t-85 {
  padding-top: 85px !important;
}
.p-r-85 {
  padding-right: 85px !important;
}
.p-l-85 {
  padding-left: 85px !important;
}
.p-b-85 {
  padding-bottom: 85px !important;
}
.margin-85 {
  margin: 85px !important;
}
.m-t-85 {
  margin-top: 85px !important;
}
.m-r-85 {
  margin-right: 85px !important;
}
.m-l-85 {
  margin-left: 85px !important;
}
.m-b-85 {
  margin-bottom: 85px !important;
}
.padding-90 {
  padding: 90px !important;
}
.p-t-90 {
  padding-top: 90px !important;
}
.p-r-90 {
  padding-right: 90px !important;
}
.p-l-90 {
  padding-left: 90px !important;
}
.p-b-90 {
  padding-bottom: 90px !important;
}
.margin-90 {
  margin: 90px !important;
}
.m-t-90 {
  margin-top: 90px !important;
}
.m-r-90 {
  margin-right: 90px !important;
}
.m-l-90 {
  margin-left: 90px !important;
}
.m-b-90 {
  margin-bottom: 90px !important;
}
.padding-95 {
  padding: 95px !important;
}
.p-t-95 {
  padding-top: 95px !important;
}
.p-r-95 {
  padding-right: 95px !important;
}
.p-l-95 {
  padding-left: 95px !important;
}
.p-b-95 {
  padding-bottom: 95px !important;
}
.margin-95 {
  margin: 95px !important;
}
.m-t-95 {
  margin-top: 95px !important;
}
.m-r-95 {
  margin-right: 95px !important;
}
.m-l-95 {
  margin-left: 95px !important;
}
.m-b-95 {
  margin-bottom: 95px !important;
}
.padding-100 {
  padding: 100px !important;
}
.p-t-100 {
  padding-top: 100px !important;
}
.p-r-100 {
  padding-right: 100px !important;
}
.p-l-100 {
  padding-left: 100px !important;
}
.p-b-100 {
  padding-bottom: 100px !important;
}
.margin-100 {
  margin: 100px !important;
}
.m-t-100 {
  margin-top: 100px !important;
}
.m-r-100 {
  margin-right: 100px !important;
}
.m-l-100 {
  margin-left: 100px !important;
}
.m-b-100 {
  margin-bottom: 100px !important;
}
.padding-105 {
  padding: 105px !important;
}
.p-t-105 {
  padding-top: 105px !important;
}
.p-r-105 {
  padding-right: 105px !important;
}
.p-l-105 {
  padding-left: 105px !important;
}
.p-b-105 {
  padding-bottom: 105px !important;
}
.margin-105 {
  margin: 105px !important;
}
.m-t-105 {
  margin-top: 105px !important;
}
.m-r-105 {
  margin-right: 105px !important;
}
.m-l-105 {
  margin-left: 105px !important;
}
.m-b-105 {
  margin-bottom: 105px !important;
}
.padding-110 {
  padding: 110px !important;
}
.p-t-110 {
  padding-top: 110px !important;
}
.p-r-110 {
  padding-right: 110px !important;
}
.p-l-110 {
  padding-left: 110px !important;
}
.p-b-110 {
  padding-bottom: 110px !important;
}
.margin-110 {
  margin: 110px !important;
}
.m-t-110 {
  margin-top: 110px !important;
}
.m-r-110 {
  margin-right: 110px !important;
}
.m-l-110 {
  margin-left: 110px !important;
}
.m-b-110 {
  margin-bottom: 110px !important;
}
.padding-115 {
  padding: 115px !important;
}
.p-t-115 {
  padding-top: 115px !important;
}
.p-r-115 {
  padding-right: 115px !important;
}
.p-l-115 {
  padding-left: 115px !important;
}
.p-b-115 {
  padding-bottom: 115px !important;
}
.margin-115 {
  margin: 115px !important;
}
.m-t-115 {
  margin-top: 115px !important;
}
.m-r-115 {
  margin-right: 115px !important;
}
.m-l-115 {
  margin-left: 115px !important;
}
.m-b-115 {
  margin-bottom: 115px !important;
}
.padding-120 {
  padding: 120px !important;
}
.p-t-120 {
  padding-top: 120px !important;
}
.p-r-120 {
  padding-right: 120px !important;
}
.p-l-120 {
  padding-left: 120px !important;
}
.p-b-120 {
  padding-bottom: 120px !important;
}
.margin-120 {
  margin: 120px !important;
}
.m-t-120 {
  margin-top: 120px !important;
}
.m-r-120 {
  margin-right: 120px !important;
}
.m-l-120 {
  margin-left: 120px !important;
}
.m-b-120 {
  margin-bottom: 120px !important;
}
.padding-125 {
  padding: 125px !important;
}
.p-t-125 {
  padding-top: 125px !important;
}
.p-r-125 {
  padding-right: 125px !important;
}
.p-l-125 {
  padding-left: 125px !important;
}
.p-b-125 {
  padding-bottom: 125px !important;
}
.margin-125 {
  margin: 125px !important;
}
.m-t-125 {
  margin-top: 125px !important;
}
.m-r-125 {
  margin-right: 125px !important;
}
.m-l-125 {
  margin-left: 125px !important;
}
.m-b-125 {
  margin-bottom: 125px !important;
}
.padding-130 {
  padding: 130px !important;
}
.p-t-130 {
  padding-top: 130px !important;
}
.p-r-130 {
  padding-right: 130px !important;
}
.p-l-130 {
  padding-left: 130px !important;
}
.p-b-130 {
  padding-bottom: 130px !important;
}
.margin-130 {
  margin: 130px !important;
}
.m-t-130 {
  margin-top: 130px !important;
}
.m-r-130 {
  margin-right: 130px !important;
}
.m-l-130 {
  margin-left: 130px !important;
}
.m-b-130 {
  margin-bottom: 130px !important;
}
.padding-135 {
  padding: 135px !important;
}
.p-t-135 {
  padding-top: 135px !important;
}
.p-r-135 {
  padding-right: 135px !important;
}
.p-l-135 {
  padding-left: 135px !important;
}
.p-b-135 {
  padding-bottom: 135px !important;
}
.margin-135 {
  margin: 135px !important;
}
.m-t-135 {
  margin-top: 135px !important;
}
.m-r-135 {
  margin-right: 135px !important;
}
.m-l-135 {
  margin-left: 135px !important;
}
.m-b-135 {
  margin-bottom: 135px !important;
}
.padding-140 {
  padding: 140px !important;
}
.p-t-140 {
  padding-top: 140px !important;
}
.p-r-140 {
  padding-right: 140px !important;
}
.p-l-140 {
  padding-left: 140px !important;
}
.p-b-140 {
  padding-bottom: 140px !important;
}
.margin-140 {
  margin: 140px !important;
}
.m-t-140 {
  margin-top: 140px !important;
}
.m-r-140 {
  margin-right: 140px !important;
}
.m-l-140 {
  margin-left: 140px !important;
}
.m-b-140 {
  margin-bottom: 140px !important;
}
.padding-145 {
  padding: 145px !important;
}
.p-t-145 {
  padding-top: 145px !important;
}
.p-r-145 {
  padding-right: 145px !important;
}
.p-l-145 {
  padding-left: 145px !important;
}
.p-b-145 {
  padding-bottom: 145px !important;
}
.margin-145 {
  margin: 145px !important;
}
.m-t-145 {
  margin-top: 145px !important;
}
.m-r-145 {
  margin-right: 145px !important;
}
.m-l-145 {
  margin-left: 145px !important;
}
.m-b-145 {
  margin-bottom: 145px !important;
}
.padding-150 {
  padding: 150px !important;
}
.p-t-150 {
  padding-top: 150px !important;
}
.p-r-150 {
  padding-right: 150px !important;
}
.p-l-150 {
  padding-left: 150px !important;
}
.p-b-150 {
  padding-bottom: 150px !important;
}
.margin-150 {
  margin: 150px !important;
}
.m-t-150 {
  margin-top: 150px !important;
}
.m-r-150 {
  margin-right: 150px !important;
}
.m-l-150 {
  margin-left: 150px !important;
}
.m-b-150 {
  margin-bottom: 150px !important;
}
.padding-155 {
  padding: 155px !important;
}
.p-t-155 {
  padding-top: 155px !important;
}
.p-r-155 {
  padding-right: 155px !important;
}
.p-l-155 {
  padding-left: 155px !important;
}
.p-b-155 {
  padding-bottom: 155px !important;
}
.margin-155 {
  margin: 155px !important;
}
.m-t-155 {
  margin-top: 155px !important;
}
.m-r-155 {
  margin-right: 155px !important;
}
.m-l-155 {
  margin-left: 155px !important;
}
.m-b-155 {
  margin-bottom: 155px !important;
}
.padding-160 {
  padding: 160px !important;
}
.p-t-160 {
  padding-top: 160px !important;
}
.p-r-160 {
  padding-right: 160px !important;
}
.p-l-160 {
  padding-left: 160px !important;
}
.p-b-160 {
  padding-bottom: 160px !important;
}
.margin-160 {
  margin: 160px !important;
}
.m-t-160 {
  margin-top: 160px !important;
}
.m-r-160 {
  margin-right: 160px !important;
}
.m-l-160 {
  margin-left: 160px !important;
}
.m-b-160 {
  margin-bottom: 160px !important;
}
.padding-165 {
  padding: 165px !important;
}
.p-t-165 {
  padding-top: 165px !important;
}
.p-r-165 {
  padding-right: 165px !important;
}
.p-l-165 {
  padding-left: 165px !important;
}
.p-b-165 {
  padding-bottom: 165px !important;
}
.margin-165 {
  margin: 165px !important;
}
.m-t-165 {
  margin-top: 165px !important;
}
.m-r-165 {
  margin-right: 165px !important;
}
.m-l-165 {
  margin-left: 165px !important;
}
.m-b-165 {
  margin-bottom: 165px !important;
}
.padding-170 {
  padding: 170px !important;
}
.p-t-170 {
  padding-top: 170px !important;
}
.p-r-170 {
  padding-right: 170px !important;
}
.p-l-170 {
  padding-left: 170px !important;
}
.p-b-170 {
  padding-bottom: 170px !important;
}
.margin-170 {
  margin: 170px !important;
}
.m-t-170 {
  margin-top: 170px !important;
}
.m-r-170 {
  margin-right: 170px !important;
}
.m-l-170 {
  margin-left: 170px !important;
}
.m-b-170 {
  margin-bottom: 170px !important;
}
.padding-175 {
  padding: 175px !important;
}
.p-t-175 {
  padding-top: 175px !important;
}
.p-r-175 {
  padding-right: 175px !important;
}
.p-l-175 {
  padding-left: 175px !important;
}
.p-b-175 {
  padding-bottom: 175px !important;
}
.margin-175 {
  margin: 175px !important;
}
.m-t-175 {
  margin-top: 175px !important;
}
.m-r-175 {
  margin-right: 175px !important;
}
.m-l-175 {
  margin-left: 175px !important;
}
.m-b-175 {
  margin-bottom: 175px !important;
}
.padding-180 {
  padding: 180px !important;
}
.p-t-180 {
  padding-top: 180px !important;
}
.p-r-180 {
  padding-right: 180px !important;
}
.p-l-180 {
  padding-left: 180px !important;
}
.p-b-180 {
  padding-bottom: 180px !important;
}
.margin-180 {
  margin: 180px !important;
}
.m-t-180 {
  margin-top: 180px !important;
}
.m-r-180 {
  margin-right: 180px !important;
}
.m-l-180 {
  margin-left: 180px !important;
}
.m-b-180 {
  margin-bottom: 180px !important;
}
.padding-185 {
  padding: 185px !important;
}
.p-t-185 {
  padding-top: 185px !important;
}
.p-r-185 {
  padding-right: 185px !important;
}
.p-l-185 {
  padding-left: 185px !important;
}
.p-b-185 {
  padding-bottom: 185px !important;
}
.margin-185 {
  margin: 185px !important;
}
.m-t-185 {
  margin-top: 185px !important;
}
.m-r-185 {
  margin-right: 185px !important;
}
.m-l-185 {
  margin-left: 185px !important;
}
.m-b-185 {
  margin-bottom: 185px !important;
}
.padding-190 {
  padding: 190px !important;
}
.p-t-190 {
  padding-top: 190px !important;
}
.p-r-190 {
  padding-right: 190px !important;
}
.p-l-190 {
  padding-left: 190px !important;
}
.p-b-190 {
  padding-bottom: 190px !important;
}
.margin-190 {
  margin: 190px !important;
}
.m-t-190 {
  margin-top: 190px !important;
}
.m-r-190 {
  margin-right: 190px !important;
}
.m-l-190 {
  margin-left: 190px !important;
}
.m-b-190 {
  margin-bottom: 190px !important;
}
.padding-195 {
  padding: 195px !important;
}
.p-t-195 {
  padding-top: 195px !important;
}
.p-r-195 {
  padding-right: 195px !important;
}
.p-l-195 {
  padding-left: 195px !important;
}
.p-b-195 {
  padding-bottom: 195px !important;
}
.margin-195 {
  margin: 195px !important;
}
.m-t-195 {
  margin-top: 195px !important;
}
.m-r-195 {
  margin-right: 195px !important;
}
.m-l-195 {
  margin-left: 195px !important;
}
.m-b-195 {
  margin-bottom: 195px !important;
}
.padding-200 {
  padding: 200px !important;
}
.p-t-200 {
  padding-top: 200px !important;
}
.p-r-200 {
  padding-right: 200px !important;
}
.p-l-200 {
  padding-left: 200px !important;
}
.p-b-200 {
  padding-bottom: 200px !important;
}
.margin-200 {
  margin: 200px !important;
}
.m-t-200 {
  margin-top: 200px !important;
}
.m-r-200 {
  margin-right: 200px !important;
}
.m-l-200 {
  margin-left: 200px !important;
}
.m-b-200 {
  margin-bottom: 200px !important;
}
@media (max-width: 1279px) {
  .m-t-md-5 {
    margin-top: 5px !important;
  }
  .m-r-md-5 {
    margin-right: 5px !important;
  }
  .m-l-md-5 {
    margin-left: 5px !important;
  }
  .m-b-md-5 {
    margin-bottom: 5px !important;
  }
  .p-t-md-5 {
    padding-top: 5px !important;
  }
  .p-r-md-5 {
    padding-right: 5px !important;
  }
  .p-l-md-5 {
    padding-left: 5px !important;
  }
  .p-b-md-5 {
    padding-bottom: 5px !important;
  }
  .m-t-md-10 {
    margin-top: 10px !important;
  }
  .m-r-md-10 {
    margin-right: 10px !important;
  }
  .m-l-md-10 {
    margin-left: 10px !important;
  }
  .m-b-md-10 {
    margin-bottom: 10px !important;
  }
  .p-t-md-10 {
    padding-top: 10px !important;
  }
  .p-r-md-10 {
    padding-right: 10px !important;
  }
  .p-l-md-10 {
    padding-left: 10px !important;
  }
  .p-b-md-10 {
    padding-bottom: 10px !important;
  }
  .m-t-md-15 {
    margin-top: 15px !important;
  }
  .m-r-md-15 {
    margin-right: 15px !important;
  }
  .m-l-md-15 {
    margin-left: 15px !important;
  }
  .m-b-md-15 {
    margin-bottom: 15px !important;
  }
  .p-t-md-15 {
    padding-top: 15px !important;
  }
  .p-r-md-15 {
    padding-right: 15px !important;
  }
  .p-l-md-15 {
    padding-left: 15px !important;
  }
  .p-b-md-15 {
    padding-bottom: 15px !important;
  }
  .m-t-md-20 {
    margin-top: 20px !important;
  }
  .m-r-md-20 {
    margin-right: 20px !important;
  }
  .m-l-md-20 {
    margin-left: 20px !important;
  }
  .m-b-md-20 {
    margin-bottom: 20px !important;
  }
  .p-t-md-20 {
    padding-top: 20px !important;
  }
  .p-r-md-20 {
    padding-right: 20px !important;
  }
  .p-l-md-20 {
    padding-left: 20px !important;
  }
  .p-b-md-20 {
    padding-bottom: 20px !important;
  }
  .m-t-md-25 {
    margin-top: 25px !important;
  }
  .m-r-md-25 {
    margin-right: 25px !important;
  }
  .m-l-md-25 {
    margin-left: 25px !important;
  }
  .m-b-md-25 {
    margin-bottom: 25px !important;
  }
  .p-t-md-25 {
    padding-top: 25px !important;
  }
  .p-r-md-25 {
    padding-right: 25px !important;
  }
  .p-l-md-25 {
    padding-left: 25px !important;
  }
  .p-b-md-25 {
    padding-bottom: 25px !important;
  }
  .m-t-md-30 {
    margin-top: 30px !important;
  }
  .m-r-md-30 {
    margin-right: 30px !important;
  }
  .m-l-md-30 {
    margin-left: 30px !important;
  }
  .m-b-md-30 {
    margin-bottom: 30px !important;
  }
  .p-t-md-30 {
    padding-top: 30px !important;
  }
  .p-r-md-30 {
    padding-right: 30px !important;
  }
  .p-l-md-30 {
    padding-left: 30px !important;
  }
  .p-b-md-30 {
    padding-bottom: 30px !important;
  }
  .m-t-md-35 {
    margin-top: 35px !important;
  }
  .m-r-md-35 {
    margin-right: 35px !important;
  }
  .m-l-md-35 {
    margin-left: 35px !important;
  }
  .m-b-md-35 {
    margin-bottom: 35px !important;
  }
  .p-t-md-35 {
    padding-top: 35px !important;
  }
  .p-r-md-35 {
    padding-right: 35px !important;
  }
  .p-l-md-35 {
    padding-left: 35px !important;
  }
  .p-b-md-35 {
    padding-bottom: 35px !important;
  }
  .m-t-md-40 {
    margin-top: 40px !important;
  }
  .m-r-md-40 {
    margin-right: 40px !important;
  }
  .m-l-md-40 {
    margin-left: 40px !important;
  }
  .m-b-md-40 {
    margin-bottom: 40px !important;
  }
  .p-t-md-40 {
    padding-top: 40px !important;
  }
  .p-r-md-40 {
    padding-right: 40px !important;
  }
  .p-l-md-40 {
    padding-left: 40px !important;
  }
  .p-b-md-40 {
    padding-bottom: 40px !important;
  }
  .m-t-md-45 {
    margin-top: 45px !important;
  }
  .m-r-md-45 {
    margin-right: 45px !important;
  }
  .m-l-md-45 {
    margin-left: 45px !important;
  }
  .m-b-md-45 {
    margin-bottom: 45px !important;
  }
  .p-t-md-45 {
    padding-top: 45px !important;
  }
  .p-r-md-45 {
    padding-right: 45px !important;
  }
  .p-l-md-45 {
    padding-left: 45px !important;
  }
  .p-b-md-45 {
    padding-bottom: 45px !important;
  }
  .m-t-md-50 {
    margin-top: 50px !important;
  }
  .m-r-md-50 {
    margin-right: 50px !important;
  }
  .m-l-md-50 {
    margin-left: 50px !important;
  }
  .m-b-md-50 {
    margin-bottom: 50px !important;
  }
  .p-t-md-50 {
    padding-top: 50px !important;
  }
  .p-r-md-50 {
    padding-right: 50px !important;
  }
  .p-l-md-50 {
    padding-left: 50px !important;
  }
  .p-b-md-50 {
    padding-bottom: 50px !important;
  }
  .m-t-md-55 {
    margin-top: 55px !important;
  }
  .m-r-md-55 {
    margin-right: 55px !important;
  }
  .m-l-md-55 {
    margin-left: 55px !important;
  }
  .m-b-md-55 {
    margin-bottom: 55px !important;
  }
  .p-t-md-55 {
    padding-top: 55px !important;
  }
  .p-r-md-55 {
    padding-right: 55px !important;
  }
  .p-l-md-55 {
    padding-left: 55px !important;
  }
  .p-b-md-55 {
    padding-bottom: 55px !important;
  }
  .m-t-md-60 {
    margin-top: 60px !important;
  }
  .m-r-md-60 {
    margin-right: 60px !important;
  }
  .m-l-md-60 {
    margin-left: 60px !important;
  }
  .m-b-md-60 {
    margin-bottom: 60px !important;
  }
  .p-t-md-60 {
    padding-top: 60px !important;
  }
  .p-r-md-60 {
    padding-right: 60px !important;
  }
  .p-l-md-60 {
    padding-left: 60px !important;
  }
  .p-b-md-60 {
    padding-bottom: 60px !important;
  }
  .m-t-md-65 {
    margin-top: 65px !important;
  }
  .m-r-md-65 {
    margin-right: 65px !important;
  }
  .m-l-md-65 {
    margin-left: 65px !important;
  }
  .m-b-md-65 {
    margin-bottom: 65px !important;
  }
  .p-t-md-65 {
    padding-top: 65px !important;
  }
  .p-r-md-65 {
    padding-right: 65px !important;
  }
  .p-l-md-65 {
    padding-left: 65px !important;
  }
  .p-b-md-65 {
    padding-bottom: 65px !important;
  }
  .m-t-md-70 {
    margin-top: 70px !important;
  }
  .m-r-md-70 {
    margin-right: 70px !important;
  }
  .m-l-md-70 {
    margin-left: 70px !important;
  }
  .m-b-md-70 {
    margin-bottom: 70px !important;
  }
  .p-t-md-70 {
    padding-top: 70px !important;
  }
  .p-r-md-70 {
    padding-right: 70px !important;
  }
  .p-l-md-70 {
    padding-left: 70px !important;
  }
  .p-b-md-70 {
    padding-bottom: 70px !important;
  }
  .m-t-md-75 {
    margin-top: 75px !important;
  }
  .m-r-md-75 {
    margin-right: 75px !important;
  }
  .m-l-md-75 {
    margin-left: 75px !important;
  }
  .m-b-md-75 {
    margin-bottom: 75px !important;
  }
  .p-t-md-75 {
    padding-top: 75px !important;
  }
  .p-r-md-75 {
    padding-right: 75px !important;
  }
  .p-l-md-75 {
    padding-left: 75px !important;
  }
  .p-b-md-75 {
    padding-bottom: 75px !important;
  }
  .m-t-md-80 {
    margin-top: 80px !important;
  }
  .m-r-md-80 {
    margin-right: 80px !important;
  }
  .m-l-md-80 {
    margin-left: 80px !important;
  }
  .m-b-md-80 {
    margin-bottom: 80px !important;
  }
  .p-t-md-80 {
    padding-top: 80px !important;
  }
  .p-r-md-80 {
    padding-right: 80px !important;
  }
  .p-l-md-80 {
    padding-left: 80px !important;
  }
  .p-b-md-80 {
    padding-bottom: 80px !important;
  }
  .m-t-md-85 {
    margin-top: 85px !important;
  }
  .m-r-md-85 {
    margin-right: 85px !important;
  }
  .m-l-md-85 {
    margin-left: 85px !important;
  }
  .m-b-md-85 {
    margin-bottom: 85px !important;
  }
  .p-t-md-85 {
    padding-top: 85px !important;
  }
  .p-r-md-85 {
    padding-right: 85px !important;
  }
  .p-l-md-85 {
    padding-left: 85px !important;
  }
  .p-b-md-85 {
    padding-bottom: 85px !important;
  }
  .m-t-md-90 {
    margin-top: 90px !important;
  }
  .m-r-md-90 {
    margin-right: 90px !important;
  }
  .m-l-md-90 {
    margin-left: 90px !important;
  }
  .m-b-md-90 {
    margin-bottom: 90px !important;
  }
  .p-t-md-90 {
    padding-top: 90px !important;
  }
  .p-r-md-90 {
    padding-right: 90px !important;
  }
  .p-l-md-90 {
    padding-left: 90px !important;
  }
  .p-b-md-90 {
    padding-bottom: 90px !important;
  }
  .m-t-md-95 {
    margin-top: 95px !important;
  }
  .m-r-md-95 {
    margin-right: 95px !important;
  }
  .m-l-md-95 {
    margin-left: 95px !important;
  }
  .m-b-md-95 {
    margin-bottom: 95px !important;
  }
  .p-t-md-95 {
    padding-top: 95px !important;
  }
  .p-r-md-95 {
    padding-right: 95px !important;
  }
  .p-l-md-95 {
    padding-left: 95px !important;
  }
  .p-b-md-95 {
    padding-bottom: 95px !important;
  }
  .m-t-md-100 {
    margin-top: 100px !important;
  }
  .m-r-md-100 {
    margin-right: 100px !important;
  }
  .m-l-md-100 {
    margin-left: 100px !important;
  }
  .m-b-md-100 {
    margin-bottom: 100px !important;
  }
  .p-t-md-100 {
    padding-top: 100px !important;
  }
  .p-r-md-100 {
    padding-right: 100px !important;
  }
  .p-l-md-100 {
    padding-left: 100px !important;
  }
  .p-b-md-100 {
    padding-bottom: 100px !important;
  }
  .m-t-md-105 {
    margin-top: 105px !important;
  }
  .m-r-md-105 {
    margin-right: 105px !important;
  }
  .m-l-md-105 {
    margin-left: 105px !important;
  }
  .m-b-md-105 {
    margin-bottom: 105px !important;
  }
  .p-t-md-105 {
    padding-top: 105px !important;
  }
  .p-r-md-105 {
    padding-right: 105px !important;
  }
  .p-l-md-105 {
    padding-left: 105px !important;
  }
  .p-b-md-105 {
    padding-bottom: 105px !important;
  }
  .m-t-md-110 {
    margin-top: 110px !important;
  }
  .m-r-md-110 {
    margin-right: 110px !important;
  }
  .m-l-md-110 {
    margin-left: 110px !important;
  }
  .m-b-md-110 {
    margin-bottom: 110px !important;
  }
  .p-t-md-110 {
    padding-top: 110px !important;
  }
  .p-r-md-110 {
    padding-right: 110px !important;
  }
  .p-l-md-110 {
    padding-left: 110px !important;
  }
  .p-b-md-110 {
    padding-bottom: 110px !important;
  }
  .m-t-md-115 {
    margin-top: 115px !important;
  }
  .m-r-md-115 {
    margin-right: 115px !important;
  }
  .m-l-md-115 {
    margin-left: 115px !important;
  }
  .m-b-md-115 {
    margin-bottom: 115px !important;
  }
  .p-t-md-115 {
    padding-top: 115px !important;
  }
  .p-r-md-115 {
    padding-right: 115px !important;
  }
  .p-l-md-115 {
    padding-left: 115px !important;
  }
  .p-b-md-115 {
    padding-bottom: 115px !important;
  }
  .m-t-md-120 {
    margin-top: 120px !important;
  }
  .m-r-md-120 {
    margin-right: 120px !important;
  }
  .m-l-md-120 {
    margin-left: 120px !important;
  }
  .m-b-md-120 {
    margin-bottom: 120px !important;
  }
  .p-t-md-120 {
    padding-top: 120px !important;
  }
  .p-r-md-120 {
    padding-right: 120px !important;
  }
  .p-l-md-120 {
    padding-left: 120px !important;
  }
  .p-b-md-120 {
    padding-bottom: 120px !important;
  }
  .m-t-md-125 {
    margin-top: 125px !important;
  }
  .m-r-md-125 {
    margin-right: 125px !important;
  }
  .m-l-md-125 {
    margin-left: 125px !important;
  }
  .m-b-md-125 {
    margin-bottom: 125px !important;
  }
  .p-t-md-125 {
    padding-top: 125px !important;
  }
  .p-r-md-125 {
    padding-right: 125px !important;
  }
  .p-l-md-125 {
    padding-left: 125px !important;
  }
  .p-b-md-125 {
    padding-bottom: 125px !important;
  }
  .m-t-md-130 {
    margin-top: 130px !important;
  }
  .m-r-md-130 {
    margin-right: 130px !important;
  }
  .m-l-md-130 {
    margin-left: 130px !important;
  }
  .m-b-md-130 {
    margin-bottom: 130px !important;
  }
  .p-t-md-130 {
    padding-top: 130px !important;
  }
  .p-r-md-130 {
    padding-right: 130px !important;
  }
  .p-l-md-130 {
    padding-left: 130px !important;
  }
  .p-b-md-130 {
    padding-bottom: 130px !important;
  }
  .m-t-md-135 {
    margin-top: 135px !important;
  }
  .m-r-md-135 {
    margin-right: 135px !important;
  }
  .m-l-md-135 {
    margin-left: 135px !important;
  }
  .m-b-md-135 {
    margin-bottom: 135px !important;
  }
  .p-t-md-135 {
    padding-top: 135px !important;
  }
  .p-r-md-135 {
    padding-right: 135px !important;
  }
  .p-l-md-135 {
    padding-left: 135px !important;
  }
  .p-b-md-135 {
    padding-bottom: 135px !important;
  }
  .m-t-md-140 {
    margin-top: 140px !important;
  }
  .m-r-md-140 {
    margin-right: 140px !important;
  }
  .m-l-md-140 {
    margin-left: 140px !important;
  }
  .m-b-md-140 {
    margin-bottom: 140px !important;
  }
  .p-t-md-140 {
    padding-top: 140px !important;
  }
  .p-r-md-140 {
    padding-right: 140px !important;
  }
  .p-l-md-140 {
    padding-left: 140px !important;
  }
  .p-b-md-140 {
    padding-bottom: 140px !important;
  }
  .m-t-md-145 {
    margin-top: 145px !important;
  }
  .m-r-md-145 {
    margin-right: 145px !important;
  }
  .m-l-md-145 {
    margin-left: 145px !important;
  }
  .m-b-md-145 {
    margin-bottom: 145px !important;
  }
  .p-t-md-145 {
    padding-top: 145px !important;
  }
  .p-r-md-145 {
    padding-right: 145px !important;
  }
  .p-l-md-145 {
    padding-left: 145px !important;
  }
  .p-b-md-145 {
    padding-bottom: 145px !important;
  }
  .m-t-md-150 {
    margin-top: 150px !important;
  }
  .m-r-md-150 {
    margin-right: 150px !important;
  }
  .m-l-md-150 {
    margin-left: 150px !important;
  }
  .m-b-md-150 {
    margin-bottom: 150px !important;
  }
  .p-t-md-150 {
    padding-top: 150px !important;
  }
  .p-r-md-150 {
    padding-right: 150px !important;
  }
  .p-l-md-150 {
    padding-left: 150px !important;
  }
  .p-b-md-150 {
    padding-bottom: 150px !important;
  }
  .m-t-md-155 {
    margin-top: 155px !important;
  }
  .m-r-md-155 {
    margin-right: 155px !important;
  }
  .m-l-md-155 {
    margin-left: 155px !important;
  }
  .m-b-md-155 {
    margin-bottom: 155px !important;
  }
  .p-t-md-155 {
    padding-top: 155px !important;
  }
  .p-r-md-155 {
    padding-right: 155px !important;
  }
  .p-l-md-155 {
    padding-left: 155px !important;
  }
  .p-b-md-155 {
    padding-bottom: 155px !important;
  }
  .m-t-md-160 {
    margin-top: 160px !important;
  }
  .m-r-md-160 {
    margin-right: 160px !important;
  }
  .m-l-md-160 {
    margin-left: 160px !important;
  }
  .m-b-md-160 {
    margin-bottom: 160px !important;
  }
  .p-t-md-160 {
    padding-top: 160px !important;
  }
  .p-r-md-160 {
    padding-right: 160px !important;
  }
  .p-l-md-160 {
    padding-left: 160px !important;
  }
  .p-b-md-160 {
    padding-bottom: 160px !important;
  }
  .m-t-md-165 {
    margin-top: 165px !important;
  }
  .m-r-md-165 {
    margin-right: 165px !important;
  }
  .m-l-md-165 {
    margin-left: 165px !important;
  }
  .m-b-md-165 {
    margin-bottom: 165px !important;
  }
  .p-t-md-165 {
    padding-top: 165px !important;
  }
  .p-r-md-165 {
    padding-right: 165px !important;
  }
  .p-l-md-165 {
    padding-left: 165px !important;
  }
  .p-b-md-165 {
    padding-bottom: 165px !important;
  }
  .m-t-md-170 {
    margin-top: 170px !important;
  }
  .m-r-md-170 {
    margin-right: 170px !important;
  }
  .m-l-md-170 {
    margin-left: 170px !important;
  }
  .m-b-md-170 {
    margin-bottom: 170px !important;
  }
  .p-t-md-170 {
    padding-top: 170px !important;
  }
  .p-r-md-170 {
    padding-right: 170px !important;
  }
  .p-l-md-170 {
    padding-left: 170px !important;
  }
  .p-b-md-170 {
    padding-bottom: 170px !important;
  }
  .m-t-md-175 {
    margin-top: 175px !important;
  }
  .m-r-md-175 {
    margin-right: 175px !important;
  }
  .m-l-md-175 {
    margin-left: 175px !important;
  }
  .m-b-md-175 {
    margin-bottom: 175px !important;
  }
  .p-t-md-175 {
    padding-top: 175px !important;
  }
  .p-r-md-175 {
    padding-right: 175px !important;
  }
  .p-l-md-175 {
    padding-left: 175px !important;
  }
  .p-b-md-175 {
    padding-bottom: 175px !important;
  }
  .m-t-md-180 {
    margin-top: 180px !important;
  }
  .m-r-md-180 {
    margin-right: 180px !important;
  }
  .m-l-md-180 {
    margin-left: 180px !important;
  }
  .m-b-md-180 {
    margin-bottom: 180px !important;
  }
  .p-t-md-180 {
    padding-top: 180px !important;
  }
  .p-r-md-180 {
    padding-right: 180px !important;
  }
  .p-l-md-180 {
    padding-left: 180px !important;
  }
  .p-b-md-180 {
    padding-bottom: 180px !important;
  }
  .m-t-md-185 {
    margin-top: 185px !important;
  }
  .m-r-md-185 {
    margin-right: 185px !important;
  }
  .m-l-md-185 {
    margin-left: 185px !important;
  }
  .m-b-md-185 {
    margin-bottom: 185px !important;
  }
  .p-t-md-185 {
    padding-top: 185px !important;
  }
  .p-r-md-185 {
    padding-right: 185px !important;
  }
  .p-l-md-185 {
    padding-left: 185px !important;
  }
  .p-b-md-185 {
    padding-bottom: 185px !important;
  }
  .m-t-md-190 {
    margin-top: 190px !important;
  }
  .m-r-md-190 {
    margin-right: 190px !important;
  }
  .m-l-md-190 {
    margin-left: 190px !important;
  }
  .m-b-md-190 {
    margin-bottom: 190px !important;
  }
  .p-t-md-190 {
    padding-top: 190px !important;
  }
  .p-r-md-190 {
    padding-right: 190px !important;
  }
  .p-l-md-190 {
    padding-left: 190px !important;
  }
  .p-b-md-190 {
    padding-bottom: 190px !important;
  }
  .m-t-md-195 {
    margin-top: 195px !important;
  }
  .m-r-md-195 {
    margin-right: 195px !important;
  }
  .m-l-md-195 {
    margin-left: 195px !important;
  }
  .m-b-md-195 {
    margin-bottom: 195px !important;
  }
  .p-t-md-195 {
    padding-top: 195px !important;
  }
  .p-r-md-195 {
    padding-right: 195px !important;
  }
  .p-l-md-195 {
    padding-left: 195px !important;
  }
  .p-b-md-195 {
    padding-bottom: 195px !important;
  }
  .m-t-md-200 {
    margin-top: 200px !important;
  }
  .m-r-md-200 {
    margin-right: 200px !important;
  }
  .m-l-md-200 {
    margin-left: 200px !important;
  }
  .m-b-md-200 {
    margin-bottom: 200px !important;
  }
  .p-t-md-200 {
    padding-top: 200px !important;
  }
  .p-r-md-200 {
    padding-right: 200px !important;
  }
  .p-l-md-200 {
    padding-left: 200px !important;
  }
  .p-b-md-200 {
    padding-bottom: 200px !important;
  }
}
.white {
  color: white;
}
.ci-color-1 {
  color: #b49b6f;
}
.ci-color-2 {
  color: #b49b6f;
}
@font-face {
  font-family: "Open Sans";
  src: url("https://use.typekit.net/af/c1a1f5/00000000000000003b9b43f8/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"),
    url("https://use.typekit.net/af/c1a1f5/00000000000000003b9b43f8/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"),
    url("https://use.typekit.net/af/c1a1f5/00000000000000003b9b43f8/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Open Sans";
  src: url("https://use.typekit.net/af/893834/00000000000000003b9b43fa/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff2"),
    url("https://use.typekit.net/af/893834/00000000000000003b9b43fa/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("woff"),
    url("https://use.typekit.net/af/893834/00000000000000003b9b43fa/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n5&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Open Sans";
  src: url("https://use.typekit.net/af/e385fd/00000000000000003b9b43fc/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff2"),
    url("https://use.typekit.net/af/e385fd/00000000000000003b9b43fc/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("woff"),
    url("https://use.typekit.net/af/e385fd/00000000000000003b9b43fc/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n6&v=3") format("opentype");
  font-display: auto;
  font-style: normal;
  font-weight: 600;
}


@font-face {
  font-family: "Open Sans";
  src: url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&display=swap');
  font-display: auto;
  font-style: normal;
  font-weight: 400;
}


@font-face {
  font-family: "OggRegular";
  src: url("/resources/fonts/OggReg/Ogg-Regular.woff2") format("woff2"), url("/resources/fonts/OggReg/Ogg-Regular.woff") format("woff");
}

@font-face {
  font-family: "OggRegularItalic";
  src: url("/resources/fonts/SilkSerif-Regular/Ogg-RegularItalic.woff2") format("woff2"), url("/resources/fonts/SilkSerif-Regular/Ogg-RegularItalic.woff") format("woff");
}


body {
    font-family: "acumin-pro",sans-serif;
    font-weight: 300;
}

.sweet-sans-pro {
  font-family: "acumin-pro",sans-serif;
  font-weight: 500;
}
.silk-serif {
  font-family: "Silk Serif";
}
h2 > span {
  display: inline-block;
}
/*h2 > span > span:after {
  border-bottom: 1px solid #b49b6f;
  content: "";
  display: block;
  top: -7px;
  position: relative;
  left: -10px;
  width: calc(100% + 20px);
}*/
@media (max-width: 1278px) {
  h2 > span > span:after {
    top: -3px;
    left: -6px;
    width: calc(100% + 12px);
  }
}
h2 .headline span:after {
  top: -17px;
}
@media (max-width: 1278px) {
  h2 .headline span:after {
    top: -3px;
  }
}
.double-outer-diamant span,
.double-outer span {
  display: inline-block;
}
.double-outer-diamant span span:after,
.double-outer span span:after {
  top: -17px;
}
@media (max-width: 1278px) {
  .double-outer-diamant span span:after,
  .double-outer span span:after {
    top: -3px;
  }
}
h3 {
  color: #b49b6f;
  font-family: "acumin-pro",sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
h4 {
  color: #b49b6f;
  font-family: "acumin-pro",sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.25rem;
}
p {
  font-family: "acumin-pro",sans-serif;
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.5625rem;
  margin-bottom: 1.5625rem;
}
@media (max-width: 1278px) {
  p {
    font-size: 0.75rem;
    line-height: 1.375rem;
  }
}
.text-middle p {
  font-size: 1.25rem;
  line-height: 2rem;
  margin-bottom: 1.5625rem;
}
@media (max-width: 1278px) {
  .text-middle p {
    font-size: 0.75rem;
    line-height: 1.375rem;
  }
}
a {
  outline: none;
}
.lh-36 p {
  line-height: 2.25rem;
}
.lh-25 p {
  line-height: 1.5625rem;
}
strong {
  font-family: "acumin-pro",sans-serif;
	font-weight: 600;
}
.svg-headline {
  font-size: 1.25rem;
}
.svg-headline img {
  height: 1.875rem;
  width: 3.125rem;
  position: relative;
  top: -5px;
  margin-right: 0.9375rem;
}

@media (max-width: 1278px) {
.svg-headline img {
  height: 1.5rem;
  width: auto;
}	
.svg-headline {
    font-size: 1rem;
}
}

.svg-headline-2 {
  font-size: 1.25rem;
}
.svg-headline-2 img {
  height: 4.75rem;
}
@media (max-width: 1299px) {
  .svg-headline-2 img {
    height: 2.1875rem;
  }
}
.svg-list {
  margin-top: 0.625rem;
  margin-left: 1.5625rem;
  list-style-type: none;
  font-size: 0.9375rem;
	font-weight: 300;
}
@media (max-width: 1278px) {
  .svg-list {
    font-size: 0.75rem;
  }
}
.svg-list li {
  margin-bottom: 0.9375rem;
}
ul.navbar-nav li.dropdown:hover > ul.dropdown-menu {
  display: block;
}
.navbar {
  background-color: #1a3c3e;
}
.navbar .container {
  justify-content: space-around;
}
.navbar .navbar-brand {
  height: 3rem;
}
.navbar .navbar-brand img {
  height: 3rem;
}
.navbar .navbar-nav {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
.navbar .navbar-nav .nav-item {
  -webkit-flex: 1;
  flex: 1;
  text-align: center;
}
.navbar .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  padding-left: 0rem;
  padding-right: 0rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  font-size: 1.25rem;
  display: inline-block;
  text-decoration: none;
  font-family: "Silk Serif";
  color: white;
}



@media (max-width: 1620px) {
 .navbar .navbar-nav {
  padding-left: 80px;
  padding-right: 80px;
 }
}

@media (max-width: 1520px) {
 .navbar .navbar-nav {
  padding-left: 120px;
  padding-right: 120px;
 }
}


@media (max-width: 1278px) {
  .navbar .navbar-nav .nav-item .nav-link {
    font-size: 1rem;
  }
	.navbar {
    padding: .8rem 1rem;
}
}
.navbar .navbar-nav .nav-item .nav-link.active {
  color: #b49b6f;
}
.navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .navbar-nav .nav-item .nav-link:focus {
  color: #b49b6f;
}
.navbar .navbar-nav .nav-item .nav-link:after {
  display: block;
  content: "";
  border-bottom: solid 1px #b49b6f;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 50% 100%;
}
.navbar .navbar-nav .nav-item .nav-link:hover:after {
  transform: scaleX(1);
}
.navbar .navbar-nav .nav-item .nav-link.active:after {
  transform: scaleX(1);
}
.navbar .navbar-nav .nav-item .logo {
  padding-left: 5rem;
  padding-right: 5rem;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1278px) {
  .navbar .navbar-nav .nav-item .logo {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
.navbar .navbar-nav .nav-item .logo img {
  height: 4.6875rem;
}
.navbar .navbar-nav .nav-item-id-0 .nav-link:hover:after {
  transform: scaleX(0);
}
.navbar .dropdown:hover > .dropdown-menu {
  display: block;
}


.navbar {
  background: url(/resources/images/gallery-background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.mm-wrapper_blocking {
  overflow-y: scroll;
}
#mmenu:not(.mm-menu) {
  display: none;
}
#nav-icon {
  z-index: 1060;
}
.mm-navbar .fa,
.mm-navbar .fas,
.mm-navbar .far,
.mm-navbar .fal,
.mm-navbar .fad,
.mm-navbar .fab {
  display: inline-flex;
}
.navbar-light .navbar-toggler {
  display: block;
}
.navbar-light .navbar-toggler {
  border: 1px solid #b49b6f;
  border-radius: 0;
  border-color: #b49b6f;
  padding-top: 10px;
  padding-bottom: 6px;
  padding-left: 5px;
  padding-right: 5px;
  outline: none;
}
#navbarSupportedContent {
  min-width: 100%;
  min-height: 95vh;
}
#navbarSupportedContent .logo {
  max-width: 150px;
}
@media (max-width: 500px) {
  #navbarSupportedContent .logo {
    max-width: 120px;
  }
}
@media (max-width: 400px) {
  #navbarSupportedContent .logo {
    max-width: 120px;
  }
}
#navbarSupportedContent ul {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
#navbarSupportedContent ul li {
  text-align: center;
  text-transform: uppercase;
  font-size: 1.125rem;
}
#navbarSupportedContent ul li a {
  display: inline-block;
  padding: 0.5rem;
  font-family: "Silk Serif";
}
#navbarSupportedContent ul li a:after {
  display: block;
  content: "";
  border-bottom: solid 1px #b49b6f;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 50% 100%;
}
#navbarSupportedContent ul li a:hover:after {
  transform: scaleX(1);
}
#navbarSupportedContent ul li a.active:after {
  transform: scaleX(1);
}
.nav-container .logo-tm {
  width: 52px;
  max-width: 3.25rem;
  top: 8px;
  position: absolute;
  z-index: 1000;
  left: calc(50% - 26px);
}
.play {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 38px;
  display: block;
  width: 70px;
  height: 22px;
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4yLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyMS45MSAyMi41MSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjEuOTEgMjIuNTE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7fQ0KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojRkZGRkZGO3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Qye2ZpbGw6bm9uZTtzdHJva2U6I0ZGRkZGRjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQoJLnN0M3tmaWxsOm5vbmU7c3Ryb2tlOiNGRkZGRkY7fQ0KPC9zdHlsZT4NCjxnIGlkPSJHcnVwcGVfMzYxNyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE4MDMgLTcwKSI+DQoJPGcgaWQ9IkdydXBwZV83NyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTgwMyA3MCkiPg0KCQk8ZyBpZD0iR3J1cHBlXzc2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIj4NCgkJCTxwYXRoIGlkPSJQZmFkXzI5OSIgY2xhc3M9InN0MCIgZD0iTTEyLjg2LDIyLjUxYy0wLjM4LTAuMTQtMC43My0wLjM2LTEtMC42NmMtMi0xLjg1LTQtMy42OS02LjAxLTUuNTMNCgkJCQljLTAuMTEtMC4xMS0wLjI3LTAuMTctMC40My0wLjE3Yy0xLjU4LDAuMDEtMy4xNiwwLjAxLTQuNzQsMC4wMUMwLjE1LDE2LjE2LDAsMTYuMDEsMCwxNS40N1Y2LjU3YzAtMC41NCwwLjE2LTAuNywwLjcxLTAuNw0KCQkJCWMxLjU5LDAsMy4xOCwwLDQuNzYsMGMwLjE0LDAsMC4yOS0wLjA1LDAuMzktMC4xNWMyLjEyLTEuOCw0LjI0LTMuNTksNi4zNi01LjM4YzAuNDItMC4zNywxLjAyLTAuNDUsMS41Mi0wLjINCgkJCQljMC41NCwwLjIyLDAuODksMC43MywwLjkyLDEuMzFjMC4wMSwwLjEsMCwwLjIxLDAsMC4zMWMwLDYuMy0wLjAxLDEyLjYsMC4wMSwxOC45YzAuMTEsMC44NS0wLjQ1LDEuNjUtMS4yOCwxLjg0TDEyLjg2LDIyLjUxeiINCgkJCQkvPg0KCQkJPHBhdGggaWQ9IlBmYWRfMzAwIiBjbGFzcz0ic3QxIiBkPSJNMTMuNjgsMTEuMjdjMCwzLjE1LDAsNi4zMSwwLDkuNDZjMCwwLjEyLTAuMDEsMC4yMy0wLjAyLDAuMzVjLTAuMDQsMC4yOC0wLjMsMC40Ni0wLjU4LDAuNDINCgkJCQljLTAuMS0wLjAyLTAuMTktMC4wNi0wLjI2LTAuMTNjLTIuMTItMS45NS00LjIzLTMuODktNi4zNS01Ljg0Yy0wLjA3LTAuMDYtMC4xMS0wLjE1LTAuMS0wLjI1YzAtMC42NywwLTEuMzMsMC0yDQoJCQkJYzAuMDMtMC4yNS0wLjEzLTAuNDgtMC4zOC0wLjU0Yy0wLjI1LTAuMDctMC41LDAuMDctMC41OCwwLjMxYzAsMC4wMS0wLjAxLDAuMDItMC4wMSwwLjAzYy0wLjAyLDAuMDktMC4wMywwLjE5LTAuMDMsMC4yOA0KCQkJCWMwLDAuNTQtMC4wMSwxLjA4LDAsMS42M2MwLDAuMTMtMC4wMiwwLjE4LTAuMTYsMC4xOGMtMS4zNS0wLjAxLTIuNzEtMC4wMS00LjA2LDBjLTAuMTIsMC0wLjE2LTAuMDMtMC4xNi0wLjE2DQoJCQkJYzAtMi42NywwLTUuMzMsMC03Ljk5YzAtMC4xMywwLjA0LTAuMTYsMC4xNi0wLjE2YzEuMzUsMCwyLjcxLDAsNC4wNiwwYzAuMTUsMCwwLjE2LDAuMDUsMC4xNiwwLjE4Yy0wLjAxLDAuNTYtMC4wMSwxLjExLDAsMS42Nw0KCQkJCWMwLDAuNDMsMC4yNywwLjY2LDAuNjMsMC41OGMwLjI0LTAuMDcsMC40LTAuMywwLjM3LTAuNTVjMC0wLjY1LDAtMS4zLDAtMS45NUM2LjM1LDYuNjcsNi40MSw2LjU2LDYuNSw2LjQ5DQoJCQkJYzIuMTEtMS43OCw0LjIxLTMuNTYsNi4zMi01LjM0YzAuMTQtMC4xNCwwLjM1LTAuMTcsMC41My0wLjFjMC4xOCwwLjA2LDAuMywwLjIyLDAuMzIsMC40MWMwLjAxLDAuMTEsMC4wMiwwLjIyLDAuMDIsMC4zMw0KCQkJCUMxMy42OCw0Ljk1LDEzLjY4LDguMTEsMTMuNjgsMTEuMjd6Ii8+DQoJCTwvZz4NCgkJPHBhdGggaWQ9IlBmYWRfMzAxIiBjbGFzcz0ic3QyIiBkPSJNMTQuMDUsNy40NWMyLjAyLDAuOCwzLjAxLDMuMSwyLjIxLDUuMTJjLTAuNDEsMS4wNC0xLjI1LDEuODYtMi4zMSwyLjI0Ii8+DQoJPC9nPg0KCTxsaW5lIGlkPSJMaW5pZV83MCIgY2xhc3M9InN0MyIgeDE9IjE4MTkuNTMiIHkxPSI3MC42MiIgeDI9IjE4MjQuNTUiIHkyPSI3NS42NCIvPg0KCTxsaW5lIGlkPSJMaW5pZV83MSIgY2xhc3M9InN0MyIgeDE9IjE4MTkuNTMiIHkxPSI3NS42NCIgeDI9IjE4MjQuNTUiIHkyPSI3MC42MiIvPg0KPC9nPg0KPC9zdmc+DQo)
    no-repeat center center;
  background-size: 100% 100%;
}
.play.active {
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4yLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyMS45MSAyMi41MSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjEuOTEgMjIuNTE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7fQ0KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojRkZGRkZGO3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Qye2ZpbGw6bm9uZTtzdHJva2U6I0ZGRkZGRjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPGcgaWQ9IkdydXBwZV83NyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTgwMyA3MCkiPg0KCTxnIGlkPSJHcnVwcGVfNzYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiPg0KCQk8cGF0aCBpZD0iUGZhZF8yOTkiIGNsYXNzPSJzdDAiIGQ9Ik0tMTc5MC4xNC00Ny40OWMtMC4zOC0wLjE0LTAuNzMtMC4zNi0xLTAuNjZjLTItMS44NS00LTMuNjktNi4wMS01LjUzDQoJCQljLTAuMTEtMC4xMS0wLjI3LTAuMTctMC40My0wLjE3Yy0xLjU4LDAuMDEtMy4xNiwwLjAxLTQuNzQsMC4wMWMtMC41MywwLTAuNjgtMC4xNS0wLjY4LTAuNjl2LTguOWMwLTAuNTQsMC4xNi0wLjcsMC43MS0wLjcNCgkJCWMxLjU5LDAsMy4xOCwwLDQuNzYsMGMwLjE0LDAsMC4yOS0wLjA1LDAuMzktMC4xNWMyLjEyLTEuOCw0LjI0LTMuNTksNi4zNi01LjM4YzAuNDItMC4zNywxLjAyLTAuNDUsMS41Mi0wLjINCgkJCWMwLjU0LDAuMjIsMC44OSwwLjczLDAuOTIsMS4zMWMwLjAxLDAuMSwwLDAuMjEsMCwwLjMxYzAsNi4zLTAuMDEsMTIuNiwwLjAxLDE4LjljMC4xMSwwLjg1LTAuNDUsMS42NS0xLjI4LDEuODRMLTE3OTAuMTQtNDcuNDl6DQoJCQkiLz4NCgkJPHBhdGggaWQ9IlBmYWRfMzAwIiBjbGFzcz0ic3QxIiBkPSJNLTE3ODkuMzItNTguNzNjMCwzLjE1LDAsNi4zMSwwLDkuNDZjMCwwLjEyLTAuMDEsMC4yMy0wLjAyLDAuMzUNCgkJCWMtMC4wNCwwLjI4LTAuMywwLjQ2LTAuNTgsMC40MmMtMC4xLTAuMDItMC4xOS0wLjA2LTAuMjYtMC4xM2MtMi4xMi0xLjk1LTQuMjMtMy44OS02LjM1LTUuODRjLTAuMDctMC4wNi0wLjExLTAuMTUtMC4xLTAuMjUNCgkJCWMwLTAuNjcsMC0xLjMzLDAtMmMwLjAzLTAuMjUtMC4xMy0wLjQ4LTAuMzgtMC41NGMtMC4yNS0wLjA3LTAuNSwwLjA3LTAuNTgsMC4zMWMwLDAuMDEtMC4wMSwwLjAyLTAuMDEsMC4wMw0KCQkJYy0wLjAyLDAuMDktMC4wMywwLjE5LTAuMDMsMC4yOGMwLDAuNTQtMC4wMSwxLjA4LDAsMS42M2MwLDAuMTMtMC4wMiwwLjE4LTAuMTYsMC4xOGMtMS4zNS0wLjAxLTIuNzEtMC4wMS00LjA2LDANCgkJCWMtMC4xMiwwLTAuMTYtMC4wMy0wLjE2LTAuMTZjMC0yLjY3LDAtNS4zMywwLTcuOTljMC0wLjEzLDAuMDQtMC4xNiwwLjE2LTAuMTZjMS4zNSwwLDIuNzEsMCw0LjA2LDBjMC4xNSwwLDAuMTYsMC4wNSwwLjE2LDAuMTgNCgkJCWMtMC4wMSwwLjU2LTAuMDEsMS4xMSwwLDEuNjdjMCwwLjQzLDAuMjcsMC42NiwwLjYzLDAuNThjMC4yNC0wLjA3LDAuNC0wLjMsMC4zNy0wLjU1YzAtMC42NSwwLTEuMywwLTEuOTUNCgkJCWMtMC4wMi0wLjEyLDAuMDQtMC4yMywwLjEzLTAuM2MyLjExLTEuNzgsNC4yMS0zLjU2LDYuMzItNS4zNGMwLjE0LTAuMTQsMC4zNS0wLjE3LDAuNTMtMC4xYzAuMTgsMC4wNiwwLjMsMC4yMiwwLjMyLDAuNDENCgkJCWMwLjAxLDAuMTEsMC4wMiwwLjIyLDAuMDIsMC4zM0MtMTc4OS4zMi02NS4wNS0xNzg5LjMyLTYxLjg5LTE3ODkuMzItNTguNzN6Ii8+DQoJPC9nPg0KCTxwYXRoIGlkPSJQZmFkXzMwMSIgY2xhc3M9InN0MiIgZD0iTS0xNzg4Ljk1LTYyLjU1YzIuMDIsMC44LDMuMDEsMy4xLDIuMjEsNS4xMmMtMC40MSwxLjA0LTEuMjUsMS44Ni0yLjMxLDIuMjQiLz4NCjwvZz4NCjwvc3ZnPg0K)
    no-repeat center center;
  background-size: auto 100%;
}
@media (max-width: 1278px) {
  .play {
    right: auto;
    left: 0;
    top: 23px;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4yLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyMS45MSAyMi41MSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjEuOTEgMjIuNTE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7fQ0KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojRkZGRkZGO3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Qye2ZpbGw6bm9uZTtzdHJva2U6I0ZGRkZGRjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQoJLnN0M3tmaWxsOm5vbmU7c3Ryb2tlOiNGRkZGRkY7fQ0KPC9zdHlsZT4NCjxnIGlkPSJHcnVwcGVfMzYxNyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE4MDMgLTcwKSI+DQoJPGcgaWQ9IkdydXBwZV83NyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTgwMyA3MCkiPg0KCQk8ZyBpZD0iR3J1cHBlXzc2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwIDApIj4NCgkJCTxwYXRoIGlkPSJQZmFkXzI5OSIgY2xhc3M9InN0MCIgZD0iTTEyLjg2LDIyLjUxYy0wLjM4LTAuMTQtMC43My0wLjM2LTEtMC42NmMtMi0xLjg1LTQtMy42OS02LjAxLTUuNTMNCgkJCQljLTAuMTEtMC4xMS0wLjI3LTAuMTctMC40My0wLjE3Yy0xLjU4LDAuMDEtMy4xNiwwLjAxLTQuNzQsMC4wMUMwLjE1LDE2LjE2LDAsMTYuMDEsMCwxNS40N1Y2LjU3YzAtMC41NCwwLjE2LTAuNywwLjcxLTAuNw0KCQkJCWMxLjU5LDAsMy4xOCwwLDQuNzYsMGMwLjE0LDAsMC4yOS0wLjA1LDAuMzktMC4xNWMyLjEyLTEuOCw0LjI0LTMuNTksNi4zNi01LjM4YzAuNDItMC4zNywxLjAyLTAuNDUsMS41Mi0wLjINCgkJCQljMC41NCwwLjIyLDAuODksMC43MywwLjkyLDEuMzFjMC4wMSwwLjEsMCwwLjIxLDAsMC4zMWMwLDYuMy0wLjAxLDEyLjYsMC4wMSwxOC45YzAuMTEsMC44NS0wLjQ1LDEuNjUtMS4yOCwxLjg0TDEyLjg2LDIyLjUxeiINCgkJCQkvPg0KCQkJPHBhdGggaWQ9IlBmYWRfMzAwIiBjbGFzcz0ic3QxIiBkPSJNMTMuNjgsMTEuMjdjMCwzLjE1LDAsNi4zMSwwLDkuNDZjMCwwLjEyLTAuMDEsMC4yMy0wLjAyLDAuMzVjLTAuMDQsMC4yOC0wLjMsMC40Ni0wLjU4LDAuNDINCgkJCQljLTAuMS0wLjAyLTAuMTktMC4wNi0wLjI2LTAuMTNjLTIuMTItMS45NS00LjIzLTMuODktNi4zNS01Ljg0Yy0wLjA3LTAuMDYtMC4xMS0wLjE1LTAuMS0wLjI1YzAtMC42NywwLTEuMzMsMC0yDQoJCQkJYzAuMDMtMC4yNS0wLjEzLTAuNDgtMC4zOC0wLjU0Yy0wLjI1LTAuMDctMC41LDAuMDctMC41OCwwLjMxYzAsMC4wMS0wLjAxLDAuMDItMC4wMSwwLjAzYy0wLjAyLDAuMDktMC4wMywwLjE5LTAuMDMsMC4yOA0KCQkJCWMwLDAuNTQtMC4wMSwxLjA4LDAsMS42M2MwLDAuMTMtMC4wMiwwLjE4LTAuMTYsMC4xOGMtMS4zNS0wLjAxLTIuNzEtMC4wMS00LjA2LDBjLTAuMTIsMC0wLjE2LTAuMDMtMC4xNi0wLjE2DQoJCQkJYzAtMi42NywwLTUuMzMsMC03Ljk5YzAtMC4xMywwLjA0LTAuMTYsMC4xNi0wLjE2YzEuMzUsMCwyLjcxLDAsNC4wNiwwYzAuMTUsMCwwLjE2LDAuMDUsMC4xNiwwLjE4Yy0wLjAxLDAuNTYtMC4wMSwxLjExLDAsMS42Nw0KCQkJCWMwLDAuNDMsMC4yNywwLjY2LDAuNjMsMC41OGMwLjI0LTAuMDcsMC40LTAuMywwLjM3LTAuNTVjMC0wLjY1LDAtMS4zLDAtMS45NUM2LjM1LDYuNjcsNi40MSw2LjU2LDYuNSw2LjQ5DQoJCQkJYzIuMTEtMS43OCw0LjIxLTMuNTYsNi4zMi01LjM0YzAuMTQtMC4xNCwwLjM1LTAuMTcsMC41My0wLjFjMC4xOCwwLjA2LDAuMywwLjIyLDAuMzIsMC40MWMwLjAxLDAuMTEsMC4wMiwwLjIyLDAuMDIsMC4zMw0KCQkJCUMxMy42OCw0Ljk1LDEzLjY4LDguMTEsMTMuNjgsMTEuMjd6Ii8+DQoJCTwvZz4NCgkJPHBhdGggaWQ9IlBmYWRfMzAxIiBjbGFzcz0ic3QyIiBkPSJNMTQuMDUsNy40NWMyLjAyLDAuOCwzLjAxLDMuMSwyLjIxLDUuMTJjLTAuNDEsMS4wNC0xLjI1LDEuODYtMi4zMSwyLjI0Ii8+DQoJPC9nPg0KCTxsaW5lIGlkPSJMaW5pZV83MCIgY2xhc3M9InN0MyIgeDE9IjE4MTkuNTMiIHkxPSI3MC42MiIgeDI9IjE4MjQuNTUiIHkyPSI3NS42NCIvPg0KCTxsaW5lIGlkPSJMaW5pZV83MSIgY2xhc3M9InN0MyIgeDE9IjE4MTkuNTMiIHkxPSI3NS42NCIgeDI9IjE4MjQuNTUiIHkyPSI3MC42MiIvPg0KPC9nPg0KPC9zdmc+DQo)
      no-repeat center center;
    background-size: 100% 100%;
  }
  .play.active {
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyNC4yLjMsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iRWJlbmVfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCAyMS45MSAyMi41MSIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMjEuOTEgMjIuNTE7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOm5vbmU7fQ0KCS5zdDF7ZmlsbDpub25lO3N0cm9rZTojRkZGRkZGO3N0cm9rZS1taXRlcmxpbWl0OjEwO30NCgkuc3Qye2ZpbGw6bm9uZTtzdHJva2U6I0ZGRkZGRjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDt9DQo8L3N0eWxlPg0KPGcgaWQ9IkdydXBwZV83NyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTgwMyA3MCkiPg0KCTxnIGlkPSJHcnVwcGVfNzYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgMCkiPg0KCQk8cGF0aCBpZD0iUGZhZF8yOTkiIGNsYXNzPSJzdDAiIGQ9Ik0tMTc5MC4xNC00Ny40OWMtMC4zOC0wLjE0LTAuNzMtMC4zNi0xLTAuNjZjLTItMS44NS00LTMuNjktNi4wMS01LjUzDQoJCQljLTAuMTEtMC4xMS0wLjI3LTAuMTctMC40My0wLjE3Yy0xLjU4LDAuMDEtMy4xNiwwLjAxLTQuNzQsMC4wMWMtMC41MywwLTAuNjgtMC4xNS0wLjY4LTAuNjl2LTguOWMwLTAuNTQsMC4xNi0wLjcsMC43MS0wLjcNCgkJCWMxLjU5LDAsMy4xOCwwLDQuNzYsMGMwLjE0LDAsMC4yOS0wLjA1LDAuMzktMC4xNWMyLjEyLTEuOCw0LjI0LTMuNTksNi4zNi01LjM4YzAuNDItMC4zNywxLjAyLTAuNDUsMS41Mi0wLjINCgkJCWMwLjU0LDAuMjIsMC44OSwwLjczLDAuOTIsMS4zMWMwLjAxLDAuMSwwLDAuMjEsMCwwLjMxYzAsNi4zLTAuMDEsMTIuNiwwLjAxLDE4LjljMC4xMSwwLjg1LTAuNDUsMS42NS0xLjI4LDEuODRMLTE3OTAuMTQtNDcuNDl6DQoJCQkiLz4NCgkJPHBhdGggaWQ9IlBmYWRfMzAwIiBjbGFzcz0ic3QxIiBkPSJNLTE3ODkuMzItNTguNzNjMCwzLjE1LDAsNi4zMSwwLDkuNDZjMCwwLjEyLTAuMDEsMC4yMy0wLjAyLDAuMzUNCgkJCWMtMC4wNCwwLjI4LTAuMywwLjQ2LTAuNTgsMC40MmMtMC4xLTAuMDItMC4xOS0wLjA2LTAuMjYtMC4xM2MtMi4xMi0xLjk1LTQuMjMtMy44OS02LjM1LTUuODRjLTAuMDctMC4wNi0wLjExLTAuMTUtMC4xLTAuMjUNCgkJCWMwLTAuNjcsMC0xLjMzLDAtMmMwLjAzLTAuMjUtMC4xMy0wLjQ4LTAuMzgtMC41NGMtMC4yNS0wLjA3LTAuNSwwLjA3LTAuNTgsMC4zMWMwLDAuMDEtMC4wMSwwLjAyLTAuMDEsMC4wMw0KCQkJYy0wLjAyLDAuMDktMC4wMywwLjE5LTAuMDMsMC4yOGMwLDAuNTQtMC4wMSwxLjA4LDAsMS42M2MwLDAuMTMtMC4wMiwwLjE4LTAuMTYsMC4xOGMtMS4zNS0wLjAxLTIuNzEtMC4wMS00LjA2LDANCgkJCWMtMC4xMiwwLTAuMTYtMC4wMy0wLjE2LTAuMTZjMC0yLjY3LDAtNS4zMywwLTcuOTljMC0wLjEzLDAuMDQtMC4xNiwwLjE2LTAuMTZjMS4zNSwwLDIuNzEsMCw0LjA2LDBjMC4xNSwwLDAuMTYsMC4wNSwwLjE2LDAuMTgNCgkJCWMtMC4wMSwwLjU2LTAuMDEsMS4xMSwwLDEuNjdjMCwwLjQzLDAuMjcsMC42NiwwLjYzLDAuNThjMC4yNC0wLjA3LDAuNC0wLjMsMC4zNy0wLjU1YzAtMC42NSwwLTEuMywwLTEuOTUNCgkJCWMtMC4wMi0wLjEyLDAuMDQtMC4yMywwLjEzLTAuM2MyLjExLTEuNzgsNC4yMS0zLjU2LDYuMzItNS4zNGMwLjE0LTAuMTQsMC4zNS0wLjE3LDAuNTMtMC4xYzAuMTgsMC4wNiwwLjMsMC4yMiwwLjMyLDAuNDENCgkJCWMwLjAxLDAuMTEsMC4wMiwwLjIyLDAuMDIsMC4zM0MtMTc4OS4zMi02NS4wNS0xNzg5LjMyLTYxLjg5LTE3ODkuMzItNTguNzN6Ii8+DQoJPC9nPg0KCTxwYXRoIGlkPSJQZmFkXzMwMSIgY2xhc3M9InN0MiIgZD0iTS0xNzg4Ljk1LTYyLjU1YzIuMDIsMC44LDMuMDEsMy4xLDIuMjEsNS4xMmMtMC40MSwxLjA0LTEuMjUsMS44Ni0yLjMxLDIuMjQiLz4NCjwvZz4NCjwvc3ZnPg0K)
      no-repeat center center;
    background-size: auto 100%;
  }
}
footer {
  position: relative;
}
footer .backtotop {
  cursor: pointer;
  position: absolute;
  background-image: url("/resources/images/pfeil_back_to_top.svg");
  background-repeat: no-repeat;
  top: -33px;
  width: 120px;
  height: 64px;
  left: 50%;
  margin-left: -57px;
}
footer .backtotop:hover {
  -webkit-animation: action 1s infinite alternate;
  animation: action 1s infinite alternate;
}
footer .footer-container {
  color: #b49b6f;
  padding-left: 80px;
  padding-right: 80px;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media (max-width: 1499px) {
  footer .footer-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  footer .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
footer .footer-container p {
  color: #b49b6f;
  font-size: 0.8125rem;
  margin-bottom: 0;
}
footer .footer-container li {
  color: #b49b6f;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 0.9375rem;
}
footer .footer-container a {
  color: #b49b6f;
  font-size: 0.8125rem;
}
footer .footer-container .logo-3si {
  height: 5rem;
	margin-top: 10px;
}
footer .footer-container .logo-3si-makler {
  height: 4.375rem;
	margin-top:10px;
}
footer .footer-container .logo-riha {
  height: 4.375rem;
  margin-left: 30px;
}
@media (max-width: 1300px) {
  footer .footer-container .logo-3si {
    height: 5rem;
  }
  footer .footer-container .logo-3si-makler {
    height: 4.375rem;
  }
  footer .footer-container .logo-riha {
    height: 4.375rem;
    margin-left: 30px;
  }
}
@media (max-width: 1278px) {
  footer .footer-container li {
    padding-left: 12px;
    padding-right: 12px;
  }
  footer .footer-container li:last-child {
    /*border-left: 1px solid #b49b6f;*/
  }
}
@media (max-width: 767px) {
   footer .footer-container li {
    padding-left: 0px;
    padding-right: 0px;
  }
  footer .footer-container p {
    font-size: 0.75rem;
  }
  footer .footer-container .logo-3si {
    height: 2.5rem;
  }
  footer .footer-container .logo-3si-makler {
    height: 1.6875rem;
  }
  footer .footer-container .logo-riha {
    height: 2.5rem;
    margin-left: 10px;
  }
}
footer .nav-link {
  padding: 0;
}
footer .footer-nav {
  margin-top: 20px;
  
}
footer .footer-nav .navbar-nav {
  flex-direction: unset;
  margin-bottom: 20px;
}
footer .footer-nav p {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  text-align: right;
  font-size: 0.9375rem;
  line-height: 0.9375rem;
}
@media (max-width: 767px) {
  footer .footer-nav p {
    font-size: 0.75rem;
  }
}
footer .footer-nav .nav-item .nav-link {
  font-size: 0.9375rem;
  line-height: 0.9375rem;
}
@media (max-width: 767px) {
  footer .footer-nav .nav-item .nav-link {
    font-size: 0.75rem;
    text-transform: uppercase;
  }
}
@media (max-width: 1278px) {
  footer .footer-nav .nav-item {
    margin-top: 2.8125rem;
  }
}
.matrix-content {
  display: table;
}
@media (min-width: 1279px) {
  .matrix-content {
    min-height: 75vh;
    background-color: white;
    background: url(/resources/images/badge_hintergrund.svg);
    background-size: auto calc(500px);
    background-repeat: no-repeat;
    background-position: center 250px;
  }
  .matrix-content > div {
    min-height: 75vh;
  }
}
.matrix-content-small {
  display: table;
}
@media (min-width: 1279px) {
  .matrix-content-small {
    min-height: 55vh;
    background-color: white;
    background: url(/resources/images/badge_hintergrund.svg);
    background-size: auto calc(500px);
    background-repeat: no-repeat;
    background-position: center 300px;
  }
  .matrix-content-small > div {
    min-height: 55vh;
  }
}
.matrix-gallery {
  display: table;
}
@media (min-width: 1279px) {
  .matrix-gallery {
    min-height: 75vh;
    background: url(/resources/images/badge_gallery.svg);
    background-size: auto calc(550px);
    background-repeat: no-repeat;
    background-position: center center;
  }
  .matrix-gallery > div {
    min-height: 75vh;
  }
}

@media (max-width: 768px) {
  .matrix-gallery {
    min-height: 50vh;
    background: url(/resources/images/badge_gallery.svg);
    background-size: auto calc(550px);
    background-repeat: no-repeat;
    background-position: center center;
  }
  .matrix-gallery > div {
    min-height: 50vh;
  }
}




.double-top {
  display: flex;
  height: 85px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1278px) {
  .double-top {
    height: 50px;
  }
	#family .double-top {
    height: 100px;
  }
}
.double-top h2 {
  /*text-transform: uppercase;*/
  margin: 0;
  background-color: white;
  padding-left: 3rem;
  padding-right: 3rem;
  position: relative;
  z-index: 2;
  color: #b49b6f;
  font-size: 3rem;
  line-height: 3.4rem;
  text-align: center;
  min-width: 36.25rem;
}
@media (max-width: 1278px) {
  .double-top h2 {
    min-width: 9.375rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.65rem;
    line-height: 1.8rem;
  }
}
.double-top::after {
  content: "";
  width: 100%;
  border-bottom: 1px solid #b49b6f;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}
@media (min-width: 1279px) {
  .double-top::before {
    content: "";
    position: absolute;
    right: 12%;
    top: 10px;
    z-index: 2;
    background-image: url(/resources/images/badge_allgemein.svg);
    background-repeat: no-repeat;
    background-color: white;
    background-position: center;
    width: 160px;
    height: 70px;
  }
  .double-top.double-top-right::before {
    right: 12%;
  }
  .double-top.double-top-left::before {
    left: 12%;
  }
}
.bg-black p,
.bg-black a {
  color: #b49b6f;
}
.bg-black .double-top::before {
  background-color: #1a3c3e;
}
.double-outer {
  border: 1px solid #b49b6f;
  margin-left: 80px;
  margin-right: 80px;
}
@media (max-width: 1278px) {
  .double-outer {
    border: none;
    margin-left: 0;
    margin-right: 0;
  }
}
.double-outer .headline {
  display: flex;
  height: 85px;
  justify-content: center;
  align-items: center;
  margin-top: -45px;
  position: absolute;
  margin-left: 0;
  margin-right: 0;
  text-align: center;
  left: 0;
  right: 0;
}
.double-outer .headline h2 {
  text-transform: uppercase;
  margin: 0;
  background-color: white;
  padding-left: 3rem;
  padding-right: 3rem;
  position: relative;
  z-index: 2;
  color: #b49b6f;
  font-size: 2.1875rem;
  line-height: 3.75rem;
}
@media (max-width: 1278px) {
  .double-outer .headline h2 {
    min-width: 9.375rem;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 1.25rem;
    line-height: 1.375rem;
  }
}
@media (max-width: 1278px) {
  .double-outer .headline h2::after {
    content: "";
    width: 100%;
    border-bottom: 4px double #b49b6f;
    position: absolute;
    left: 0;
    top: 50%;
    z-index: 1;
  }
}
@media (min-width: 1279px) {
  .double-outer-diamant::before {
    content: "";
    position: absolute;
    top: calc(50% - 90px);
    z-index: 2;
    background-image: url(/resources/images/badge_allgemein.svg);
    width: 70px;
    height: 180px;
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center;
  }
  .double-outer-diamant.double-outer-diamant-right::before {
    right: -38px;
  }
  .double-outer-diamant.double-outer-diamant-left::before {
    left: -38px;
  }
}




.bg-white {
  background: white;
}
.bg-black {
  background-color: #1a3c3e;
}
.bg-black .double-outer .headline h2,
.bg-black .double-top .headline h2 {
  background-color: #1a3c3e;
}
.bg-black .double-outer h2,
.bg-black .double-top h2 {
  background-color: #1a3c3e;
}
.list-special {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0.9375rem;
  text-align: center;
  font-size: 1.125rem;
	font-family: "acumin-pro-wide",sans-serif;
	font-weight: 400;
}
@media (max-width: 1278px) {
  .list-special {
    font-size: 0.75rem;
  }
}
.list-special li {
  min-height: 53px;
  line-height: 22px;
  text-transform: uppercase;
}
@media (max-width: 1278px) {
  .list-special li {
    font-size: 0.75rem;
    min-height: 26px;
    line-height: 16px;
  }
}
@media (min-width: 1279px) {
  .list-special li:after {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    background: #1a3c3e;
    position: relative;
    top: 0px;
    margin: 0 auto;
    /*transform: rotate(45deg);*/
    margin-top: 12px;
    margin-bottom: 12px;
	border-radius: 3.5px;
  }
  .list-special li:last-child:after {
    display: none;
  }
}

@media (max-width: 1278px) {
  .list-special li:after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    background: #1a3c3e;
    position: relative;
    top: 0px;
    margin: 0 auto;
    /*transform: rotate(45deg);*/
    margin-top: 8px;
    margin-bottom: 8px;
	border-radius: 3.5px;
  }
  .list-special li:last-child:after {
    display: none;
  }
}





  .matrix-gallery-2 {
    min-height: 75vh;
    background: url(/resources/images/gallery-background.jpg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
  }
  .matrix-gallery > div {
    min-height: 75vh;
  }
  
  @media (max-width: 768px) {
  .matrix-gallery-2 {
    min-height: 50vh;
  }
  .matrix-gallery > div {
    min-height: 50vh;
  }
	 .matrix-gallery-2 {
    min-height: 75vh;
	background: none;
    background-color: #1a3c3e;
  }
}
  
  
  .matrix-gallery-2 .double-outer h2, .matrix-gallery-2 .double-top h2 {
    background-color: #173537 !important; 
  }
  
   .matrix-gallery-2 .btn-floating {
    background-color: transparent !important;
   }
  




.list-append p {
  margin-top: 3.75rem;
  text-transform: uppercase;
  text-align: center;
  font-family: "acumin-pro",sans-serif;
  /*font-weight: 400;*/
  line-height: 45px;
  opacity: 0.6;
  font-weight: 100;
}

@media (max-width: 1278px) {
  .list-append p {
    margin-top: 1.375rem;
    font-size: 0.75rem;
    line-height: 1.375rem;
  }
}
.welcome p {
  font-size: 1.125rem;
  line-height: 2.25rem;
}
@media (max-width: 1278px) {
  .welcome p {
    font-size: 0.85rem;
    line-height: 1.375rem;
  }
}
.logo-masterpiece img {
  width: 24.375rem;
}
.diamant-50 img:not(.img-fluid) {
  height: 50px;
}
.diamant-90 img:not(.img-fluid) {
  height: 90px;
}
.diamant-100 img:not(.img-fluid) {
  height: 100px;
}
.diamant-230 img:not(.img-fluid) {
  height: 230px;
}
@media (max-width: 1278px) {
  .diamant-50 img:not(.img-fluid) {
    height: 35px;
  }
  .diamant-90 img:not(.img-fluid) {
    height: 45px;
  }
  .diamant-100 img:not(.img-fluid) {
    height: 55px;
  }
  .diamant-230 img:not(.img-fluid) {
    height: 115px;
  }
}
.gallery-slider,
.wohnen-slider {
  max-width: calc(100vw - 174px - 145px);
  margin-right: -30px;
  margin-left: 80px;
}
@media (max-width: 1299px) {
  .gallery-slider,
  .wohnen-slider {
    margin-left: 15px;
    margin-right: 0px;
    max-width: calc(100vw - 15px);
  }
}
.gallery-slider .slick-slide,
.wohnen-slider .slick-slide {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}
.gallery-slider .slick-slide:active,
.wohnen-slider .slick-slide:active,
.gallery-slider .slick-slide:hover,
.wohnen-slider .slick-slide:hover,
.gallery-slider .slick-slide:focus,
.wohnen-slider .slick-slide:focus {
  outline: none;
}
.wohnen-slider {
  max-width: calc(100vw - 200px);
  margin-right: 0;
  margin-left: 77px;
}
@media (max-width: 767px) {
  .wohnen-slider {
    max-width: calc(100vw - 80px);
    margin-left: 15px;
  }
}
.residenz-nav .garten,
.residenz-nav .residenzen,
.residenz-nav .penthouse {
  color: #b49b6f;
  text-transform: uppercase;
  font-size: 25px;
  font-family: "acumin-pro",sans-serif;
  height: 73px;
}
@media (max-width: 1299px) {
  .residenz-nav .garten,
  .residenz-nav .residenzen,
  .residenz-nav .penthouse {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  .residenz-nav .garten,
  .residenz-nav .residenzen,
  .residenz-nav .penthouse {
    font-size: 12px;
  }
}
.residenz-nav .residenzen,
.residenz-nav .penthouse {
  margin-top: 20px;
}
.next-page-link .text-next-page {
  font-size: 1.0625rem;
  font-family: "acumin-pro",sans-serif;
  color: #b49b6f;
  text-transform: uppercase;
}
.next-page-link .text-next-page:after {
  display: block;
  content: "";
  border-bottom: solid 1px #b49b6f;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
  transform-origin: 50% 100%;
}
.next-page-link .text-next-page:hover:after {
  transform: scaleX(1);
}
.next-page-link .text-next-page.active:after {
  transform: scaleX(1);
}
.next-page-link .btn-next-page {
  height: 2.8125rem;
  width: 2.8125rem;
  background-image: url("/resources/images/next-page.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  display: inline-flex;
  transform: scale(1);
  transition: transform 250ms ease-in-out;
}
.next-page-link:hover {
  text-decoration: none;
}
.next-page-link:hover .btn-next-page {
  transform: scale(1.15);
}
.residenzen-slider-item {
}
a.gallery-item img {
  margin-bottom: 1rem;
  cursor: pointer;
}
a.gallery-item .gallery-caption {
  text-transform: uppercase;
}
a.gallery-item:hover {
  text-decoration: none;
  cursor: default;
}
.carousel {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
.btn-floating.btn-gallery-prev {
  position: absolute;
  left: -95px;
  top: 2%;
  height: 5.5rem;
  width: 5.5rem;
  z-index: 10;
  background-image: url("/resources/images/previous.svg");
  background-size: 85%;
  background-repeat: no-repeat;
  top: calc(50% - 90px);
  z-index: 2;
  height: 180px;
  background-color: #1a3c3e;
  background-position: center;
}
.btn-floating.btn-gallery-prev:hover {
  background-image: url("/resources/images/previous.svg");
}
@media (max-width: 1278px) {
  .btn-floating.btn-gallery-prev {
    left: 5%;
    background-color: transparent;
  }
}
@media (max-width: 768px) {
  .btn-floating.btn-gallery-prev {
    left: 5%;
    bottom: auto;
    top: calc(50% - 120px);
    background-size: 70%;
    background-image: url("/resources/images/next-page.svg");
    transform: rotate(180deg);
  }
  .btn-floating.btn-gallery-prev:hover {
  transform: rotate(180deg);
  background-image: url("/resources/images/next-page.svg");
}
}

.btn-floating.btn-gallery-next {
  position: absolute;
  right: -105px;
  bottom: 10%;
  /*height: 5.5rem;*/
  width: 5.5rem;
  /*z-index: 10;*/
  background-image: url("/resources/images/next.svg");
  background-size: 85%;
  background-repeat: no-repeat;    
  top: calc(50% - 90px);
  z-index: 2;
  height: 180px;
  /*background-color: #1a3c3e;*/
  background-position: center;;
  background-color: transparent !important;    
}


.btn-floating.btn-gallery-next:hover {
  background-image: url("/resources/images/next.svg");
	background-color: transparent !important;
}
@media (min-width: 1920px) {
  .btn-floating.btn-gallery-next {
    right: -105px;
  }
}
@media (max-width: 1278px) {
  .btn-floating.btn-gallery-next {
    right: 5%;
    background-color: transparent !important;
  }
}
@media (max-width: 768px) {
  .btn-floating.btn-gallery-next {
    right: 5%;
    top: calc(50% - 120px);
    background-size: 70%;
    background-image: url("/resources/images/next-page.svg");
  }
  .btn-floating.btn-gallery-next:hover {
    background-image: url("/resources/images/next-page.svg");
    background-color: transparent !important;
}
}
    
.btn-floating.btn-residenz-next {
  position: absolute;
  right: -105px;
  bottom: 50%;
  height: 2.5rem;
  width: 2.1875rem;
  z-index: 10;
  background-image: url("/resources/images/residenz-next.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  top: calc(50% - 90px);
  z-index: 2;
  height: 180px;
  background-color: #1a3c3e;
  background-position: center;
}
@media (max-width: 1278px) {
  .btn-floating.btn-residenz-next {
    right: 5%;
    background-color: transparent !important;
  }
}
@media (max-width: 767px) {
  .btn-floating.btn-residenz-next {
    right: 5%;
    bottom: auto;
    top: calc(50% - 120px);
  }
}

.gallery-slider a.btn-floating {
	background-color: transparent !important;
}

.parallax {
  background-size: cover;
}
.haas-logo {
  height: 6.875rem;
  width: 13.75rem;
  background-image: url("/resources/images/architekt_haas.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
}
.residenz-nav a.slider-nav {
  cursor: pointer;
}
.residenz-nav .slick-current a.slider-nav {
  text-decoration: underline;
}
.parallax .caption {
  border: 4px double #b49b6f;
  display: inline-block;
  padding: 1.875rem;
  margin-left: 5.75rem;
  background-color: rgba(26,60,62,0.75);
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .parallax .caption {
    margin-left: 0;
    transform: translateX(-50%);
    left: 50%;
    position: relative;
  }
}
.parallax .caption p {
  color: #b49b6f;
  margin-bottom: 0;
}
.mfp-iframe .caption {
  text-decoration: none;
  margin-top: 10px;
  text-transform: uppercase;
}
.mfp-iframe .caption:hover {
  text-decoration: none;
}
.to-properties {
  background: url(/resources/images/zu_den_wohnungen.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  height: 215px;
  width: 215px;
  z-index: 1000;
  right: 5%;
  top: 15%;
}

.to-properties-en {
  background: url(/resources/images/view-the-apartments.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  height: 215px;
  width: 215px;
  z-index: 1000;
  right: 5%;
  top: 15%;
}

.to-properties:hover {
  background: url(/resources/images/zu_den_wohnungen_hover.svg);
}

.to-properties-en:hover {
  background: url(/resources/images/view-the-apartments-hover.svg);
}

@media (max-width: 1299px) {
  .to-properties {
    background: url(/resources/images/zu_den_wohnungen.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 120px;
    width: 120px;
  }
	.to-properties-en {
    background: url(/resources/images/view-the-apartments-hover.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    height: 120px;
    width: 120px;
  }
}
.to-properties a, .to-properties-en a {
  position: relative;
  display: block;
  width: 215px;
  height: 215px;
}
@media (max-width: 1299px) {
  .to-properties a, .to-properties-en a {
    height: 120px;
    width: 120px;
  }
}
@media (max-width: 1278px) {
  .img-fluid {
    margin-bottom: 0.625rem;
  }
}
.contact-img {
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contact-img {
    width: 300px;
  }
}
.infowindow-wrap {
  position: absolute;
}
.infowindow {
/*   right: 80px; */
/*   position: relative; */
/*   top: 20%; */
  min-height: 18px;
  min-width: 225px;
  display: block;
  border: 1px solid #b49b6f;
  font-size: 14px;
  position: absolute;
}
.infowindow .infowindow-inner {
    
  background-color: #ffffff;
  margin: 1px;
  line-height: 18px;
  padding: 0 10px 4px;
  color: #b49b6f;
}
@media (max-width: 1299px) {
  .infowindow .infowindow-inner {
    margin: 1px;
    line-height: 21px;
  }
}
@media (max-width: 1299px) {
  .infowindow {
    font-size: 13px;
    min-width: 150px;
  }
}



.infowindow-wrap {
  position: absolute;
}
.infowindow-2 {
/*   right: 80px; */
/*   position: relative; */
/*   top: 20%; */
  min-height: 18px;
  min-width: 225px;
  display: block;
  border: 1px solid #b49b6f;
  font-size: 14px;
  position: absolute;
}
.infowindow-2 .infowindow-inner-2 {
    
  background-color: #ffffff;
  margin: 1px;
  line-height: 18px;
  padding: 0 10px 4px;
  color: #b49b6f;
}
@media (max-width: 1299px) {
  .infowindow-2 .infowindow-inner-2 {
    margin: 1px;
    line-height: 21px;
  }
}
@media (max-width: 1299px) {
  .infowindow-2 {
    font-size: 13px;
    min-width: 150px;
  }
}


.infowindow-location, .infowindow-location-mobile {
  position: absolute;
  height: 50px;
  display: block;
  text-transform: uppercase;
  border: 1px solid #b49b6f;
}
.infowindow-location .infowindow-location-inner, .infowindow-location-mobile .infowindow-location-mobile-inner  {
  background-color: white;
  margin: 3px;
  line-height: 43px;
  padding: 0 10px;
}
@media (max-width: 1299px) {
  .infowindow-location .infowindow-location-inner, .infowindow-location-mobile .infowindow-location-mobile-inner {
    margin: 1px;
    line-height: 21px;
  }
}
@media (max-width: 1299px) {
  .infowindow-location, .infowindow-location-mobile {
    font-size: 0.5625rem;
    height: 25px;
  }
}
area:hover {
  cursor: pointer;
}
.map-wrapper {
  position: relative;
/*   overflow: hidden; */
}
.timeline {
  align-items: flex-end;
  position: relative;
}
@media (min-width: 1300px) {
  .timeline {
  }
}
@media (min-width: 1300px) {
  .timeline::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 2.5rem;
    background-color: #1a3c3e;
    bottom: -2.5rem;
    left: calc(50% - 1px);
    z-index: 1;
  }
}
.timeline-item {
  margin-bottom: 4rem;
  box-sizing: border-box;
}
.timeline-item p.ci-color-1 {
  color: #b49b6f;
}
.timeline-item p.ci-color-2 {
  color: #b49b6f;
}
.timeline-item::before {
  content: "";
  position: absolute;
  background-color: #b49b6f;
  transform: translate(-50%, -100%);
  left: 50%;
  width: calc(0px + 1px);
  height: calc(0px + 1px);
  z-index: 1;
}
@media (min-width: 1300px) {
  .timeline-item::before {
    top: 50%;
    transform: translate(-50%, -50%);
    left: -1px;
  }
}
.timeline-item .col-lg-3:not(.no-after) {
  display: flex;
  justify-content: center;
}
.timeline-item .col-lg-3:not(.no-after):not(.no-after)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #b49b6f;
  width: 1px;
  height: 100%;
  z-index: 1;
}
@media (min-width: 1300px) {
  .timeline-item .col-lg-3:not(.no-after):not(.no-after)::after {
    bottom: calc(50% - 1px);
    width: 100%;
    height: 1px;
  }
}
@media (min-width: 1300px) {
  .timeline-item {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .timeline-item:nth-child(even) {
    margin-left: calc(50% - 4px);
    border-left: 4px double #b49b6f;
  }
  .timeline-item:nth-child(odd) {
    border-right: 4px double #b49b6f;
  }
  .timeline-item:nth-child(odd)::before {
    right: calc(0px - 1px);
    left: auto;
  }
  .timeline-item:nth-child(odd) div:first-child {
    order: 2;
  }
  .timeline-item:nth-child(odd) div:nth-child(2) {
    order: 1;
  }
}
.timeline-item .headline {
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  display: inline-flex;
  position: relative;
  z-index: 2;
  color: #fff;
  background-color: #e9405d;
  border: 1px solid;
  border-color: #b49b6f;
}
.timeline-item p {
  font-size: 0.9375rem;
  margin: 0;
  border: 0px solid;
  border-color: #b49b6f;
  background-color: #1a3c3e;
  color: white;
}
.timeline-item p:first-child {
  padding: 0 2rem 1.5rem;
}
.timeline-item p:last-child {
  padding: 0 2rem;
}
.timeline-end.diamant-90 img:not(.img-fluid) {
  margin-left: -3px;
}

.slideshow {
  
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

@media (min-width: 1025px) {
  .slideshow {
      height: 85vh;
  }
}

.masterpiece-hero {
  height: 85vh;
}

/* @media (min-width: 1025px) { */
/*   .masterpiece-hero {   */
/*     transition: background 1s linear; */
/*     position: relative; */
/*     animation: zoom 30s infinite; */
/*     background-position: center center; */
/*     animation: zoom 30s infinite alternate; */
/*     -webkit-animation: zoom 30s infinite alternate; */
   
/*   } */
/* } */

@keyframes zoom {
  0% {
    background-size: 110% 110%;
  }
  100% {
    background-size: 100% 100%;
  }
}

.scroll-down {
  height: 50px;
  position: relative;
  display: flex;
  outline: none;
}
.scroll-down .icon {
  content: "";
  background-image: url(/resources/images/pfeil_dropdown.svg);
  background-repeat: no-repeat;
  height: 30px;
  width: 50px;
  -webkit-animation: action 1s infinite alternate;
  animation: action 1s infinite alternate;
  left: calc(50% - 25px);
}
.hero {
  height: calc(100vh - 155px);
  transition: background 1s linear;
  position: relative;
}
.hero-70 {
  height: calc(70vh - 155px);
  transition: background 1s linear;
  position: relative;
}
.hero-80 {
  height: calc(80vh - 155px);
  transition: background 1s linear;
  position: relative;
}
.hero-85 {
  height: calc(85vh - 155px);
  transition: background 1s linear;
  position: relative;
}
#videowrap {
  position: relative;
  min-height: 300px;
}
#videowrap.video-changer {
  position: absolute;
  width: 100%;
}
#video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.landscape #video-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
/*   -webkit-transform: translate(0, -10%); */
/*   -moz-transform: translate(0, -10%); */
/*   -ms-transform: translate(0, -10%); */
/*   -o-transform: translate(0, -10%); */
/*   transform: translate(0, -10%); */
  overflow: visible;
}
.landscape #video-inner-title {
  position: absolute;
  bottom:-45px;
  left: 0;
  right: 0;
/*   -webkit-transform: translate(0, -10%); */
/*   -moz-transform: translate(0, -10%); */
/*   -ms-transform: translate(0, -10%); */
/*   -o-transform: translate(0, -10%); */
/*   transform: translate(0, -10%); */
  overflow: visible;
}
.portrait #video-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
}
.portrait #video-inner-title {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: auto;
}
.landscape video {
  width: 100%;
  height: auto;
}
.portrait video {
  height: 100%;
  width: auto;
}
.start-video {
  position: absolute;
  bottom: 45%;
  left: calc(50% - 150px);
  width: 300px;
  text-align: center;
}
.start-video .btn {
  font-size: 1rem;
  border: 1px solid #b49b6f;
  text-transform: uppercase;
  color: #b49b6f;
  border-radius: 0;
  padding: 4px;
}
.start-video .btn:hover,
.start-video .btn:focus {
  color: #b49b6f;
}
.start-video .btn span {
  background-color: #1a3c3e;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 40px;
  padding-right: 40px;
  transition: transform 250ms ease-in-out;
}
.start-video .btn span:hover,
.start-video .btn span:focus {
  color: #1a3c3e;
  background-color: #b49b6f;
}
.overlay-t-l,
.overlay-t-r,
.overlay-b-l,
.overlay-b-r {
  position: absolute;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .overlay-t-l,
  .overlay-t-r,
  .overlay-b-l,
  .overlay-b-r {
    width: 180px;
    height: 90px;
    background-size: auto 90px;
  }
}
@media (min-width: 768px) {
  .overlay-t-l,
  .overlay-t-r,
  .overlay-b-l,
  .overlay-b-r {
    width: 400px;
    height: 180px;
    background-size: auto 180px;
  }
}
@media (min-width: 1279px) {
  .overlay-t-l,
  .overlay-t-r,
  .overlay-b-l,
  .overlay-b-r {
    width: 450px;
    height: 225px;
    background-size: auto 225px;
  }
}
@media (min-width: 1300px) {
  .overlay-t-l,
  .overlay-t-r,
  .overlay-b-l,
  .overlay-b-r {
    width: 550px;
    height: 225px;
    background-size: auto 225px;
  }
}
.overlay-t-l {
  background-image: url(/resources/images/overlay-t-l.svg);
  background-position: top right;
  top: 0px;
  left: 0;
}
.overlay-t-r {
  background-image: url(/resources/images/overlay-t-r.svg);
  background-position: top left;
  top: 0px;
  right: 0;
}
.overlay-b-l {
  background-image: url(/resources/images/overlay-b-l.svg);
  background-position: bottom right;
  bottom: 0px;
  left: 0;
}
.overlay-b-r {
  background-image: url(/resources/images/overlay-b-r.svg);
  background-position: bottom left;
  bottom: 0px;
  right: 0;
}
.overlay-t-l,
.overlay-t-r {
}
.overlay-b-l,
.overlay-b-r {
}
@-webkit-keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes action {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.slider-container .slick-prev {
  left: 1rem;
}
.slider-container .slick-next {
  right: 1rem;
}
.slider-container div:not(:first-child) {
  display: none;
}
.slider-container.slick-initialized div {
  display: block;
}
.slider-container img {
  width: 100%;
}
.embed-responsive .embed-responsive-item,
.embed-responsive img,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  cursor: pointer;
  -webkit-transition: 0.4s all;
  -moz-transition: 0.4s all;
  transition: 0.4s all;
}
.embed-responsive .embed-responsive-item:hover,
.embed-responsive img:hover,
.embed-responsive iframe:hover,
.embed-responsive embed:hover,
.embed-responsive object:hover,
.embed-responsive video:hover {
  -webkit-filter: brightness(85%);
  filter: brightness(85%);
}
.embed-responsive .play-button {
  width: 6rem;
  height: 4rem;
  background-color: #fff;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 0.5rem;
  cursor: pointer;
}
.embed-responsive .play-button:before {
  content: "";
  border-style: solid;
  border-width: 1rem 0 1rem 1.5rem;
  border-color: transparent transparent transparent white;
}
.embed-responsive .play-button,
.embed-responsive .play-button:before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.jj-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a3c3e;
  z-index: 1000;
  display: none;
}
.show-jj-cookie .jj-cookie {
  display: block;
}
.jj-cookie-inner {
  position: relative;
  padding: 40px;
  max-width: 1920px;
  box-sizing: border-box;
  margin: 0 auto;
}
.jj-cookie-col {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 60%;
}
.jj-cookie-col:nth-child(2) {
  width: 38%;
  text-align: right;
}
.jj-cookie p {
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  color: #fff;
}
.jj-cookie p a {
  color: #fff;
  text-decoration: underline;
}
.jj-cookie button {
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 9px;
  box-sizing: border-box;
  outline: none;
  width: 250px;
  display: inline-block;
  cursor: pointer;
  margin: 0 0 20px 20px;
}
.jj-cookie-decline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.jj-cookie-decline:hover {
  background: #fff;
  color: #b49b6f;
}
.jj-cookie-accept {
  background: #b49b6f;
  color: #fff;
  border: 1px solid #b49b6f;
}
.jj-cookie-accept:hover {
  background: #fff;
  color: #b49b6f;
  border: 1px solid #fff;
}
@media (max-width: 1450px) {
  .jj-cookie-col {
    width: 50%;
  }
  .jj-cookie-col:nth-child(2) {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .jj-cookie-inner {
    padding: 20px;
  }
  .jj-cookie-col {
    width: 100%;
  }
  .jj-cookie-col:nth-child(2) {
    width: 100%;
    margin: 20px auto 0;
    text-align: center;
  }
  .jj-cookie button {
    margin: 0 10px 20px;
  }
}
@media (max-width: 440px) {
  .jj-cookie button {
    margin: 0 0 20px;
    display: block;
    width: 100%;
  }
}
.jj-cookie-info-accept {
  padding: 20px !important;
  background: #1a3c3e;
  border: 1px solid #b49b6f;
  display: none;
}
.jj-cookie-info-decline {
  padding: 20px !important;
  background: #1a3c3e;
  border: 1px solid #b49b6f;
  display: none;
}

.jj-cookie-info-decline a, .jj-cookie-info-decline a {
  color: #b49b6f;
	text-decoration: underline;
	text-transform: uppercase;
	font-weight: 600;
}

.jj-cookie-info-decline a:hover, .jj-cookie-info-decline aHover {
	text-decoration: none;
}

html {
  overflow-y: scroll;
}
.wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
main {
  margin-top: 6.125rem;
  flex: 1 0 auto;
}
@media (max-width: 1278px) {
  main {
    margin-top: 68px;
    overflow-x: hidden;
  }
}




/* ----------------------- JAMJAM ------------------ */
.portrait #video-inner, .portrait #video-inner-title {
    position: absolute;
    top: 0;
    bottom: 0;
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0);
}

@media (min-width: 1500px) {
.wohnen .wohnungsnavigator, .apartments .wohnungsnavigator {
	margin: 0 250px 100px !important;	
}
}

@media (max-width: 1499px) {
.wohnen .wohnungsnavigator, .apartments .wohnungsnavigator {
	margin: 0 150px 100px !important;	
}
}

@media (max-width: 1278px) {
.wohnen .wohnungsnavigator, .apartments .wohnungsnavigator {
	margin: 0 0 100px !important;	
}
}

@media (min-width: 768px) {
.desktop-off {
	display: none;	
}
}

.pt-xs-3, .py-xs-3 {
    padding-top: 3rem !important;
}

.parallax .caption p {
	font-weight: 400;
}

@media (min-width: 1279px) {
.quote {
	font-size: 1.125rem;
	line-height: 2.25rem;
}
}

#family.bg-black {
	padding-bottom: 60px !important;
}

@media (min-width:769px) {
  .wohnen .parallax {
  	background-image: url("/media/3si-the-unique-villen-parallax.jpg"); 
  	background-position: center center; 
  	height: 100vh;
  }
}

@media (max-width: 768px) {
  .wohnen .parallax {
  	background-image: url("/media/3si-the-unique-villen-parallax-mobile.jpg");  	  
  	background-position: center center; 
  	height: 50vh;
  }
}

@media (min-width: 769px) {
  .apartments .parallax {
  	background-image: url("/media/3si-the-unique-apartments-parallax.jpg"); 
  	background-position: center center; 
  	height: 100vh;
  }
}

@media (max-width: 768px) {
  .apartments .parallax {
  	background-image: url("/media/3si-the-unique-apartments-parallax-mobile.jpg");  	  
  	background-position: center center; 
  	height: 50vh;
  }
}



@media (min-width: 769px) {
  .parallax.komfort {
    background-image: url("/media/3si-the-unique-komfort-parallax.jpg");
    background-position: center center; 
    height: 100vh;
  }
  .parallax.lage {
    background-image: url("/media/3si-the-unique-lage-parallax.jpg");
    background-position: center center; 
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .parallax.komfort {
    background-position: center center; 
    background-image: url("/media/3si-the-unique-komfort-parallax-mobile.jpg");
    height: 50vh;
  }
  .parallax.lage {
    background-position: center center; 
    background-image: url("/media/3si-the-unique-lage-parallax-mobile.jpg");
    height: 50vh;
  }
}




@media (max-width: 1278px) {
.timeline-item p {
    font-size: 0.75rem;
    line-height: 1.375rem;
}
.timeline-item p:first-child {
    padding: 0 2rem 1rem;
}
}

@media (max-width: 1700px) {
.parallax .caption {
    background-color: rgba(26, 60, 62, 0.75);
}
}



.contact p {
  color: #b49b6f;
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.contact li {
  color: #b49b6f;
  padding-left: 16px;
  padding-right: 16px;
  line-height: 0.9375rem;
}
.contact a {
  color: #b49b6f;
  font-size: 0.8125rem;
}
.contact .logo-3si {
  height: 3.25rem;
}
.contact .logo-3si-makler {
  height: 4.5rem;
}
.contact .logo-riha {
  height: 3.25rem;
  margin-left: 30px;
}
@media (max-width: 768px) {
  .contact a {
    display: block
   }
   .contact p {
    margin-bottom: 1.25rem;
   }
  .contact .logo-3si {
    height: 3.25rem;
    margin-bottom: 1.25rem;
  }
  .contact .logo-3si-makler {
    height: 4rem;
    margin-bottom: 1.25rem;
  }
  .contact .logo-riha {
    height: 3.25rem;
    margin-left: 0px;
    margin-bottom: 1.25rem;
  }
}


/* ---------------------- Download Button --------------------------- */

#download-folder, #download-plansammlung {
  position: relative;
  left: calc(50% - 150px);
  width: 300px;
  text-align: center;
}

#download-plansammlung {
  margin-top: 50px;
}

#download-folder .folder-btn, #download-plansammlung .folder-btn, .goto3si .folder-btn {
  font-size: 1rem !important;
  border: 1px solid #b49b6f !important;
  text-transform: uppercase !important;
  color: #b49b6f !important;
  border-radius: 0 !important;
  padding: 4px !important;
	min-width: 280px;
	outline:none;
}

.goto3si .folder-btn:hover, .goto3si .folder-btn:focus,
#download-folder .folder-btn:hover,
#download-folder .folder-btn:focus, #download-plansammlung .folder-btn:hover,
#download-folder .folder-btn:focus {
  color: #b49b6f;
}

#download-folder .folder-btn span,#download-plansammlung .folder-btn span, .goto3si .folder-btn span {
  background-color: #fff;
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
	border: 1px solid #b49b6f;
  transition: transform 250ms ease-in-out;
}

.goto3si .folder-btn span {
  background-color:transparent;
}

.goto3si .folder-btn span:hover, .goto3si .folder-btn span:focus,
#download-folder .folder-btn span:hover,
#download-folder .folder-btn span:focus, 
#download-plansammlung .folder-btn span:hover,
#download-plansammlung .folder-btn span:focus {
  color: #1a3c3e;
  background-color: #b49b6f;
}

@media (max-width: 768px) {
  #download-folder .folder-btn, #download-plansammlung .folder-btn, .goto3si .folder-btn {
  font-size: 14px !important;
}
}


.lang-switch {
  position: absolute;
  right: 95px;
  top: 38px;
  font-size: 15px;
  color: #fff;
  font-family: "Silk Serif";
}
.lang-switch a {
  color: #fff;
  font-size: 15px;
  font-family: "Silk Serif";
}

.lang-switch .active {
  font-weight: bold;
}

@media (max-width: 768px) {
   .lang-switch {
    position: relative;
    top: 0;
    right: auto;
    font-size: 15px;
    color: #b49b6f;
    font-family: "Silk Serif";
    text-align: center;
  } 
  .lang-switch a {
    color: #b49b6f;
    font-size: 15px;
    font-family: "Silk Serif";
  }
  

 }

.welcome .m-b-40 {
  margin-bottom: 0px !important;
}

@media (min-width: 768px) {
#page-kontakt .col-sm-4 {
    max-width: 25%;
}
}


.footer-left {
  margin-top: 30px;
}

.social-share {
  padding:0;
}
.social-share li {
  display: inline-block;
  padding: 0 !important;
  border: none !important;
}
  
.social-share li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
}


.social-share li a:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    background: url(/resources/images/social-media/share.svg) no-repeat center center;
    background-size: 100% 100%;
    content: '';
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.social-share li a:hover:after {
    opacity: 1;
}
  
  
.slider-top .slick-dots {
  bottom: 30px;
}
.slider-top.slick-dotted.slick-slider {
  margin:0 ;
}

.slider-top .slick-dots li button:before {
  content: "\e900";
  font-family: icomoon;
  font-size: 20px;
  color: #b49b6f;
  opacity: 1;
}

.slider-top .slick-dots li.slick-active button:before {
  content: "\e901";
  font-family: icomoon;
  font-size: 20px;
  color: #b49b6f;
  opacity: 1;
}


.slider-top{ overflow: hidden; }
.slider-top div.slick-active {
  -webkit-animation: zoom-in-zoom-out 30s ease infinite;
  -moz-animation: zoom-in-zoom-out 30s ease infinite;
  -o-animation: zoom-in-zoom-out 30s ease infinite;
  -ms-animation: zoom-in-zoom-out 30s ease infinite;
  animation: zoom-in-zoom-out 30s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1.08, 1.08);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1.08, 1.08);
  }
}

.row .gallery-slider a.btn-floating {
	background-color: transparent !important;
}


@keyframes myMove {
  from { transform: scale(1.0,1.0); transform-origin: 50% 50%; }
  to { transform: scale(1.05,1.05); transform-origin: 50% 0%; }
}
@-webkit-keyframes myMove {
  from { -webkit-transform: scale(1.0,1.0); -webkit-transform-origin: 50% 50%; }
  to { -webkit-transform: scale(1.05,1.05); -webkit-transform-origin: 50% 0%;  }
}
@-o-keyframes myMove {
  from { -o-transform: scale(1.0,1.0); -o-transform-origin: 50% 50%; }
  to { -o-transform: scale(1.05,1.05); -o-transform-origin: 50% 0%;  }
}
@-moz-keyframes myMove {
  from { -moz-transform: scale(1.0,1.0); -moz-transform-origin: 50% 50%; }
  to { -moz-transform: scale(1.05,1.05); -moz-transform-origin: 50% 0%; }
}
@-ms-keyframes myMove {
  from { -ms-transform: scale(1.0,1.0); -ms-transform-origin: 50% 50%; }
  to { -ms-transform: scale(1.05,1.05); -ms-transform-origin: 50% 0%; }
}



.hero-panel {
  position: relative;
  overflow: hidden;
}

@media (min-width: 1025px) {
  .slideshow {
      height: 85vh;
  }
}


@media (max-width: 1025px) {
  .slideshow {
      height: calc(85vh);
  }
}

@media (min-width: 1025px) {
  .hero-panel #videowrap  {
      height: calc(85vh + 10px) !important;
  }
}


@media (max-width: 1025px) {
  .hero-panel #videowrap  {
      height: calc(85vh + 10px) !important;
  }
}



.hero-panel #videowrap.video-changer {
 top: 0px;
}


.goto3si {
	position:relative;
	margin:0 auto;
	background:#1a3c3e;
	text-align:center;
}

.goto3si .double-top {
	position:relative;
}

.goto3si .double-top:before {
	display:none;
}

.goto3si-inner {
	position:relative;
	margin:0 auto;
	padding:60px 20px;
}

.goto3si-button {
	text-align:center;
}

.goto3si-button a {
	font-size:19px;
	line-height:1.65;
	font-weight:400;
	margin:0 auto;
	padding:5px 30px;
	background:#fff;
	color:#1a3c3e;
	border:1px solid #fff;
	display:inline-block;
}

.goto3si-button a:hover {
	background:#1a3c3e;
	color:#fff;
}

.goto3si h2, .goto3si h3, .goto3si h3 a {
	color:#b49b6f;
}

.goto3si .double-top h2 {
	background:#1a3c3e;
}

.goto3si h4 {
	font-size: 1.125rem;
}

.goto3si h4 a {
	color:#b49b6f;
	border-bottom:1px solid #b49b6f;
	text-decoration:none;
}

.goto3si h4 a:hover {
	color:#fff;
	border-bottom:1px solid #fff;
	text-decoration:none;
}

@media (max-width:1023px) {

.goto3si-button a {
	font-size:17px;
}
.goto3si h4 {
	font-size: 0.755rem;
}

}



.eyecatcher {
    position: absolute;
    top: 75px;
    right: 120px;
    z-index: 10;    
    width: 275px;
    height: 275px;
    background: url(/media/3si-the-unique-eyecatcher.svg) no-repeat;
    -moz-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    -o-transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
}

.eyecatcher a { 
  display: block;
  height: 100%;
  width: 100%;  
}




@media (max-width: 991px) {
    .eyecatcher {
        width:150px;
        height: 150px;
        top: 55px;
        right: 80px;
        
    }
}

@media (max-width: 768px) {
    .eyecatcher {
           width:150px;
        height: 150px;
        top: 20px;
        right: 20px;
        
    }
}
