.slbOverlay, .slbWrapOuter, .slbWrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slbOverlay {
  overflow: hidden;
  z-index: 2000;
  background-color: #000;
  opacity: 0.7;
  animation: slbOverlay 0.5s;
}

.slbWrapOuter {
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2010;
}

.slbWrap {
  position: absolute;
  text-align: center;
}

.slbWrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.slbContentOuter {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0px auto;
  padding: 0 1em;
  box-sizing: border-box;
  z-index: 2020;
  text-align: left;
  max-width: 100%;
}

.slbContentEl .slbContentOuter {
  padding: 5em 1em;
}

.slbContent {
  position: relative;
}

.slbContentEl .slbContent {
  animation: slbEnter 0.3s;
  background-color: #fff;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.4);
}

.slbImageWrap {
  animation: slbEnter 0.3s;
  position: relative;
}

.slbImageWrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5em;
  bottom: 5em;
  display: block;
  z-index: -1;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background-color: #FFF;
}

.slbDirectionNext .slbImageWrap {
  animation: slbEnterNext 0.4s;
}

.slbDirectionPrev .slbImageWrap {
  animation: slbEnterPrev 0.4s;
}

.slbImage {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 5em 0;
  margin: 0 auto;
}

.slbCaption {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 1.4em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.71429em 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.slbCloseBtn, .slbArrow {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
}

.slbCloseBtn::-moz-focus-inner, .slbArrow::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.slbCloseBtn:hover, .slbArrow:hover {
  opacity: 0.5;
}

.slbCloseBtn:active, .slbArrow:active {
  opacity: 0.8;
}

.slbCloseBtn {
  animation: slbEnter 0.3s;
  font-size: 3em;
  width: 1.66667em;
  height: 1.66667em;
  line-height: 1.66667em;
  position: absolute;
  right: -0.33333em;
  top: 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.slbLoading .slbCloseBtn {
  display: none;
}

.slbLoadingText {
  font-size: 1.4em;
  color: #fff;
  color: rgba(255, 255, 255, 0.9);
}

.slbArrows {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
}

.slbLoading .slbArrows {
  display: none;
}

.slbArrow {
  position: absolute;
  top: 50%;
  margin-top: -5em;
  width: 5em;
  height: 10em;
  opacity: 0.7;
  text-indent: -999em;
  overflow: hidden;
}

.slbArrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.8em 0 0 -0.8em;
  border: 0.8em solid transparent;
}

.slbArrow.next {
  right: 0;
}

.slbArrow.next:before {
  border-left-color: #fff;
}

.slbArrow.prev {
  left: 0;
}

.slbArrow.prev:before {
  border-right-color: #fff;
}

.slbIframeCont {
  width: 80em;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  margin: 5em 0;
}

.slbIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background: #000;
}

@keyframes slbOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

@keyframes slbEnter {
  from {
    opacity: 0;
    transform: translate3d(0, -1em, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slbEnterNext {
  from {
    opacity: 0;
    transform: translate3d(4em, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slbEnterPrev {
  from {
    opacity: 0;
    transform: translate3d(-4em, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.glide--rtl {
  direction: rtl;
}

/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important;
  }
  .flex-sm-column {
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    justify-content: center !important;
  }
  .justify-content-sm-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    align-items: center !important;
  }
  .align-items-sm-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-start {
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    align-content: center !important;
  }
  .align-content-sm-between {
    align-content: space-between !important;
  }
  .align-content-sm-around {
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    align-self: auto !important;
  }
  .align-self-sm-start {
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    align-self: center !important;
  }
  .align-self-sm-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}

/**
 * Colors
 */
/**
/* Font weight variables
 */
/**
 * Font family
 */
/**
 * Border radius
 */
/**
 * Scale
 */
/**
 * Translate
 */
/**
 * Skew
 */
/**
 * Rotate
 */
/**
 * Transition
 */
/**
 * REM units
 */
/************************************************************************************
RESET
*************************************************************************************/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header, hgroup, menu, nav, section, menu,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

:focus {
  outline: 0;
}

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

article, aside, figure, footer, header, hgroup, nav, section, img {
  display: block;
}

input[type="radio"] {
  vertical-align: text-bottom;
}

input[type="checkbox"] {
  vertical-align: bottom;
  *vertical-align: baseline;
}

label, input[type=button], input[type=submit], button {
  cursor: pointer;
  overflow: visible;
}

em, i {
  font-weight: inherit;
}

/************************************************************************************
GENERAL
*************************************************************************************/
body {
  font-family: 'DM Sans',sans-serif;
  font-size: 1.1875rem;
  line-height: 1.6em;
  font-weight: 700;
  color: #29275a;
  background: #fff;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body.modal-opened {
  overflow: hidden;
}

.main-wrap {
  overflow: hidden;
  margin-bottom: -7.0625rem;
  padding-bottom: 7.0625rem;
}

/* Box sizing */
*, *:after, *:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

/* Anchors */
a {
  color: #29275a;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* Heading */
h1, .h1 {
  font-family: peachy-keen-jf,sans-serif;
  font-size: 2.75rem;
  line-height: 1.3em;
  font-weight: 400;
  color: #29275a;
  margin: 0 0 1.875rem 0;
}

h1.big, .h1.big {
  font-size: 3.75rem;
  color: #48adf7;
}

h2, .h2 {
  font-family: peachy-keen-jf,sans-serif;
  font-size: 2.75rem;
  line-height: 1.3em;
  font-weight: 400;
  color: #29275a;
  margin: 0 0 0.625rem 0;
}

h2.alt, .h2.alt {
  color: #ea4650;
}

h3, .h3 {
  font-family: peachy-keen-jf,sans-serif;
  font-size: 1.25rem;
  line-height: 1.3em;
  font-weight: 400;
  color: #29275a;
  margin: 0 0 0.625rem 0;
}

h4, .h4 {
  font-family: peachy-keen-jf,sans-serif;
  font-size: 1.5625rem;
  line-height: 1.3em;
  font-weight: 400;
  color: #000;
  margin: 0 0 0.625rem 0;
}

h5, .h5 {
  font-family: peachy-keen-jf,sans-serif;
  font-size: 1.25rem;
  line-height: 1.3em;
  font-weight: 400;
  color: #000;
  margin: 0 0 0.625rem 0;
}

h6, .h6 {
  font-family: peachy-keen-jf,sans-serif;
  font-size: 1.25rem;
  line-height: 1.3em;
  font-weight: 400;
  color: #000;
  margin: 0 0 0.625rem 0;
}

.suphead {
  font-size: 1.0625rem;
  color: #8995a6;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Paragraphs */
p {
  margin: 0 0 20px 0;
}

address, cite {
  font-style: normal;
}

/* Lists */
ul {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
}

ul li {
  padding: 0 0 0 1.25rem;
  margin: 0 0 0.3125rem 0;
}

ul.unstyled li {
  padding: 0;
  background: none;
}

ol {
  list-style: none;
  margin: 0 0 1.25rem 0;
  padding: 0;
  counter-reset: counter;
  margin-left: 0;
}

ol li {
  margin: 0 0 0.625rem 0;
  padding: 0 0 0 20px;
  counter-increment: counter;
  position: relative;
}

ol li:before {
  color: #2285c8;
  content: counter(counter) ". ";
  position: absolute;
  left: 0;
  top: 0;
}

dl {
  margin: 0 0 1.25rem 0;
}

dt {
  font-weight: bold;
}

/* Various */
sup, sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
}

sup {
  bottom: 1ex;
}

sub {
  top: .5ex;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.bold, b, strong {
  font-weight: 600;
}

.italic, i, em {
  font-style: italic;
}

.nowrap, .nobr {
  white-space: nowrap !important;
}

/************************************************************************************
CONTENT
*************************************************************************************/
.content {
  padding: 0;
}

.content.sides {
  position: relative;
}

.content.sides:before {
  content: '';
  position: absolute;
  left: 0;
  top: 650px;
  width: 25%;
  max-width: 299px;
  height: 125%;
  background: url("../img/side-l.png") 0 0 repeat-y;
  background-size: 100% !important;
}

.content.sides:after {
  content: '';
  position: absolute;
  right: 0;
  top: -60px;
  width: 25%;
  max-width: 299px;
  height: 125%;
  background: url("../img/side-r.png") 0 0 repeat-y;
  background-size: 100% !important;
}

.content .block {
  position: relative;
  z-index: 20;
}

/* Block */
.block {
  padding: 5rem 0;
  position: relative;
}

.block.narrow {
  padding: 2.5rem 0;
}

.block.alt {
  background: #000;
}

.block.alpha {
  padding-top: 0;
}

.block.omega {
  padding-bottom: 0;
}

.block.block-map {
  margin-bottom: -118px;
}

.anchor {
  position: absolute;
  left: 0;
  top: 0;
}

/* Various */
.section-head {
  margin-bottom: 1.25rem;
  text-align: center;
}

.section-head h1, .section-head h2, .section-head h3 {
  margin-bottom: 0;
}

.intro {
  max-width: 560px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
}

.intro.wide {
  max-width: 46.875rem;
}

/* Pager */
.pager {
  margin: 1.875rem 0;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.pager ul {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
}

.pager li {
  padding: 0 0.3125rem;
  margin: 2px 0;
  background: none;
}

.pager li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: #29275a;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.pager li a:hover {
  background: #009476;
}

.pager li.active a {
  background: #009476;
  color: #fff;
  text-decoration: none;
}

.pager .prev a {
  position: absolute;
  left: 0;
  top: 2px;
}

.pager .next a {
  position: absolute;
  right: 0;
  top: 2px;
}

.pager .counter {
  display: none;
}

/* Gmap */
.gmap-wrap {
  position: relative;
  margin-top: -112px;
}

.gmap-wrap:before {
  content: '';
  display: block;
  width: 100%;
  height: 113px;
  background: url("../img/gmap-b.svg") center 0 repeat-x;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 20;
}

.gmap-wrap .gmap-content {
  padding-bottom: 113px;
  padding-top: 113px;
}

.gmap-wrap .gmap-content .inner {
  position: relative;
  z-index: 20;
  padding: 50px 0;
  display: inline-block;
}

.gmap-wrap .gmap {
  height: 600px;
  background: #e3e3e3;
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.gmap-wrap .gmap-image {
  background: #e3e3e3;
  z-index: 10;
}

.gmap-wrap .gmap-image img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 60%;
  object-position: 60%;
}

.gmap-wrap img {
  max-width: inherit !important;
}

/*================================= Various Content =================================*/
.last {
  margin-bottom: 0 !important;
}

/* Buttons */
.btn,
.sendbutton {
  font-size: 1.25rem;
  font-family: peachy-keen-jf,sans-serif;
  line-height: 1.3em;
  font-weight: 400;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #0077bb;
  color: #fff;
  padding: 0.75rem 2.5rem;
  text-decoration: none;
  position: relative;
  border: 2px solid #0077bb;
  border-radius: 27px;
  transition: 0.5s all;
}

.btn:hover,
.sendbutton:hover {
  background-color: #000;
  border: 2px solid #000;
}

.btn.line,
.sendbutton.line {
  background: none;
  color: #0077bb;
}

.btn.line:hover,
.sendbutton.line:hover {
  background: #0077bb;
  border-color: #0077bb;
  color: #fff;
}

.btn.alt,
.sendbutton.alt {
  background: #000;
  border: 2px solid #000;
}

.btn.alt:hover,
.sendbutton.alt:hover {
  background: #0077bb;
  border: 2px solid #0077bb;
}

.btn.alt.line,
.sendbutton.alt.line {
  background: none;
  color: #000;
}

.btn.alt.line:hover,
.sendbutton.alt.line:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}

.btn.arr-r:after,
.sendbutton.arr-r:after {
  content: '';
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  display: inline-block;
  padding: 3px;
  margin-left: 5px;
  transform: rotate(-45deg);
}

/* SVG icons */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  fill: currentColor;
}

/* Cookie Notice */
.cookie-notice {
  font-size: 14px;
  position: fixed;
  z-index: 10000;
  bottom: 0;
  width: 100%;
  padding: 10px 15px;
  background: rgba(0, 0, 0, 0.9);
  color: #CCC;
  text-align: center;
}

.cookie-button {
  display: inline-block;
  padding: 2px 10px;
  margin-left: 25px;
  background: #02ad65;
  color: #fff;
  text-align: center;
}

.cookie-button:hover {
  background: #90ca16;
  color: #fff;
}

.cookie-test {
  position: fixed;
  z-index: 10000;
  bottom: 0;
  width: 150px;
  padding: 25px 15px;
  background: rgba(50, 50, 50, 0.95);
  color: #CCC;
  text-align: center;
}

/* FY Apple! */
textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.btn {
  -webkit-appearance: none;
}

/************************************************************************************
ENTRY
*************************************************************************************/
.entry {
  margin: 0 0 2.5rem 0;
}

.entry h2, .entry h3 {
  margin-top: 30px;
}

.entry h2::first-child, .entry h3::first-child {
  margin-top: 0;
}

.entry ul li {
  position: relative;
}

.entry ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 4px;
  height: 4px;
  display: block;
  background: #000;
}

/************************************************************************************
TABLES
*************************************************************************************/
.entry table {
  width: 100%;
  margin: 0 0 1.875rem 0;
}

.entry table th {
  font-weight: normal;
  border-bottom: 1px solid #c9cacb;
  padding: 0.625rem 1.25rem;
  background: #e3e3e3;
  color: #000;
}

.entry table td {
  border-bottom: 1px solid #c9cacb;
  padding: 0.625rem 1.25rem;
}

/************************************************************************************
FORMS
*************************************************************************************/
form.std label {
  font-size: 1.0625rem;
  line-height: 1.3em;
  color: #9f9f9f;
  margin: 0 0 0.625rem 0;
  display: block;
}

form.std input.text {
  font-size: 1.0625rem;
  font-family: peachy-keen-jf,sans-serif;
  line-height: 1.3em;
  color: #000;
  border: 2px solid #e7e7e7;
  padding: 0.3125rem 0.9375rem;
  height: 3.125rem;
  width: 100%;
}

form.std input.text.error {
  background: #fcf4f4;
  border-color: #be1e19;
}

form.std input.text.req {
  background-image: url("../img/req.svg");
  background-position: right center;
  background-repeat: no-repeat;
}

form.std textarea {
  font-size: 1.0625rem;
  font-family: peachy-keen-jf,sans-serif;
  line-height: 1.3em;
  color: #000;
  resize: vertical;
  border: 2px solid #e7e7e7;
  padding: 0.3125rem 0.9375rem;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 150px;
  min-height: 150px;
  max-height: 300px;
}

form.std textarea.req {
  background-image: url("../img/req.svg");
  background-position: right center;
  background-repeat: no-repeat;
}

form.std select {
  font-size: 1.0625rem;
  line-height: 1.3em;
  color: #000;
  width: 100%;
  padding: 0.125rem 0.625rem;
}

form.std option {
  font-size: 1.0625rem;
  line-height: 1.3em;
  padding: 0.125rem 0.625rem;
}

form.std .cell {
  margin-bottom: 1.25rem;
  position: relative;
  text-align: left;
}

form.std .toggle {
  position: relative;
  padding: 0 0 0 1.5625rem;
}

form.std .toggle label {
  display: inline-block;
  vertical-align: top;
  margin: 0;
}

form.std .toggle input {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0.125rem;
}

form.std .radio, form.std .checker {
  position: absolute;
  left: 0;
  top: 0;
}

form.std .checker {
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/checker.svg") 0 0 no-repeat;
  background-color: #fff;
  background-position: 0 -1.4375rem;
  background-size: 1.4375rem;
  transition: 0.5s all;
  border: 2px solid #fff;
  width: 1.625rem;
  height: 1.625rem;
  margin: 0;
  border-radius: 50%;
  cursor: pointer;
}

form.std .checker input {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

form.std .checker.active {
  background-position: 0 0;
  background-color: transparent;
}

form.std .checker.has-error {
  border-color: #be1e19;
}

#form-ajax-content {
  position: relative;
}

#form-ajax-content.loading:after {
  content: '';
  position: absolute;
  z-index: 90;
  left: 50%;
  top: 50%;
  width: 70px;
  height: 70px;
  background: url("../img/spinner.svg") center center no-repeat;
  background-size: cover !important;
  transform: translate(-50%, -50%);
}

#form-ajax-content > .inner {
  opacity: 1;
  transition: 0.3s all;
}

#form-ajax-content.loading > .inner {
  opacity: 0.4;
}

/*================================= Cform =================================*/
.cform legend {
  display: none;
}

.cform label {
  display: none;
}

.cform textarea {
  font-size: 1.0625rem;
  font-family: peachy-keen-jf,sans-serif;
  color: #000;
  background: #fff;
  border: none;
  padding: 10px 15px;
  display: block;
  resize: vertical;
  margin: 0;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 190px;
  min-height: 190px;
  max-height: 300px;
}

.cform input.single {
  font-size: 1.0625rem;
  font-family: peachy-keen-jf,sans-serif;
  color: #000;
  background: #fff;
  padding: 10px 15px;
  border: none;
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.cform input[type="hidden"] {
  display: none;
}

.cform .cf-ol {
  margin: 0 -10px;
  display: flex;
  flex-wrap: wrap;
}

.cform .cf-ol > li {
  margin: 0 0 1.25rem 0;
  flex: 0 0 33.333333%;
  padding: 0 10px;
}

.cform .cf-ol > li:before {
  content: '';
}

.cform .cf-sb {
  float: none;
  margin: 0;
  display: flex;
  justify-content: center;
  width: 100%;
}

.cf_hidden {
  display: none !important;
}

.emailreqtxt, .reqtxt {
  font-weight: 600;
  float: right;
  color: #f00808;
  position: absolute;
  right: 10px;
  top: 15px;
}

/* Form contact */
.form-contact {
  border: 3px solid #eff1f3;
  padding: 35px;
  max-width: 824px;
  margin: 0 auto;
}

.form-contact .cform {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}

.form-contact .cf-fs1 {
  max-width: 33.33333%;
  flex: 0 0 33.33333%;
}

.form-contact .cf-fs2 {
  max-width: 66.66666%;
  flex: 0 0 66.66666%;
  padding-left: 20px;
}

/* Mesages & errors */
.cf_info.waiting {
  background: #f6e4cd;
  border: 1px solid #efc389;
  color: #ee9a2e;
  margin: 0 0 1.875rem 0;
}

.cf_info.failure {
  background: #fae7ea;
  border: 1px solid #f1c7d2;
  color: #e5547a;
  padding: 0.9375rem 1.25rem;
  margin: 0 0 1.875rem 0;
}

.cf_info.success {
  background: #ebf5bc;
  border: 1px solid #c7d198;
  color: #98b028;
  margin: 0 0 1.875rem 0;
}

.cf_info span {
  font-weight: 600;
  padding: 0.9375rem 1.25rem;
  display: block;
}

.cf_error,
.single.cf_error {
  border-color: #ff637d;
}

.cf_li_err .single {
  border-color: #ff637d !important;
}

.cf_li_err textarea {
  border-color: #ff637d !important;
}

.cf_li_err label {
  color: #ee4d6c !important;
}

.cf_li_err label a {
  color: #ee4d6c !important;
}

.cf_error,
.single.cf_error {
  border-color: #ff637d;
}

.cf_li_err .single {
  border-color: #ff637d !important;
}

.cf_li_err textarea {
  border-color: #ff637d !important;
}

.cf_li_err label {
  color: #ee4d6c !important;
}

.cf_li_err label a {
  color: #ee4d6c !important;
}

/*================================= Contact form 7 =================================*/
/* Mesages & errors */
body .wpcf7 div.wpcf7-response-output {
  padding: 0;
  background: #ebf5bc;
  border: 1px solid #f1c7d2;
  color: #46b450;
  padding: 0.9375rem 1.25rem;
  margin: 0 0 1.875rem 0;
}

body .wpcf7 form.invalid div.wpcf7-response-output,
body .wpcf7 form.unaccepted div.wpcf7-response-output {
  border: 1px solid #f1c7d2;
  background: #fae7ea;
  color: #e5547a;
}

body span.wpcf7-not-valid-tip {
  font-size: 13px;
}

body span.wpcf7-list-item {
  margin: 0;
}

body .wpcf7-form-control-wrap {
  position: static;
}

/************************************************************************************
TABS
*************************************************************************************/
.tabs {
  position: relative;
}

.tabs .tab-nav ul {
  margin: 0 0 0 -1px;
  padding: 0;
}

.tabs .tab-nav li {
  float: left;
  list-style-type: none;
  padding: 0;
  background: none;
  margin: 0 0 0 1px;
}

.tabs .tab-nav li a {
  display: block;
  text-decoration: none;
  outline: 0;
  padding: 15px 30px;
  background: #000;
  color: #fff;
}

.tabs .tab-nav li a:hover {
  background: #a0a0a0;
  color: #000;
}

.tabs .tab-nav li a.selected {
  background: #e3e3e3;
  color: #000;
}

.tabs .tab-content .tab {
  float: left;
  width: 100%;
  padding: 30px;
  background: #e3e3e3;
  display: none;
}

.tabs .tab-content .tab.selected {
  position: static !important;
  display: block;
}

/************************************************************************************
QTIP
*************************************************************************************/
.qtip-default {
  padding: 8px 15px;
  background-color: #000;
  color: #000;
  border-radius: 5px;
}

.qtip-content {
  font-size: 1rem;
  color: #fff;
}

/************************************************************************************
SIMPLE LIGHTBOX
*************************************************************************************/
html.slbActive {
  overflow: hidden;
}

.slbArrow {
  font-size: 15px;
}

.slbArrow.prev {
  background: #fff;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  opacity: 1;
  transition: 0.5s all;
}

.slbArrow.prev:before {
  border: none;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(135deg);
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  margin-left: -6px;
  transition: 0.5s all;
}

.slbArrow.prev:hover {
  opacity: 1;
  background: #000;
}

.slbArrow.prev:hover:before {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.slbArrow.next {
  background: #fff;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  opacity: 1;
  transition: 0.5s all;
}

.slbArrow.next:before {
  border: none;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  width: 15px;
  height: 15px;
  margin-top: -7.5px;
  transition: 0.5s all;
}

.slbArrow.next:hover {
  opacity: 1;
  background: #000;
}

.slbArrow.next:hover:before {
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

.slbCloseBtn {
  font-size: 30px;
  line-height: 40px;
  font-weight: 400;
  font-family: peachy-keen-jf,sans-serif;
  color: #fff;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  right: 0;
  top: 0;
  position: fixed;
  font-size: 0;
  transition: 0.5s all;
}

.slbCloseBtn:after {
  content: '';
  width: 24px;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -12px;
  margin-top: -1px;
  display: block;
  background: #000;
  transform: rotate(45deg);
  transition: 0.5s all;
}

.slbCloseBtn:before {
  content: '';
  width: 2px;
  height: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -12px;
  margin-left: -1px;
  display: block;
  background: #000;
  transform: rotate(45deg);
  transition: 0.5s all;
}

.slbCloseBtn:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}

.slbCloseBtn:hover:after {
  background: #fff;
  transform: rotate(-45deg);
}

.slbCloseBtn:hover:before {
  background: #fff;
  transform: rotate(-45deg);
}

.slbImage {
  padding: 0.9375rem 0;
}

.slbImageWrap:after {
  content: none;
}

.slbCaption {
  font-size: 1rem;
  position: static;
  overflow: visible;
  white-space: normal;
  padding-top: 0;
}

/************************************************************************************
MODAL
*************************************************************************************/
.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
  overflow: auto;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal .modal-content {
  padding: 2.5rem;
}

.modal .modal-box {
  font-size: 15px;
  max-width: 46.875rem;
  background-color: #e5f7f4;
  line-height: 1.5em;
  margin: auto;
  position: relative;
  border-radius: 1.6875rem;
}

.modal .modal-box p:last-child {
  margin-bottom: 0;
}

.modal .modal-box .date {
  font-size: 15px;
}

.modal .modal-box .more {
  font-size: 1.25rem;
  font-family: peachy-keen-jf,sans-serif;
  font-weight: 600;
  color: #ea4650;
  display: inline-flex;
  align-items: center;
}

.modal .modal-box .modal-close {
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  width: 2.875rem;
  height: 2.875rem;
  right: -1.0625rem;
  top: -0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #a9e5da;
}

.modal .modal-box .modal-close .icon-arr-btn {
  width: 100%;
  height: 100%;
  color: #ea4650;
  transition: 0.5s all;
}

.modal .modal-box .modal-close .icon-close {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -0.625rem;
  margin-left: -0.625rem;
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(0deg);
  transition: 0.3s all;
}

.modal .modal-box .modal-close:hover {
  color: #ea4650;
}

.modal .modal-box .modal-close:hover .icon-arr-btn {
  color: #a9e5da;
}

.modal .modal-box.modal-campaign .modal-content {
  padding: 0;
  display: flex;
}

.modal .modal-box.modal-campaign .modal-content .img {
  padding-right: 30px;
  margin-left: -100px;
  margin-top: 70px;
  margin-right: -4.375rem;
}

.modal .modal-box.modal-campaign .modal-content .text {
  padding: 4.375rem;
}

.modal .modal-box-wrap {
  width: 100%;
  padding: 3.125rem 0.9375rem 0.9375rem;
  margin: auto;
  overflow: hidden;
  position: relative;
  animation-name: animateTop;
  animation-duration: .4s;
}

.modal-trigger-campaign {
  display: block;
  position: fixed;
  z-index: 105;
  right: 2.1875rem;
  bottom: 2.1875rem;
  width: 7.5rem;
  height: 7.5rem;
  color: #a9e5da;
}

.modal-trigger-campaign .icon-arr-btn {
  width: 100%;
  height: 100%;
  color: #ea4650;
  transition: 0.3s all;
}

.modal-trigger-campaign .icon-flag {
  width: 4.6875rem;
  height: 4.6875rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s all;
}

.modal-trigger-campaign:hover {
  color: #ea4650;
}

.modal-trigger-campaign:hover .icon-arr-btn {
  color: #a9e5da;
}

.modal-trigger-campaign.hidden {
  display: none;
}

@keyframes animateTop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}

/************************************************************************************
SUDO SLIDERS
*************************************************************************************/
.slider {
  overflow: hidden;
  background: none;
}

.slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: block;
}

.slider li.panel {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: block;
  overflow: hidden;
  background: none;
}

.slider-nav {
  display: block;
  position: static;
  margin-bottom: 30px;
}

.slider-nav ol {
  margin: 0 -5px;
  display: flex;
  justify-content: center;
  top: 30px;
  height: 0;
}

.slider-nav li {
  margin: 0;
  padding: 0 5px;
  background: none;
  display: block;
  font-size: 0;
}

.slider-nav li a {
  width: 12px;
  height: 12px;
  display: block;
  background: #999;
  text-indent: -80000px;
  border-radius: 50%;
}

.slider-nav li a:hover {
  background: #999;
}

.slider-nav li.current a {
  background: #000;
}

.slider-nav li:before {
  content: '';
}

.slider-nav .prev {
  position: absolute;
  left: 1.875rem;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #666;
}

.slider-nav .prev:hover {
  background: #000;
}

.slider-nav .prev:after {
  content: '';
  border: solid #fff;
  border-width: 0 0.15625rem 0.15625rem 0;
  display: inline-block;
  padding: 0.1875rem;
  margin-left: 0.1875rem;
  transform: rotate(135deg);
}

.slider-nav .next {
  position: absolute;
  right: 1.875rem;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: #666;
}

.slider-nav .next:hover {
  background: #000;
}

.slider-nav .next:after {
  content: '';
  border: solid #fff;
  border-width: 0 0.15625rem 0.15625rem 0;
  display: inline-block;
  padding: 0.1875rem;
  margin-left: -0.1875rem;
  transform: rotate(-45deg);
}

/* Item slider */
.item-slider {
  position: relative;
}

.item-slider.hide-nav .slider-nav {
  display: none;
}

/************************************************************************************
GLIDE
*************************************************************************************/
.glide__slides {
  margin: 0;
}

.glide__slide {
  padding: 0 !important;
}

.glide__slide:before {
  content: none !important;
}

.glide-nav {
  margin-top: 2.5rem;
  position: relative;
}

.glide-nav .glide__arrow--left {
  position: absolute;
  left: 0;
  top: 0;
  width: 43px;
  height: 37px;
  cursor: pointer;
}

.glide-nav .glide__arrow--right {
  position: absolute;
  right: 0;
  top: 0;
  width: 43px;
  height: 37px;
  cursor: pointer;
}

.glide__bullets {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 37px;
}

.glide__bullets .glide__bullet {
  background: #a9e5da;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  padding: 0;
  margin: 0 7px;
  border: none;
  cursor: pointer;
  transition: 0.5s all;
}

.glide__bullets .glide__bullet.glide__bullet--active, .glide__bullets .glide__bullet:hover {
  background: #ea4650;
}

/* Image slider */
/************************************************************************************
CLEARFIX
*************************************************************************************/
/* http://www.yuiblog.com/blog/2010/09/27/clearfix-reloaded-overflowhidden-demystified */
.clearfix:before,
.clearfix:after {
  content: '\0020';
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  zoom: 1;
}

/************************************************************************************
HEADER
*************************************************************************************/
.header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 100;
  background: #a9e5da;
  margin-bottom: 5rem;
}

.header .inner {
  height: 6.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header:after {
  content: '';
  display: block;
  width: 100%;
  height: 113px;
  background: url("../img/header.svg") center 0 repeat-x;
  position: absolute;
  left: 0;
  top: 80px;
  z-index: 50;
  pointer-events: none;
}

.header.dropdown-opened {
  z-index: 200;
}

.header .h_2 {
  position: relative;
}

.dropdown {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 200;
  background: #a9e5da;
  padding: 0;
  backface-visibility: hidden;
  transform: rotateX(-90deg);
  transform-style: preserve-3d;
  transform-origin: top center;
  transition: transform 0.4s cubic-bezier(0.17, 0.67, 0.59, 1.21), opacity 0.1s 0.1s;
}

.dropdown.active {
  opacity: 1;
  transform: rotateX(0) translateZ(0);
}

.dropdown:after {
  content: '';
  display: block;
  width: 100%;
  height: 113px;
  background: url("../img/header.svg") center 0 repeat-x;
  position: absolute;
  left: 0;
  bottom: -112px;
}

.dropdown-nav .item {
  font-size: 17px;
  font-weight: 400;
  font-family: peachy-keen-jf,sans-serif;
  text-align: center;
}

.dropdown-nav .item .img .icon {
  width: 5rem;
  height: 5rem;
  display: block;
  margin: 0 auto 10px auto;
  color: #54c7b9;
}

.teaser-hp {
  padding: 1.25rem 0 5rem 0;
  position: relative;
  z-index: 100;
}

.teaser-hp .desc {
  max-width: 400px;
}

.teaser-hp .teaser-content {
  display: flex;
  min-height: 31.25rem;
  position: relative;
}

.teaser-hp .teaser-text {
  flex: 0 0 33.75rem;
  max-width: 33.75rem;
  margin-right: -3.125rem;
}

.teaser-hp .teaser-img {
  width: 63%;
  position: absolute;
  left: 75%;
  top: 40%;
  transform: translate(-50%, -50%);
}

.teaser-hp .teaser-img .frame {
  width: 100%;
  height: auto;
}

.teaser-hp .teaser-img-2 {
  width: 48%;
  position: absolute;
  left: -10%;
  top: 80%;
  transform: translate(-50%, -50%);
}

.teaser-hp .teaser-img-2 .frame {
  width: 100%;
  height: auto;
}

.teaser-hp .blob-pink {
  position: absolute;
  left: 30%;
  top: 70%;
  transform: translate(-50%, -50%);
  width: 17%;
}

.main-nav {
  vertical-align: top;
  text-align: left;
  position: relative;
  z-index: 100;
}

.main-nav ul {
  display: flex;
  align-items: center;
  margin: 0 -0.8125rem;
}

.main-nav ul li {
  font-size: 1.0625rem;
  font-family: peachy-keen-jf,sans-serif;
  font-weight: 400;
  padding: 0 0.8125rem;
  margin: 0;
}

.main-nav ul li a {
  color: #29275a;
  text-decoration: none;
  position: relative;
  transition: 0.2s all;
  white-space: nowrap;
}

.main-nav ul li a:hover {
  text-decoration: underline;
}

.main-nav ul li.has-subnav a {
  position: relative;
  padding-right: 18px;
}

.main-nav ul li.has-subnav a:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 6px;
  border-color: #29275a transparent transparent transparent;
  position: absolute;
  right: 0;
  bottom: 11px;
  display: block;
}

.main-nav ul li.active a {
  position: relative;
  padding: 16px 0;
  display: block;
  text-decoration: none;
}

.main-nav ul li.active a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: #29275a;
  border-radius: 3px;
}

.main-nav ul li.active a:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 8px 0 8px;
  border-color: #29275a transparent transparent transparent;
  position: absolute;
  left: 50%;
  left: 50%;
  bottom: -7px;
  margin-left: -8px;
}

.nav-btn {
  display: none;
  vertical-align: top;
  width: 30px;
  height: 30px;
  text-align: center;
  position: relative;
  z-index: 2001;
  cursor: pointer;
  align-items: center;
}

.nav-btn .lines {
  width: 30px;
  height: 4px;
  flex: 0 0 30px;
  display: block;
  position: relative;
  position: absolute;
  top: 50%;
  margin-top: -2px;
}

.nav-btn .line-1,
.nav-btn .line-2,
.nav-btn .line-3 {
  display: block;
  width: 100%;
  height: 2px;
  background: #29275a;
  transition: 0.1s;
  position: absolute;
  left: 0;
  content: '';
  transform-origin: 0.28571rem center;
}

.nav-btn .line-1 {
  top: 0;
  transition: opacity 0.1s 0.1s ease;
}

.nav-btn .line-2 {
  top: 10px;
  transform-origin: 50% 50%;
  transition: top 0.1s 0.1s ease, transform 0.1s ease;
}

.nav-btn .line-3 {
  top: -10px;
  transform-origin: 50% 50%;
  transition: top 0.1s 0.1s ease, transform 0.1s ease;
}

.nav-btn.active .line-1 {
  transition: opacity 0.1s 0s ease;
  background: transparent;
  opacity: 0;
}

.nav-btn.active .line-2 {
  transform: rotate3d(0, 0, 1, 45deg);
  transition: top 0.1s ease, transform 0.1s 0.1s ease;
  top: 0;
}

.nav-btn.active .line-3 {
  transform: rotate3d(0, 0, 1, -45deg);
  transition: top 0.1s ease, transform 0.1s 0.1s ease;
  top: 0;
}

.nav-btn.active:hover .line-1,
.nav-btn.active:hover .line-2,
.nav-btn.active:hover .line-3 {
  background: #000;
}

.mobile-nav {
  background: #29275a;
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 90;
  overflow-y: auto;
  max-height: 100%;
  margin-top: -10px;
  padding: 11.875rem 0 1.875rem 0;
  transition: 0.3s all;
  transform: translate(0, -100%);
}

.mobile-nav.active {
  transform: translate(0, 0);
  margin-top: 0;
}

.mobile-nav ul {
  margin: 0;
  padding: 0;
}

.mobile-nav ul li {
  font-size: 17px;
  color: #fff;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li.active a {
  color: #ffa70e;
}

.mobile-nav ul li:last-child {
  border: none;
}

.mobile-nav ul li a {
  font-weight: 400;
  display: block;
  width: 100%;
  padding: 14px 0;
  color: #fff;
  border: none;
  position: relative;
  text-decoration: none;
}

.mobile-nav ul li a span.more {
  position: absolute;
  right: 0;
  top: 0;
  width: 47px;
  height: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul li a span.more:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -5px;
  margin-left: -5px;
  width: 0.6em;
  height: 0.6em;
  border-right: 0.15em solid #fff;
  border-top: 0.15em solid #fff;
  transform: rotate(135deg);
  display: block;
  transition: 0.3s all;
}

.mobile-nav ul li a.active span.more:after {
  top: 30px;
  transform: rotate(-45deg);
}

.mobile-nav ul ul {
  display: none;
  padding-top: 10px;
  padding-bottom: 10px;
}

.mobile-nav ul ul.active {
  display: block;
  padding-left: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav ul ul li {
  font-size: 16px;
  border: none;
}

.mobile-nav ul ul li a {
  padding: 8px 0;
}

.mobile-nav-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 80;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
}

.mobile-nav-wrap {
  display: none;
}

body.mobile-nav-opened {
  overflow: hidden;
}

body.mobile-nav-opened .mobile-nav {
  transform: translate(0, 0);
}

body.mobile-nav-opened .nav-btn .line-1 {
  transition: opacity 0.1s 0s ease;
  background: transparent;
  opacity: 0;
}

body.mobile-nav-opened .nav-btn .line-2 {
  transform: rotate3d(0, 0, 1, 45deg);
  transition: top 0.1s ease, transform 0.1s 0.1s ease;
  top: 0;
}

body.mobile-nav-opened .nav-btn .line-3 {
  transform: rotate3d(0, 0, 1, -45deg);
  transition: top 0.1s ease, transform 0.1s 0.1s ease;
  top: 0;
}

body.mobile-nav-opened .nav-btn:hover .line-1,
body.mobile-nav-opened .nav-btn:hover .line-2,
body.mobile-nav-opened .nav-btn:hover .line-3 {
  background: #000;
}

body.mobile-nav-opened .mobile-nav-overlay {
  display: block;
  background: rgba(0, 0, 0, 0.9);
}

/************************************************************************************
LAYOUT
*************************************************************************************/
.calendar .section-head {
  margin-bottom: 3.75rem;
  padding: 0 3.125rem;
  position: relative;
}

.calendar .section-head .page-nav {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  margin-top: -18px;
}

.calendar .item {
  font-size: 16px;
  line-height: 1.6em;
  font-weight: 400;
  color: #29275a;
  margin-bottom: 1.875rem;
}

.calendar .item .img {
  flex: 0 0 7.5rem;
  max-width: 7.5rem;
  margin-top: 10px;
}

.calendar .item .img .frame {
  width: 7.375rem;
  height: 7.625rem;
  overflow: hidden;
}

.calendar .item .text {
  padding-left: 1.25rem;
}

.calendar .item-inner {
  display: flex;
}

.calendar .date {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.3125rem;
  color: #009476;
}

.about {
  margin-bottom: -8.125rem;
  position: relative;
  z-index: 10;
}

.about .text {
  margin-bottom: 5rem;
}

.about .img {
  margin-top: 3.125rem;
}

.about .more {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ea4650;
  display: inline-flex;
  align-items: center;
}

.social-list ul li a {
  padding-left: 1.5625rem;
}

.social-list ul li a .icon {
  position: absolute;
  left: 0;
  top: 0;
}

.contact-list li {
  padding-left: 1.5625rem;
  position: relative;
}

.contact-list li:before {
  content: '';
  color: #ea4650;
  font-weight: 600;
  width: 1.5625rem;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-list li.phone:before {
  content: 'T';
}

.contact-list li.mail:before {
  content: 'M';
}

.icon-arr {
  width: 2.625rem;
  height: 2.625rem;
  position: relative;
  color: #ea4650;
  display: inline-block;
  margin-left: 10px;
  transition: 0.5s all;
}

.icon-arr .icon-arr-btn {
  width: 100%;
  height: 100%;
  color: #a9e5da;
  transition: 0.5s all;
}

.icon-arr .icon-arr-r, .icon-arr .icon-arr-l {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  transition: 0.5s all;
}

.icon-arr:hover .icon-arr-btn {
  color: #ea4650;
}

.icon-arr:hover .icon-arr-r, .icon-arr:hover .icon-arr-l {
  color: #a9e5da;
}

.post-block {
  font-size: 17px;
  line-height: 1.8em;
  font-weight: 400;
}

.post-block h2 {
  font-size: 1.875rem;
  line-height: 1.3em;
  margin-bottom: 1.875rem;
}

.post-block h3 {
  font-size: 1.5625rem;
  line-height: 1.3em;
  margin-bottom: 1.875rem;
}

.post-block table {
  width: 100%;
}

.post-block table th {
  font-family: peachy-keen-jf,sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #fff;
  background: #29275a;
  border: 2px solid #fff;
  text-align: left;
  padding: 0.625rem;
}

.post-block table th.hl {
  background: #ea4650;
  color: #fff;
}

.post-block table td {
  font-weight: 500;
  background: #d4d4de;
  border: 2px solid #fff;
  padding: 0.625rem;
}

.post-block table td.hl {
  font-family: peachy-keen-jf,sans-serif;
  font-size: 1.0625rem;
  font-weight: 400;
  background: #ea4650;
  color: #fff;
}

.post-block ul li {
  padding-left: 1.6875rem;
  position: relative;
}

.post-block ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  background: url("../img/li.svg") center center no-repeat;
  background-size: 100%;
}

.post-block ol li {
  padding-left: 1.6875rem;
}

.post-block ol li:before {
  font-size: 1.0625rem;
  font-family: peachy-keen-jf,sans-serif;
  color: #ea4650;
}

.documents .item {
  line-height: 1.5em;
  margin-bottom: 1.875rem;
}

.documents .item .type {
  font-size: 15px;
  line-height: 1.3em;
  color: #009476;
  margin-bottom: 5px;
}

.spacer {
  height: 5rem;
}

.spacer.huge {
  height: 10rem;
}

.spacer.big {
  height: 6.25rem;
}

.spacer.medium {
  height: 3.75rem;
}

.spacer.small {
  height: 2.5rem;
}

.text-img.alt .img {
  order: 1;
}

.text-img.alt .text {
  order: 0;
}

.frame-responsive {
  max-width: 100%;
  height: auto;
}

.photogallery .item {
  margin-bottom: 2.5rem;
}

.photogallery .item .date {
  font-size: 0.9375rem;
  margin-bottom: 0.3125rem;
  color: #009476;
}

.photogallery .item .img {
  margin-bottom: 0.625rem;
}

.date {
  font-size: 1.3125rem;
  margin-bottom: 0;
  color: #009476;
}

.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-nav a {
  display: block;
  width: 43px;
  height: 37px;
  text-decoration: none;
}

.page-nav .icon-arr {
  margin: 0;
}

.section-nav {
  margin-bottom: 3.125rem;
}

.section-nav ul {
  display: flex;
  border: 2px solid #ea4650;
  border-radius: 18px;
  margin: 0;
}

.section-nav ul li {
  margin: 0;
  padding: 0;
  flex: 0 0 20%;
  max-width: 20%;
  display: flex;
}

.section-nav ul li:first-child a {
  border-radius: 16px 0 0 16px;
}

.section-nav ul li:last-child a {
  border-radius: 0 16px 16px 0;
  border: none;
}

.section-nav ul li a {
  font-family: peachy-keen-jf,sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ea4650;
  padding: 1.125rem 0.625rem;
  border-right: 2px solid #ea4650;
  background: #fff;
  width: 100%;
  transition: 0.3s all;
}

.section-nav ul li a:hover {
  background: #ea4650;
  color: #fff;
}

/************************************************************************************
FOOTER
*************************************************************************************/
.footer {
  background: #a9e5da;
  color: #29275a;
  position: relative;
  z-index: 20;
  margin-top: 7.1875rem;
  margin-bottom: -7.0625rem;
  font-size: 1.1875rem;
}

.footer:before {
  content: '';
  display: block;
  width: 100%;
  height: 113px;
  background: url("../img/footer.svg") center 0 repeat-x;
  position: absolute;
  left: 0;
  top: -110px;
}

.footer h3 {
  font-size: 1.25rem;
  color: #29275a;
  margin-bottom: 1.25rem;
}

.footer ul {
  margin-bottom: 1.875rem;
}

.footer ul li {
  padding: 0;
}

.footer ul:last-child {
  margin-bottom: 0;
}

.footer a {
  color: #29275a;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer .contact-list li {
  padding-left: 1.5625rem;
}

.footer .foot-item {
  padding: 1.25rem 0;
}

.footer .f_1 {
  padding: 0.625rem 0 0.625rem 0;
}

.footer .f_2 {
  font-size: 13px;
  padding: 1.25rem 0;
  border-top: 1px solid #90c3ba;
}

.footer .f_2 .inner {
  display: flex;
  justify-content: space-between;
}

.footer .f_2 .inner p.copy {
  margin-bottom: 0;
  line-height: 1.3em;
}

.footer .orwin {
  margin-bottom: 0;
}

.footer .orwin a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s color;
}

.footer .orwin a:hover {
  color: #ea4650;
}

/************************************************************************************
MEDIA QUERIES
*************************************************************************************/
/*========================= Viewport width 1199px and lower =========================*/
@media screen and (max-width: 1199px) {
  .teaser-hp .teaser-img {
    top: 60%;
  }
  .content.sides:before {
    opacity: .2;
  }
  .content.sides:after {
    opacity: .2;
  }
  .main-nav ul {
    margin: 0 0.625rem;
  }
  .main-nav ul li {
    padding: 0 0.625rem;
  }
}

/*========================= Viewport width 991px and lower =========================*/
@media screen and (max-width: 991px) {
  html {
    font-size: 15px;
  }
  h1, .h1 {
    font-size: 3.125rem;
  }
  h1.big, .h1.big {
    font-size: 3.125rem;
  }
  h2, .h2 {
    font-size: 2.125rem;
  }
  .main-nav {
    display: none;
  }
  .nav-btn {
    display: block;
  }
  .mobile-nav-wrap {
    display: block;
  }
  .header .dropdown {
    display: none !important;
  }
  .teaser-hp {
    z-index: 10;
  }
  .teaser-hp .teaser-img {
    left: 85%;
    top: 75%;
  }
  .footer {
    font-size: 1rem;
  }
  .block {
    padding: 3.75rem 0;
  }
  .modal .modal-box.modal-campaign .modal-content {
    padding: 1.875rem;
  }
  .modal .modal-box.modal-campaign .modal-content .img {
    margin: 0;
    max-width: 30%;
    flex: 0 0 30%;
  }
  .modal .modal-box.modal-campaign .modal-content .img .frame {
    max-width: 100%;
  }
  .modal .modal-box.modal-campaign .modal-content .text {
    padding: 0 0 0 0;
  }
}

/*========================= Viewport width 767px and lower =========================*/
@media screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  .about {
    margin-bottom: 0;
  }
  .about .img {
    order: 0;
    margin-top: 0;
    margin-bottom: 20px;
  }
  .about .text {
    order: 1;
  }
  .block {
    padding: 2.5rem 0;
  }
  .text-img.alt .img {
    order: 0;
  }
  .text-img.alt .text {
    order: 1;
  }
}

/*========================= Viewport width 575px and lower =========================*/
@media screen and (max-width: 575px) {
  html {
    font-size: 13px;
  }
  h1, .h1 {
    font-size: 2.5rem;
  }
  h1.big, .h1.big {
    font-size: 2.5rem;
  }
  h2, .h2 {
    font-size: 1.875rem;
  }
  .teaser-hp {
    padding-bottom: 1.875rem;
  }
  .teaser-hp .teaser-content {
    min-height: 25rem;
    display: flex;
    flex-wrap: wrap;
  }
  .teaser-hp .teaser-text {
    max-width: 100%;
    flex: 0 0 100%;
    order: 1;
  }
  .teaser-hp .teaser-img {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0, 0);
    order: 0;
    width: 100%;
    margin-bottom: 1.25rem;
  }
  .teaser-hp .teaser-img-2 {
    display: none;
  }
  .teaser-hp .blob-pink {
    display: none;
  }
  .photogallery .item-list {
    margin: 0 -5px;
  }
  .photogallery .item {
    padding: 0 5px;
  }
  .section-nav ul {
    flex-wrap: wrap;
  }
  .section-nav ul li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .section-nav ul li a {
    font-size: 1rem;
    border-right: none;
    border-bottom: 2px solid #ea4650;
  }
  .section-nav ul li:first-child a {
    border-radius: 16px 16px 0 0;
  }
  .section-nav ul li:last-child a {
    border-radius: 0 0 16px 16px;
    border: none;
  }
  .table-wrap {
    max-width: 100%;
    overflow-x: auto;
  }
  .modal .modal-box.modal-campaign .modal-content {
    flex-wrap: wrap;
  }
  .modal .modal-box.modal-campaign .modal-content .img {
    margin: 0;
    max-width: 100%;
    flex: 0 0 262px;
    max-width: 262px;
  }
  .modal .modal-box.modal-campaign .modal-content .img .frame {
    max-width: 100%;
  }
  .modal .modal-box.modal-campaign .modal-content .text {
    padding: 0 0 0 0;
  }
}

/*# sourceMappingURL=styles.css.map */
