@charset "UTF-8";
.datepicker {
  display: none;
}

.datepicker.active {
  display: block;
}

.datepicker-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  padding-top: 4px;
}

.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}

.datepicker-picker {
  display: inline-block;
  border-radius: 4px;
  background-color: white;
}

.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}

.datepicker-picker span {
  display: block;
  flex: 1;
  border: 0;
  border-radius: 4px;
  cursor: default;
  text-align: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.datepicker-main {
  padding: 2px;
}

.datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(10, 10, 10, 0.1);
  background-color: whitesmoke;
}

.datepicker-controls, .datepicker-view, .datepicker-view .days-of-week, .datepicker-grid {
  display: flex;
}

.datepicker-grid {
  flex-wrap: wrap;
}

.datepicker-view .dow, .datepicker-view .days .datepicker-cell {
  flex-basis: 14.28571%;
}

.datepicker-view.datepicker-grid .datepicker-cell {
  flex-basis: 25%;
}

.datepicker-view .week, .datepicker-cell {
  height: 2.25rem;
  line-height: 2.25rem;
}

.datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(10, 10, 10, 0.1);
  background-color: whitesmoke;
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}

.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}

.datepicker-controls .button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  box-shadow: none;
  background-color: white;
  cursor: pointer;
  padding: calc(0.375em - 1px) 0.75em;
  height: 2.25em;
  vertical-align: top;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: #363636;
  font-size: 1rem;
}

.datepicker-controls .button:focus, .datepicker-controls .button:active {
  outline: none;
}

.datepicker-controls .button:hover {
  border-color: #b5b5b5;
  color: #363636;
}

.datepicker-controls .button:focus {
  border-color: #3273dc;
  color: #363636;
}

.datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}

.datepicker-controls .button:active {
  border-color: #4a4a4a;
  color: #363636;
}

.datepicker-controls .button[disabled] {
  cursor: not-allowed;
}

.datepicker-header .datepicker-controls .button {
  border-color: transparent;
  font-weight: bold;
}

.datepicker-header .datepicker-controls .button:hover {
  background-color: #f9f9f9;
}

.datepicker-header .datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}

.datepicker-header .datepicker-controls .button:active {
  background-color: #f2f2f2;
}

.datepicker-header .datepicker-controls .button[disabled] {
  box-shadow: none;
}

.datepicker-footer .datepicker-controls .button {
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  width: 100%;
  font-size: 0.75rem;
}

.datepicker-controls .view-switch {
  flex: auto;
}

.datepicker-controls .prev-btn,
.datepicker-controls .next-btn {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  width: 2.25rem;
}

.datepicker-controls .prev-btn.disabled,
.datepicker-controls .next-btn.disabled {
  visibility: hidden;
}

.datepicker-view .dow {
  height: 1.5rem;
  line-height: 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.datepicker-view .week {
  width: 2.25rem;
  color: #b5b5b5;
  font-size: 0.75rem;
}

@media (max-width: 22.5rem) {
  .datepicker-view .week {
    width: 1.96875rem;
  }
}

.datepicker-grid {
  width: 15.75rem;
}

@media (max-width: 22.5rem) {
  .calendar-weeks + .days .datepicker-grid {
    width: 13.78125rem;
  }
}

.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}

.datepicker-cell.focused:not(.selected) {
  background-color: #e8e8e8;
}

.datepicker-cell.selected, .datepicker-cell.selected:hover {
  background-color: #3273dc;
  color: #fff;
  font-weight: 600;
}

.datepicker-cell.disabled {
  color: #dbdbdb;
}

.datepicker-cell.prev:not(.disabled), .datepicker-cell.next:not(.disabled) {
  color: #7a7a7a;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: whitesmoke;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #eeeeee;
}

.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e8e8e8;
}

.datepicker-cell.today:not(.selected) {
  background-color: #00d1b2;
}

.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}

.datepicker-cell.today.focused:not(.selected) {
  background-color: #00c4a7;
}

.datepicker-cell.range-start:not(.selected), .datepicker-cell.range-end:not(.selected) {
  background-color: #b5b5b5;
  color: #fff;
}

.datepicker-cell.range-start.focused:not(.selected), .datepicker-cell.range-end.focused:not(.selected) {
  background-color: #afafaf;
}

.datepicker-cell.range-start {
  border-radius: 4px 0 0 4px;
}

.datepicker-cell.range-end {
  border-radius: 0 4px 4px 0;
}

.datepicker-cell.range {
  border-radius: 0;
  background-color: #dbdbdb;
}

.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d5d5d5;
}

.datepicker-cell.range.disabled {
  color: #c2c2c2;
}

.datepicker-cell.range.focused {
  background-color: #cfcfcf;
}

.datepicker-view.datepicker-grid .datepicker-cell {
  height: 4.5rem;
  line-height: 4.5rem;
}

.datepicker-input.in-edit {
  border-color: #2366d1;
}

.datepicker-input.in-edit:focus, .datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(35, 102, 209, 0.2);
}

.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;
  -webkit-animation: slbOverlay 0.5s;
  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 {
  -webkit-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  background-color: #fff;
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.4);
}

.slbImageWrap {
  -webkit-animation: slbEnter 0.3s;
  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 {
  -webkit-animation: slbEnterNext 0.4s;
  animation: slbEnterNext 0.4s;
}

.slbDirectionPrev .slbImageWrap {
  -webkit-animation: slbEnterPrev 0.4s;
  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 {
  -webkit-animation: slbEnter 0.3s;
  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;
}

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

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

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

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

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

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

@-webkit-keyframes slbEnterPrev {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-4em, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-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;
  -webkit-backface-visibility: hidden;
  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;
  -ms-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;
  -ms-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;
  -ms-user-select: none;
  user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-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)
 */
@-ms-viewport {
  width: device-width;
}

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

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

.container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  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: 1212px) {
  .container {
    max-width: 1152px;
  }
}

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

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

.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: 12px;
  padding-left: 12px;
}

.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;
}

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: Montserrat,sans-serif;
  font-size: 1rem;
  line-height: 2.0em;
  font-weight: 500;
  color: #000;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body.searching .content, body.searching .footer {
  position: relative;
}

body.searching .content:after, body.searching .footer:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  -webkit-animation: overlayFadeIn .5s;
  animation: overlayFadeIn .5s;
}

@-webkit-keyframes overlayFadeIn {
  0% {
    display: none;
    background: rgba(0, 0, 0, 0);
  }
  5% {
    display: block;
    background: rgba(0, 0, 0, 0);
  }
  100% {
    display: block;
    background: rgba(0, 0, 0, 0.5);
  }
}

@keyframes overlayFadeIn {
  0% {
    display: none;
    background: rgba(0, 0, 0, 0);
  }
  5% {
    display: block;
    background: rgba(0, 0, 0, 0);
  }
  100% {
    display: block;
    background: rgba(0, 0, 0, 0.5);
  }
}

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

/* Anchors */
a {
  color: #ec1119;
  text-decoration: underline;
  transition: 0.3s all;
}

a:hover {
  text-decoration: none;
}

/* Heading */
h1, .h1 {
  font-family: Montserrat,sans-serif;
  font-size: 2.5rem;
  line-height: 1.4em;
  font-weight: 700;
  color: #000;
  margin: 0 0 1.875rem 0;
}

h1.big, .h1.big {
  font-size: 4rem;
  line-height: 1.125em;
}

h2, .h2 {
  font-family: Montserrat,sans-serif;
  font-size: 1.875rem;
  line-height: 1.3em;
  font-weight: 700;
  color: #000;
  margin: 0 0 1.25rem 0;
}

h2.small, .h2.small {
  font-size: 1.1875rem;
}

h2.big, .h2.big {
  font-size: 2.5rem;
}

h2.huge, .h2.huge {
  font-size: 4rem;
  letter-spacing: -.05em;
  line-height: 1.1em;
}

h3, .h3 {
  font-family: Montserrat,sans-serif;
  font-size: 1.5625rem;
  line-height: 1.3em;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.625rem 0;
}

h3.medium, .h3.medium {
  font-size: 1.75rem;
  line-height: 1.4em;
  font-weight: 700;
}

h3.small, .h3.small {
  font-size: 1.0625rem;
  line-height: 1.4em;
  font-weight: 700;
}

h4, .h4 {
  font-family: Montserrat,sans-serif;
  font-size: 1.25rem;
  line-height: 1.3em;
  font-weight: 700;
  color: #000;
  margin: 0 0 0.625rem 0;
}

h5, .h5 {
  font-family: Montserrat,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: Montserrat,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;
}

p.big {
  font-size: 1.125rem;
  line-height: 1.78em;
  font-weight: 600;
}

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 {
  margin: 0 0 1.25rem 0;
  padding: 0;
  counter-reset: counter;
  margin-left: 0;
}

ol ol {
  padding-left: 20px;
}

ol li {
  margin: 0;
  padding: 0;
  counter-increment: counter;
  position: relative;
}

ol li:before {
  font-weight: 700;
  content: counters(counter, ".") ". ";
}

ol li ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

ol li ul li {
  counter-increment: none;
}

ol li ul li:before {
  content: '';
}

dl {
  margin: 0 0 1.25rem 0;
}

dt {
  font-weight: bold;
}

/* Various */
sup, sub {
  font-size: 11px;
  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;
}

img.right {
  float: right;
  padding-left: 1.25rem;
}

img.left {
  float: left;
  padding-right: 1.25rem;
}

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

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

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

/************************************************************************************
CONTENT
*************************************************************************************/
.content {
  padding: 0;
  transition: 0.3s all;
}

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

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

.block.alt {
  background: #272728;
}

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

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

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

.invert h2 {
  color: #c6c7bf;
}

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

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

.intro {
  max-width: 500px;
  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;
}

.pager ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 -5px !important;
}

.pager li {
  padding: 0 5px !important;
  background: none;
}

.pager li:before {
  content: none !important;
}

.pager li.active a {
  background: #dac287;
  color: #000;
}

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

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

.pager .prev {
  width: 2.25rem;
  height: 2.25rem;
  background: #dfe0e2;
  color: #000;
  position: relative;
  margin-right: 10px;
}

.pager .prev:before {
  content: '';
  display: block;
  border: none;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(135deg);
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: -5px;
  top: 50%;
  left: 50%;
  position: absolute;
  transition: 0.5s all;
}

.pager .prev:hover {
  background: #dac287;
}

.pager .next {
  width: 2.25rem;
  height: 2.25rem;
  background: #dfe0e2;
  color: #000;
  position: relative;
  margin-left: 10px;
}

.pager .next:before {
  content: '';
  display: block;
  border: none;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  margin-top: -5px;
  margin-left: -8px;
  top: 50%;
  left: 50%;
  position: absolute;
  transition: 0.5s all;
}

.pager .next:hover {
  background: #dac287;
}

.pager .counter {
  display: none;
}

/* Gmap */
.gmap-wrap {
  position: relative;
}

.gmap-wrap .gmap {
  height: 600px;
  background: #e3e3e3;
}

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

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

/* Buttons */
.btn,
.sendbutton {
  font-size: 12px;
  font-family: Montserrat,sans-serif;
  line-height: 1.3em;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #ed1c24;
  color: #fff;
  padding: 0 1.5rem;
  height: 3rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  position: relative;
  border: 1px solid #ed1c24;
  border-radius: 2px;
  text-align: center;
  transition: 0.5s all;
}

.btn .icon-arr-r,
.sendbutton .icon-arr-r {
  width: 0.75rem;
  height: 0.75rem;
  margin-left: 10px;
  position: relative;
  left: 0;
  transition: 0.3s all;
}

.btn:hover,
.sendbutton:hover {
  background-color: #b5050c;
  border-color: #b5050c;
  color: #fff;
}

.btn:hover .icon-arr-r,
.sendbutton:hover .icon-arr-r {
  left: 5px;
}

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

.btn.line:hover,
.sendbutton.line:hover {
  color: #b5050c;
  border-color: #b5050c;
  color: #b5050c;
}

/* 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%;
		@include rem(margin, 0 0 30px 0);

		th {
			font-weight: normal;
			border-bottom: 1px solid #c9cacb;
			@include rem(padding, 10px 20px);
			background: #e3e3e3;
			color: #000;
		}

		td {
			border-bottom: 1px solid #c9cacb;
			@include rem(padding, 10px 20px);
		}
	}
}
*/
/************************************************************************************
FORMS
*************************************************************************************/
form.std label {
  font-size: 12px;
  line-height: 1.3em;
  color: #656565;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 0.625rem 0;
  display: block;
}

form.std input.text {
  font-size: 16px;
  font-family: Montserrat,sans-serif;
  line-height: 1.3em;
  font-weight: 400;
  color: #000;
  background: #f7f7f7;
  border: 1px solid #e7e7e7;
  padding: 0 1rem;
  height: 3rem;
  width: 100%;
  border-radius: 3px;
}

form.std input.text:focus {
  outline: none;
}

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: 16px;
  font-family: Montserrat,sans-serif;
  line-height: 1.3em;
  font-weight: 400;
  color: #000;
  resize: vertical;
  background: #f7f7f7;
  border: 1px solid #e7e7e7;
  padding: 0.625rem 0.9375rem;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 150px;
  min-height: 150px;
  max-height: 300px;
  border-radius: 3px;
}

form.std textarea:focus {
  outline: none;
}

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;
  height: 3rem;
  border: 1px solid #ececec;
}

form.std select[disabled] {
  opacity: .5;
}

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 2.1875rem;
}

form.std .toggle label {
  line-height: 1.6em;
  display: inline-block;
  vertical-align: top;
  margin: 0;
  padding-top: 0.1875rem;
}

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: #f7f7f7;
  background-position: 0 -1.4375rem;
  background-size: 1.4375rem;
  transition: 0.5s all;
  border: 1px solid #e7e7e7;
  width: 1.625rem;
  height: 1.625rem;
  margin: 0;
  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.form-footer input.text, form.form-footer textarea {
  color: #fff;
  border: 1px solid #828585;
  background: none;
}

form.form-footer .toggle .checker {
  border: 1px solid #828585;
  background-color: transparent;
}

form.form-search-header input.text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  height: 3.875rem;
  border: 1px solid #cdcece;
  background: #fff;
  width: 100%;
}

form.form-search-header input.text:focus {
  border: 1px solid #cdcece;
  outline: 0;
}

form.form-search-header .btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 3.875rem;
  height: 100%;
  background: none;
  border: none;
  padding: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

form.form-search-header .btn .icon {
  color: #000;
  width: 33px;
  height: 33px;
}

form.form-event {
  max-width: 744px;
  margin: 0 auto;
}

form.form-event .btn-set {
  display: flex;
  justify-content: center;
}

form.form-calendar-filter input.text {
  background: #fff;
}

form.form-login h1 {
  line-height: 1.1em;
}

form.form-login .btn {
  width: 100%;
  margin-bottom: 1.875rem;
}

form.form-login .btn .icon {
  margin-left: 10px;
  width: 15px;
  height: 15px;
}

form.form-login .btn-set {
  text-align: center;
}

form.form-login .forgot {
  font-size: 0.75rem;
  line-height: 1.3em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  margin: 0;
}

form.form-login .forgot .icon {
  margin-left: 10px;
  width: 15px;
  height: 15px;
}

form.form-login .forgot a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flash-message {
  padding: 0;
  background: #ebf5bc;
  border: 1px solid #f1c7d2;
  color: #46b450;
  padding: 0.9375rem 1.25rem;
  margin: 0 0 1.875rem 0;
}

.flash-message.error {
  border: 1px solid #f1c7d2;
  background: #fae7ea;
  color: #e5547a;
}

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

.tabs .tab-nav {
  margin-bottom: 2.5rem;
  overflow: hidden;
}

.tabs .tab-nav ul {
  margin: -0.625rem -1.875rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.tabs .tab-nav li {
  list-style-type: none;
  background: none;
  padding: 0 1.875rem;
  margin: 0.625rem 0;
}

.tabs .tab-nav li a {
  font-size: 2rem;
  line-height: 1.3em;
  font-weight: 700;
  display: block;
  text-decoration: none;
  color: #bebebe;
  display: block;
  padding-bottom: 0.9375rem;
  position: relative;
}

.tabs .tab-nav li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  background: #dac287;
  width: 0;
  height: 7px;
  display: block;
}

.tabs .tab-nav li a:hover {
  color: #ec1119;
}

.tabs .tab-nav li.glide__bullet--active a {
  color: #000;
}

.tabs .tab-nav li.glide__bullet--active a:after {
  width: 100%;
}

.tabs .tab-content .tab {
  width: 100%;
  height: 0;
}

.tabs .tab-content .tab.glide__slide--active {
  height: auto;
}

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

body .slbArrow {
  font-size: 15px;
}

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

body .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;
}

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

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

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

body .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;
}

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

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

body .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;
}

body .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;
}

body .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;
}

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

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

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

body .slbImage {
  padding: 0.9375rem 0;
}

body .slbImageWrap:after {
  content: none;
}

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

/************************************************************************************
TIPS
*************************************************************************************/
[data-tippy-root] {
  pointer-events: auto !important;
}

.tippy-popup {
  display: none;
}

.tippy-box {
  background: #fff;
  color: #000;
  border-radius: 0;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.tippy-arrow {
  color: #fff;
}

.tippy-arrow:before {
  transform: scale(1.5);
}

.tippy-content {
  padding: 20px;
  border-radius: 0;
}

.tippy-content .calendar-events {
  margin-bottom: 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: 3.125rem;
}

.modal .modal-content.alt {
  background: #f9fbfc;
}

.modal .modal-box {
  font-size: 1.125rem;
  max-width: 25rem;
  background-color: #fff;
  line-height: 1.5em;
  margin: auto;
  position: relative;
}

.modal .modal-box .modal-close {
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
  color: #fff;
}

.modal .modal-box .modal-close:after {
  content: '×';
  font-size: 1.875rem;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.modal .modal-box .modal-close .icon {
  width: 1.125rem;
  height: 1.125rem;
  transform: rotate(0deg);
  transition: 0.3s all;
}

.modal .modal-box .modal-close:hover {
  background: #fff;
}

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

.modal .modal-box .modal-close:hover .icon {
  transform: rotate(90deg);
}

.modal .modal-box.modal-order {
  width: 100%;
  max-width: 36.25rem;
  background: #e5e5e5;
}

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

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

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

/************************************************************************************
SLIDERS
*************************************************************************************/
/* News slider */
.news-slider-wrap {
  padding: 0 3.5rem;
  position: relative;
}

.news-slider .glide__slide {
  padding: 0;
}

.news-slider .item .img {
  margin-bottom: 1.25rem;
}

.news-slider a {
  color: #000;
}

.news-slider a:hover {
  color: #ec1119;
}

.news-slider .prev, .news-slider .next {
  position: absolute;
  top: 35%;
  background: #fff;
  border-radius: 50%;
  color: #ec1119;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ececec;
  width: 2.875rem;
  height: 2.875rem;
  margin-top: -2.875rem;
  flex: 0 0 2.875rem;
  transition: 0.3s all;
}

.news-slider .prev .icon, .news-slider .next .icon {
  width: 1.125rem;
  height: 1.125rem;
}

.news-slider .prev:hover, .news-slider .next:hover {
  color: #fff;
  border-color: #ec1119;
  background: #ec1119;
}

.news-slider .prev {
  left: -3.5rem;
}

.news-slider .next {
  right: -3.5rem;
}

/************************************************************************************
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;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe, .embed-container object, .embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/************************************************************************************
HEADER
*************************************************************************************/
.header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 300;
}

.header .h_1 {
  position: relative;
  z-index: 15;
  background: #fff;
  border-top: 8px solid #ec1119;
  border-bottom: 1px solid #ececec;
}

.header .h_2 {
  position: relative;
  z-index: 10;
}

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

.header .header-r {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  flex-grow: 1;
}

.header.dropdown-opened {
  background: #fff;
}

.notification-bar {
  position: relative;
  color: #fff;
}

.notification-bar a {
  color: #fff;
}

.notification-bar .notificaton-trigger {
  display: block;
}

.notification-bar .bar-inner {
  font-size: 0.9375rem;
  line-height: 1.5em;
  position: relative;
  background: #ec1119;
}

.notification-bar .bar-inner .text {
  padding: 21px 15px 21px 55px;
  display: block;
}

.notification-bar .bar-inner:before {
  content: 'i';
  color: #fff;
  font-family: Georgia,serif;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  display: inline-flex;
  width: 25px;
  height: 25px;
  line-height: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  left: 15px;
  top: 18px;
}

.notification-bar .bar-inner .close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 15px;
  transform: rotate(45deg);
}

.notification-bar .bar-inner .close:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 20px;
  background: #fff;
}

.notification-bar .bar-inner .close:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  width: 20px;
  height: 2px;
  background: #fff;
}

.notification-bar .bar-inner .notification-trigger {
  display: none;
}

.notification-bar .notification-trigger {
  width: 40px;
  height: 30px;
  position: absolute;
  right: 0;
  top: 0;
  background: #ec1119;
  color: #fff;
  display: block;
}

.notification-bar .notification-trigger:before {
  content: 'i';
  color: #fff;
  font-family: Georgia,serif;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  display: inline-flex;
  width: 20px;
  height: 20px;
  line-height: 20px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.notification-bar-alt {
  position: relative;
  z-index: 30;
  background: #fef8e5;
  color: #ec1119;
  text-align: center;
}

.notification-bar-alt a {
  color: #ec1119;
}

.notification-bar-alt .bar-inner {
  font-size: 0.9375rem;
  line-height: 1.5em;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.notification-bar-alt .bar-inner .text {
  padding: 21px 15px 21px 15px;
}

.notification-bar-alt .bar-inner:before {
  content: 'i';
  color: #ec1119;
  font-family: Georgia,serif;
  font-size: 16px;
  font-weight: 600;
  font-style: italic;
  display: inline-flex;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  line-height: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #ec1119;
}

.notification-bar-alt .bar-inner .close {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 15px;
  transform: rotate(45deg);
}

.notification-bar-alt .bar-inner .close:after {
  content: '';
  position: absolute;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 20px;
  background: #ec1119;
}

.notification-bar-alt .bar-inner .close:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -1px;
  width: 20px;
  height: 2px;
  background: #ec1119;
}

.search-trig {
  width: 2rem;
  height: 2rem;
  display: block;
  margin-left: 2.1875rem;
  color: #000;
}

.search-trig:hover {
  color: #ec1119;
}

.search-trig .icon {
  width: 2rem;
  height: 2rem;
}

.search-trig .icon-close {
  display: none;
}

.search-trig.active .icon-search {
  display: none;
}

.search-trig.active .icon-close {
  display: block;
}

.search-input {
  position: relative;
  display: none;
  width: 100%;
  max-width: 0;
  transition: 0.5s all;
}

.search-input input.text {
  max-width: 0;
  transition: 0.5s all;
}

.search-input.active {
  display: block;
  max-width: 648px;
  -webkit-animation: showSearch .5s;
  animation: showSearch .5s;
}

.search-input.active input.text {
  max-width: 100%;
}

.main-nav {
  vertical-align: top;
  text-align: left;
  display: flex;
  height: 100%;
}

.main-nav.hidden {
  display: none;
}

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

.main-nav > ul > li {
  padding: 0 0.8125rem;
  margin: 0;
  display: flex;
}

.main-nav > ul > li.has-subnav a {
  padding-right: 12px;
}

.main-nav > ul > li.has-subnav a:before {
  content: '';
  width: 6px;
  height: 6px;
  display: block;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -4px;
  transition: 0.3s all;
}

.main-nav > ul > li.has-subnav.dropdown-opened a:before {
  transform: rotate(135deg);
  margin-top: -1px;
}

.main-nav > ul > li.has-subnav.dropdown-opened a:after {
  width: 100%;
}

.main-nav > ul > li > a {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
  transition: 0.2s all;
  white-space: nowrap;
}

.main-nav > ul > li > a:after {
  content: '';
  width: 0;
  height: 8px;
  background: #dac287;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.main-nav > ul > li > a:hover:after {
  width: 100%;
  transition: 0.2s all;
}

.main-nav > ul > li.active a:after {
  width: 100%;
}

.main-nav-dropdown {
  background: #fff;
  padding: 3rem 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
}

.main-nav-dropdown.alt {
  background: #fff;
  border-top: 1px solid #ececec;
}

.main-nav-dropdown.active {
  display: block;
  -webkit-animation: showDropdown .5s;
  animation: showDropdown .5s;
}

.main-nav-dropdown .head .h4 {
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.main-nav-dropdown .head .h4 a {
  display: flex;
  align-items: center;
}

.main-nav-dropdown .head .h4 a .icon {
  width: 12px;
  height: 12px;
  margin-left: 10px;
  left: 0;
  transition: 0.3s all;
}

.main-nav-dropdown .head .h4 a:hover .icon {
  left: 5px;
}

.main-nav-dropdown ul li {
  line-height: 1.5em;
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.main-nav-dropdown ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
}

.main-nav-dropdown a {
  color: #000;
  text-decoration: none;
}

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

.main-nav-dropdown .more-link {
  color: #ec1119 !important;
}

.breadcrumbs {
  padding: 1.5rem 0;
}

.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.9375rem;
}

.breadcrumbs li {
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.125rem 0.9375rem;
  margin: 0;
  position: relative;
  color: #828585;
}

.breadcrumbs li:after {
  content: '';
  position: absolute;
  right: 0;
  top: 0.6875rem;
  width: 1px;
  height: 0.875rem;
  background: #828585;
}

.breadcrumbs li a {
  color: #dac287;
  text-decoration: underline;
  transition: 0.3s all;
}

.breadcrumbs li a:hover {
  text-decoration: none;
  color: #fff;
}

.breadcrumbs li.current a {
  color: #828585;
}

.breadcrumbs li:last-child:after {
  content: none;
}

.teaser-hp {
  padding-top: 3.125rem;
  padding-bottom: 5rem;
}

.teaser-hp .teaser-content {
  display: flex;
}

.teaser-hp .text {
  flex: 0 0 30rem;
  max-width: 30rem;
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
}

.teaser-hp .text .cat-list {
  margin-bottom: 1.875rem;
}

.teaser-hp .text h2 {
  color: #000;
  margin-bottom: 3.125rem;
}

.teaser-hp .text h2 a {
  color: #000;
  text-decoration: none;
}

.teaser-hp .text h2 a:hover {
  text-decoration: underline;
}

.teaser-hp .text h2 .more {
  width: 2.5rem;
  height: 2.5rem;
  margin-left: 0.625rem;
  top: -0.625rem;
  border-radius: 50%;
  border: 1px solid #959595;
  background: #f7f7f7;
  color: #ec1119;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.teaser-hp .text h2 .more .icon {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.teaser-hp .img {
  margin-right: -156px;
  display: flex;
  align-items: center;
}

.teaser-hp .desc {
  font-size: 1.375rem;
  line-height: 1.5em;
  color: #656565;
}

.teaser-nav {
  padding-top: 3.125rem;
}

.teaser-nav ul {
  counter-reset: counter;
}

.teaser-nav ul li {
  font-size: 1.0625rem;
  font-weight: 600;
  line-height: 1.3em;
  counter-increment: counter;
  margin-top: 20px;
  position: relative;
  margin-bottom: 3.75rem;
}

.teaser-nav ul li a {
  display: block;
  border-top: 2px solid #e1e1e1;
  padding-top: 20px;
  color: #9f9f9f;
  text-decoration: none;
  position: relative;
  transition: 0.5s all;
}

.teaser-nav ul li a .line {
  position: absolute;
  left: 0;
  top: -2px;
  height: 2px;
  background: #ec1119;
}

.teaser-nav ul li a:before {
  font-size: 14px;
  font-weight: 600;
  content: "0" counter(counter);
  position: absolute;
  left: 0;
  top: -40px;
  color: #9f9f9f;
}

.teaser-nav ul li a:hover {
  color: #ec1119;
}

.teaser-nav ul li.glide__bullet--active a {
  color: #000;
}

.teaser-nav ul li.glide__bullet--active a .line {
  width: 100%;
  -webkit-animation: loadSlide 5s;
  animation: loadSlide 5s;
}

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

.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: #000;
  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;
}

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

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

.mobile-nav ul li {
  font-size: 0.9375rem;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ebebeb;
}

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

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

.mobile-nav ul li a {
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 1.4375rem 3.875rem 1.4375rem 2.75rem;
  position: relative;
  width: 100%;
}

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

.mobile-nav ul li a .more:after {
  content: '';
  width: 6px;
  height: 6px;
  display: block;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  transition: 0.3s all;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -3px;
  margin-top: -3px;
}

.mobile-nav ul li a.active .more:after {
  transform: rotate(135deg);
}

.mobile-nav ul li a .icon {
  position: absolute;
  left: 0.75rem;
  top: 1.375rem;
  width: 16px;
  height: 16px;
}

.mobile-nav ul li ul {
  display: none;
}

.mobile-nav ul li ul.active {
  display: block;
}

.mobile-nav ul li ul li {
  text-transform: none;
}

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

.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);
}

.suggests .item-list {
  margin-top: -1.25rem;
  margin-bottom: -1.25rem;
}

.suggests .item {
  font-size: 0.875rem;
  margin: 1.25rem 0;
}

.suggests .item ul li {
  line-height: 1.8em;
  margin: 0 0 10px 0;
  padding: 0;
}

.suggests .item ul li:before {
  content: none;
}

.suggests .item .more {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  color: #ec1119;
}

.suggests .item .more:hover {
  text-decoration: underline;
}

.suggests .item .more .icon {
  width: 12px;
  height: 12px;
  margin-left: 10px;
}

@-webkit-keyframes showDropdown {
  0% {
    display: none;
    transform: translate(0, -100%);
  }
  5% {
    display: block;
    transform: translate(0, -100%);
  }
  100% {
    display: block;
    transform: translate(0, 0);
  }
}

@keyframes showDropdown {
  0% {
    display: none;
    transform: translate(0, -100%);
  }
  5% {
    display: block;
    transform: translate(0, -100%);
  }
  100% {
    display: block;
    transform: translate(0, 0);
  }
}

@-webkit-keyframes hideDropdown {
  0% {
    display: block;
    transform: translate(0, 0);
  }
  95% {
    display: block;
    transform: translate(0, -100%);
  }
  100% {
    display: none;
    transform: translate(0, -100%);
  }
}

@keyframes hideDropdown {
  0% {
    display: block;
    transform: translate(0, 0);
  }
  95% {
    display: block;
    transform: translate(0, -100%);
  }
  100% {
    display: none;
    transform: translate(0, -100%);
  }
}

@-webkit-keyframes showSearch {
  0% {
    display: none;
    max-width: 0;
  }
  5% {
    display: block;
    max-width: 0;
  }
  100% {
    display: block;
    max-width: 648px;
  }
}

@keyframes showSearch {
  0% {
    display: none;
    max-width: 0;
  }
  5% {
    display: block;
    max-width: 0;
  }
  100% {
    display: block;
    max-width: 648px;
  }
}

@-webkit-keyframes loadSlide {
  0% {
    max-width: 0;
  }
  100% {
    max-width: 100%;
  }
}

@keyframes loadSlide {
  0% {
    max-width: 0;
  }
  100% {
    max-width: 100%;
  }
}

/************************************************************************************
LAYOUT
*************************************************************************************/
.col2-l-set {
  display: flex;
}

.col2-l-set .content-col {
  padding-left: 50px;
  order: 1;
  flex-grow: 1;
}

.col2-l-set .side-col {
  flex: 0 0 288px;
  max-width: 288px;
  order: 0;
  margin-left: -12px;
}

.side-nav {
  background: #fff;
  margin: 0 0 2.5rem 0;
}

.side-nav ul {
  margin: 0;
}

.side-nav ul li {
  font-size: 0.9375rem;
  line-height: 1.3em;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #ebebeb;
}

.side-nav ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 1.4375rem 2rem 1.4375rem 2.75rem;
  position: relative;
}

.side-nav ul li a .icon {
  position: absolute;
  left: 0.9375rem;
  top: 1.5rem;
  width: 1rem;
  height: 1rem;
}

.side-nav ul li a:hover {
  color: #ec1119;
}

.side-nav ul li.has-subnav > a:after {
  content: '';
  width: 6px;
  height: 6px;
  display: block;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(-45deg);
  position: absolute;
  right: 1.25rem;
  top: 1.875rem;
}

.side-nav ul li.has-subnav.active > a {
  color: inherit;
}

.side-nav ul li ul {
  display: none;
}

.side-nav ul li.active > a {
  background: #dac287;
}

.side-nav ul li.opened ul {
  margin: 0;
  display: block;
}

.side-nav ul li.opened ul li {
  font-size: 0.875rem;
  margin: 0;
  padding: 0;
  border: none;
  line-height: 1.2em;
  text-transform: none;
}

.side-nav ul li.opened ul li a {
  border: none;
  padding: 0.9375rem 3rem 0.9375rem 2.75rem;
}

.side-nav ul li.opened ul li a:after {
  top: 1.25rem;
}

.side-nav ul li.opened ul li.opened ul {
  display: block;
}

.side-nav ul li.opened ul li ul {
  background: #fef8e5;
  display: none;
}

.side-nav ul li.opened ul li ul li {
  padding: 0;
}

.side-nav ul li.opened ul li ul li a {
  color: #655f4c;
  padding: 0.9375rem 3rem 0.9375rem 3.75rem;
}

.side-nav ul li.opened ul li ul li a:hover {
  color: #ec1119;
}

.side-nav ul li.opened ul li ul li a:before {
  content: '';
  position: absolute;
  left: 2.6875rem;
  top: 1.25rem;
  background: #655f4c;
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

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

.photogallery .item .img {
  position: relative;
  overflow: hidden;
}

.photogallery .item .img img {
  transition: 0.5s all;
  transform: scale(1);
  width: 100%;
}

.photogallery .item .img:hover img {
  transform: scale(1.05);
}

.post ul li {
  position: relative;
  padding-left: 28px;
}

.post ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5625rem;
  width: 12px;
  height: 12px;
  background: url("../img/li-arr-red.svg") center center no-repeat;
  background-size: cover !important;
}

.post ul li .label {
  font-size: 0.875rem;
  color: #ec1119;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .1em;
}

.post ul.unstyled li {
  padding: 0;
}

.post ul.unstyled li:before {
  content: none;
}

.post table {
  font-size: 13px;
  line-height: 1.5em;
  width: 100%;
}

.post table th {
  border-bottom: 1px solid #ed1c24;
  color: #ed1c24;
  padding: 0.625rem 0.625rem;
  text-align: left;
  vertical-align: middle;
}

.post table td {
  padding: 0.625rem 0.625rem;
}

.post table tr:nth-child(even) td {
  background: #fff;
}

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

.post table.phone-table th, .post table.phone-table td {
  padding: 0.9375rem;
}

.post table.phone-table td.phone a {
  white-space: nowrap;
}

.post .post-block {
  position: relative;
}

.post .block-head {
  margin-bottom: 2.5rem;
}

.post .block-head h1 {
  margin-bottom: 1.25rem;
}

.post .block-main-img {
  margin-right: -108px;
}

.post .block-excerpt {
  font-size: 1.125rem;
  line-height: 1.78em;
  font-weight: 600;
}

.post .meta {
  font-size: 0.875rem;
  line-height: 1.5em;
  font-weight: 600;
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
}

.post .meta .tag-list {
  display: inline-flex;
  margin-right: 20px;
}

.post .meta .tag-list ul {
  margin: -2px 0;
}

.post .meta .date {
  line-height: 1.5em;
}

.box, .box-hl, .box-std {
  background: #dfe0e2;
  padding: 2.5rem;
}

.box .files-list, .box-hl .files-list, .box-std .files-list {
  margin: 2.5rem -2.5rem -2.5rem -2.5rem;
}

.box .files-list .item-inner, .box-hl .files-list .item-inner, .box-std .files-list .item-inner {
  background: #dfe0e2;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1.875rem 2.5rem;
}

.box .files-list .item:last-child .item-inner, .box-hl .files-list .item:last-child .item-inner, .box-std .files-list .item:last-child .item-inner {
  padding-bottom: 2.5rem;
}

.box-hl {
  background: #dac287;
}

.box-hl h2 {
  color: #fff;
  max-width: 640px;
}

.box-hl .files-list .item-inner {
  background: #dac287;
}

.box-std {
  background: #fff;
  border-bottom: 1px solid #ec1119;
}

.spacer {
  height: 5rem;
}

.spacer.huge {
  height: 10rem;
}

.spacer.big {
  height: 6.25rem;
}

.spacer.medium {
  height: 3.75rem;
}

.spacer.small {
  height: 2.5rem;
}

.video {
  position: relative;
  display: block;
}

.video:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: 0.3s all;
}

.video .play {
  width: 8.1875rem;
  height: 5.625rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  background: url("../img/play.svg") center center no-repeat;
  background-size: cover !important;
  opacity: .9;
  transition: 0.3s all;
}

.video:hover .play {
  opacity: 1;
}

.video:hover:after {
  background: rgba(0, 0, 0, 0.2);
}

.video img {
  width: 100%;
}

.files-list {
  margin-bottom: 2.5rem;
}

.files-list:last-child {
  margin-bottom: 0;
}

.files-list .item {
  margin-top: -1px;
}

.files-list .item:first-child {
  margin-top: 0;
}

.files-list .item .img {
  flex: 0 0 3rem;
  max-width: 3rem;
}

.files-list .item .img .icon {
  width: 3rem;
  height: 3rem;
  color: #ec1119;
}

.files-list .item .text {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  padding-left: 1.5rem;
}

.files-list .item .desc {
  flex-grow: 1;
  padding-right: 1.5rem;
}

.files-list .item .head {
  font-size: 1.0625rem;
  margin: 0;
  line-height: 1.2em;
}

.files-list .item .info {
  font-size: 14px;
  line-height: 1.2em;
  color: #323232;
}

.files-list .item .link {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  display: flex;
  border: 1px solid #ec1119;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #ec1119;
}

.files-list .item .link .icon {
  width: 0.9375rem;
  flex: 0 0 0.9375rem;
  height: 0.9375rem;
}

.files-list .item-inner {
  display: flex;
  justify-content: flex-start;
  background: #fff;
  border: 1px solid #e2e2e2;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: #000;
  transition: 0.5s all;
}

.files-list .item-inner:hover {
  background: #dac287;
  border-color: #dac287;
}

.cat-list ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.cat-list ul li {
  font-size: 12px;
  margin: 2px 0;
  padding: 0 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.cat-list ul li a {
  color: #ec1119;
  text-decoration: none;
}

.cat-list ul li a:hover {
  color: #272728;
}

.big-list {
  margin-bottom: 2.5rem;
}

.big-list:last-child {
  margin-bottom: 0;
}

.big-list .item {
  margin-top: -1px;
  font-size: 1rem;
  line-height: 1.5em;
}

.big-list .item:first-child {
  margin-top: 0;
}

.big-list .item .img {
  flex: 0 0 2.5rem;
  max-width: 2.5rem;
}

.big-list .item .img .icon {
  width: 3rem;
  height: 3rem;
  color: #ec1119;
}

.big-list .item .img.img-odbor {
  font-size: 1.1875rem;
  line-height: 1em;
  width: 3.75rem;
  height: 3.75rem;
  flex: 0 0 3.75rem;
  max-width: 3.75rem;
  padding: 0 0.625rem;
  margin-bottom: -0.5rem;
  padding-bottom: 0.3125rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #ec1119;
}

.big-list .item .img.img-odbor .icon {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.big-list .item .text {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  padding-left: 1.5rem;
}

.big-list .item .desc {
  flex-grow: 1;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.big-list .item .desc p:last-child {
  margin-bottom: 0;
}

.big-list .item .head {
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0 0 0.625rem 0;
  line-height: 1.3em;
  flex: 0 0 100%;
}

.big-list .item .head:last-child {
  margin-bottom: 0;
}

.big-list .item .info {
  font-size: 14px;
  line-height: 1.2em;
  color: #323232;
}

.big-list .item .link {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  display: flex;
  border: 1px solid #ec1119;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #ec1119;
}

.big-list .item .link .icon {
  width: 0.9375rem;
  flex: 0 0 0.9375rem;
  height: 0.9375rem;
}

.big-list .item-inner {
  display: flex;
  justify-content: flex-start;
  background: #fff;
  color: #323232;
  border: 1px solid #e2e2e2;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: #000;
  transition: 0.5s all;
}

.big-list .item-inner:hover {
  background: #dac287;
  border-color: #dac287;
}

.medium-list {
  margin-bottom: 2.5rem;
  position: relative;
}

.medium-list h3 {
  margin-bottom: 2.5rem;
}

.medium-list:last-child {
  margin-bottom: 0;
}

.medium-list .item {
  font-size: 1rem;
  line-height: 1.5em;
  width: 100%;
}

.medium-list .item:first-child {
  margin-top: 0;
}

.medium-list .item:first-child .item-inner {
  border-top: 1px solid #e2e2e2;
}

.medium-list .item .text {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
}

.medium-list .item .desc {
  flex-grow: 1;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.medium-list .item .desc p:last-child {
  margin-bottom: 0;
}

.medium-list .item .head {
  font-size: 1.1875rem;
  font-weight: 700;
  margin: 0 0 0.625rem 0;
  line-height: 1.3em;
  flex: 0 0 100%;
}

.medium-list .item .head:last-child {
  margin-bottom: 0;
}

.medium-list .item .link {
  width: 3rem;
  height: 3rem;
  flex: 0 0 3rem;
  display: flex;
  border: 1px solid #ec1119;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #ec1119;
}

.medium-list .item .link .icon {
  width: 0.9375rem;
  flex: 0 0 0.9375rem;
  height: 0.9375rem;
}

.medium-list .item .meta {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.625rem 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.medium-list .item .meta .tag-list {
  margin: 10px 0;
  display: inline-flex;
  margin-right: 20px;
}

.medium-list .item .meta .tag-list ul {
  margin: 0;
}

.medium-list .item .meta .date {
  margin: 10px 0 !important;
}

.medium-list .item .txt {
  flex-grow: 1;
  width: 100%;
}

.medium-list .item-inner {
  display: flex;
  justify-content: flex-start;
  color: #323232;
  border-bottom: 1px solid #e2e2e2;
  padding: 1.25rem 1.5rem 1.25rem 1.5rem;
  text-decoration: none;
  color: #000;
  transition: 0.5s all;
}

.medium-list .item-inner:hover {
  background: #dac287;
  border-color: #dac287;
}

.news {
  padding: 1px;
}

.news .item-list {
  margin: 0;
}

.news .item {
  font-size: 14px;
  line-height: 1.7em;
  padding: 0;
  outline: 1px solid #e2e2e2;
  display: flex;
}

.news .item p:last-child {
  margin-bottom: 0;
}

.news .item .date {
  margin-bottom: 3.125rem;
}

.news .item h3 {
  color: #000;
}

.news .item-inner {
  width: 100%;
  background: #fff;
  padding: 3.125rem 3.75rem;
  text-decoration: none;
  color: #272728;
}

.news .item-inner:hover h3 {
  text-decoration: underline;
}

.news .foot {
  padding-top: 1.875rem;
}

.news .foot .more {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.news .foot .more .icon {
  margin-left: 10px;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  position: relative;
  left: 0;
  transition: 0.3s left;
}

.news .foot .more:hover {
  text-decoration: underline;
  color: #272728;
}

.news .foot .more:hover .icon {
  left: 5px;
}

.press-news {
  overflow: hidden;
}

.press-news .section-head {
  text-align: left;
  margin-bottom: 5rem;
}

.press-news .item-list {
  margin: 0 -30px;
}

.press-news .item {
  margin-bottom: 3.125rem;
  padding: 0 30px;
}

.press-news .item h3 a {
  color: #272728;
  text-decoration: none;
}

.press-news .item h3 a:hover {
  text-decoration: underline;
}

.press-news .item .meta {
  margin-bottom: 0.625rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.press-news .item:last-child {
  margin-bottom: 0;
}

.press-news .foot {
  padding-top: 1.875rem;
}

.press-news .foot .more {
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.press-news .foot .more .icon {
  margin-left: 10px;
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  position: relative;
  left: 0;
  transition: 0.3s left;
}

.press-news .foot .more:hover {
  text-decoration: underline;
  color: #272728;
}

.press-news .foot .more:hover .icon {
  left: 5px;
}

.images .item {
  margin-bottom: 1.5rem;
}

.images .item:last-child {
  margin-bottom: 0;
}

.date {
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin: 0;
}

.date .icon {
  width: 14px;
  height: 14px;
  color: #ec1119;
  margin-right: 10px;
}

.side-col-r {
  padding-left: 3rem;
}

.instagram {
  margin-bottom: -2.8125rem;
  max-width: 552px;
}

.instagram .head {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.instagram .head h2 {
  margin: 0.3125rem 0;
}

.instagram .head .icon {
  width: 1.625rem;
  height: 1.625rem;
  max-width: 1.625rem;
  flex: 0 0 1.625rem;
  margin: 0.3125rem 0;
  margin-right: 0.9375rem;
  color: #c6c7bf;
}

.instagram .item {
  margin-bottom: 24px;
}

.instagram .item .img a {
  height: 255px;
  display: block;
}

.instagram .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.facebook {
  margin-bottom: -2.8125rem;
}

.facebook .head {
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
}

.facebook .head h2 {
  margin: 0.3125rem 0;
}

.facebook .head .icon {
  width: 1.625rem;
  height: 1.625rem;
  max-width: 1.625rem;
  flex: 0 0 1.625rem;
  margin: 0.3125rem 0;
  margin-right: 0.9375rem;
  color: #c6c7bf;
}

.facebook .widget {
  width: 100%;
  height: 250px;
  background: #e3e3e3;
}

.fb-widget {
  max-width: 100%;
  overflow: hidden;
}

.interests {
  display: flex;
  margin: 0 -13px;
}

.interests .main {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
  display: flex;
}

.interests .main .item-inner {
  line-height: 1.7em;
  background: #272728;
  color: #828585;
  display: flex;
  flex-direction: column;
  padding: 0;
  outline: none;
}

.interests .main .item-inner .img {
  justify-content: space-between;
  position: relative;
  flex-grow: 1;
}

.interests .main .item-inner .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.interests .main .item-inner .img:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 39, 40, 0.3);
}

.interests .main .item-inner .img:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#272728+0,272728+100&0+0,1+100 */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(39, 39, 40, 0) 0%, #272728 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00272728', endColorstr='#272728',GradientType=0 );
  /* IE6-9 */
}

.interests .main .item-inner .text {
  padding: 0 3.75rem 3.125rem 3.75rem;
}

.interests .main .item-inner h3 {
  color: #c6c7bf;
  transition: 0.5s all;
}

.interests .main .item-inner:hover h3 {
  color: #fff;
}

.interests .side {
  flex: 0 0 100%;
  max-width: 100%;
}

.interests .item-list {
  margin: 0;
}

.interests .item {
  font-size: 14px;
  line-height: 1.7em;
  padding: 0;
  display: flex;
}

.interests .item p:last-child {
  margin-bottom: 0;
}

.interests .item .date {
  margin-bottom: 3.125rem;
}

.interests .item .img {
  margin-bottom: 3.125rem;
}

.interests .item .img .frame {
  width: 4rem;
  height: 4rem;
  background: #e3e3e3;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.interests .item .img .frame .icon {
  flex: 0 0 2.375rem;
  width: 2.375rem;
  height: 2.375rem;
}

.interests .item.volna-mista .img .frame {
  background: #c5daee;
  color: #4174a2;
}

.interests .item.telefonni-seznam .img .frame {
  background: #efcac8;
  color: #811109;
}

.interests .item.cistota .img .frame {
  background: #d1eabc;
  color: #30730b;
}

.interests .item.dotace .img .frame {
  background: #f6efb6;
  color: #dac287;
}

.interests .item-inner {
  width: 100%;
  background: #fff;
  color: #000;
  padding: 3.125rem 3.75rem;
  text-decoration: none;
  position: relative;
  outline: 1px solid #e2e2e2;
}

.interests .item-inner:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1px;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: 0.5s all;
}

.interests .item-inner:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 20;
}

.interests .item-inner:hover:after {
  background: #ec1119;
}

.persons .item {
  font-size: 14px;
  line-height: 1.5em;
  margin-bottom: 4.375rem;
  color: #4f4f4f;
}

.persons .item h2 {
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
}

.persons .item .subhead {
  font-size: 1.0625rem;
  line-height: 1.4em;
  font-weight: 600;
  color: #000;
  margin-bottom: 1.25rem;
}

.persons .item .text {
  max-width: 450px;
  padding-right: 30px;
}

.persons .item .img {
  flex: 0 0 9.375rem;
  max-width: 9.375rem;
  order: 1;
}

.persons .item .info {
  margin: -0.625rem 0;
}

.persons .item .info .item {
  margin: 0.625rem 0;
}

.persons .item .info ul li {
  padding: 0;
}

.persons .item .info ul li:before {
  content: none;
}

.persons .item .info ul:last-child {
  margin: 0;
}

.persons .item .info a {
  font-weight: 600;
  text-decoration: none;
}

.persons .item .info a:hover {
  text-decoration: underline;
}

.persons .item-inner {
  display: flex;
  justify-content: space-between;
}

ul.file-list li {
  padding-left: 2.1875rem;
  margin-bottom: 0.625rem;
  /*.icon-file {
			font-size: 8px;
			display: flex;
			align-items: center;
			justify-content: center;
			text-align: center;
			color: $red;
			position: absolute;
			left: 0;
			top: 0;
			@include rem(width, 24px);
			@include rem(height, 32px);	
			background: url('../img/icon-file.svg');
			background-size: cover !important;
		}*/
}

ul.file-list li:before {
  content: none;
}

.icon-small-txt:before,
.icon-small-jpg:before,
.icon-small-gif:before,
.icon-small-png:before,
.icon-small-pdf:before,
.icon-small-doc:before,
.icon-small-xls:before,
.icon-small-rtf:before {
  content: '';
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ec1119;
  position: absolute;
  left: 0;
  top: 0;
  width: 1.5rem;
  height: 2rem;
  background: url("../img/icon-file.svg");
  background-size: cover !important;
}

a.icon-small-txt,
a.icon-small-jpg,
a.icon-small-gif,
a.icon-small-png,
a.icon-small-pdf,
a.icon-small-doc,
a.icon-small-xls,
a.icon-small-rtf {
  padding-left: 2rem;
  position: relative;
  padding-top: 0.5rem;
}

.icon-small-txt:before {
  content: 'txt';
}

.icon-small-jpg:before {
  content: 'jpg';
}

.icon-small-gif:before {
  content: 'gif';
}

.icon-small-png:before {
  content: 'png';
}

.icon-small-pdf:before {
  content: 'pdf';
}

.icon-small-doc:before {
  content: 'doc';
}

.icon-small-xls:before {
  content: 'xls';
}

.icon-small-rtf:before {
  content: 'rtf';
}

.search-params {
  margin-bottom: 2.5rem;
  line-height: 1.1em;
}

.search-params p {
  margin-bottom: 0.625rem;
}

.search-params p:last-child {
  margin-bottom: 0;
}

.search-hl {
  line-height: 1.2em;
  font-weight: 600;
  background: #dac287;
  color: #000;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 15px;
}

.search-results .item {
  margin-bottom: 3.125rem;
}

.search-results .item .item-head {
  border-bottom: 1px solid #e2e2e2;
  padding-bottom: 15px;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
}

.search-results .item .head {
  display: flex;
  flex-wrap: wrap;
}

.search-results .item .head h3 {
  margin-right: 20px;
  margin-bottom: 0;
}

.search-results .item ul li a {
  color: #000000;
  text-decoration: none;
}

.search-results .item ul li a:hover {
  color: #ec1119;
}

.more-link {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
}

.more-link:hover {
  text-decoration: underline;
}

.more-link .icon {
  width: 12px;
  height: 12px;
  margin-left: 10px;
}

.more-link-back {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
}

.more-link-back:hover {
  text-decoration: underline;
}

.more-link-back .icon {
  width: 12px;
  height: 12px;
  margin-right: 10px;
}

.error-404 {
  text-align: center;
}

.error-404 .img {
  display: block;
  display: flex;
  justify-content: center;
  margin: 0 auto 50px auto;
}

.error-404 .section-head {
  margin-bottom: 30px;
}

.error-404 .foot {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.error-404 .search-input {
  display: block !important;
  margin: 0;
}

.error-404 .search {
  max-width: 400px;
  flex-grow: 1;
  padding: 0 15px;
  margin: 20px 0;
}

.error-404 .link {
  padding: 0 15px;
  margin: 20px 0;
}

.calendar {
  margin-bottom: 5rem;
}

.calendar-tabs {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 10px;
  border-bottom: 1px solid #cccbca;
  margin-bottom: 1.875rem;
}

.calendar-tabs .tab-nav ul {
  display: flex;
  margin: 0 -0.625rem;
}

.calendar-tabs .tab-nav ul li {
  margin: 0;
  padding: 0 0.625rem;
}

.calendar-tabs .tab-nav ul li a {
  font-size: 0.875rem;
  font-weight: 500;
  border-bottom: 8px solid transparent;
  color: #000;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  height: 5rem;
  white-space: nowrap;
  transition: 0.3s all;
}

.calendar-tabs .tab-nav ul li a .icon {
  width: 16px;
  height: 16px;
  margin-right: 0.375rem;
}

.calendar-tabs .tab-nav ul li a:hover {
  border-color: #dac287;
}

.calendar-tabs .tab-nav ul li.active a {
  border-color: #dac287;
}

.calendar-head {
  padding-top: 10px;
  margin-bottom: 1.875rem;
}

.calendar-switch {
  display: flex;
  align-items: center;
}

.calendar-switch .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-grow: 1;
  width: 100%;
  margin: 1.25rem 0;
}

.calendar-switch .prev, .calendar-switch .next {
  background: #fff;
  border-radius: 50%;
  color: #ec1119;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ececec;
  width: 2.875rem;
  height: 2.875rem;
  flex: 0 0 2.875rem;
  transition: 0.3s all;
}

.calendar-switch .prev .icon, .calendar-switch .next .icon {
  width: 1.125rem;
  height: 1.125rem;
}

.calendar-switch .prev:hover, .calendar-switch .next:hover {
  color: #fff;
  border-color: #ec1119;
  background: #ec1119;
}

.calendar-switch .head {
  display: flex;
  align-items: center;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2em;
  padding: 0 15px;
}

.calendar-switch .head.small {
  font-size: 1.75rem;
  line-height: 1.2em;
}

.calendar-filter .inner {
  flex-grow: 1;
  width: 100%;
  margin: 1.25rem 0;
}

.calendar-filter .cell {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-end;
}

.calendar-body {
  font-size: 0.875rem;
  font-weight: 500;
}

.calendar-body ul {
  margin-bottom: 0.625rem;
}

.calendar-body ul li {
  padding: 0;
  line-height: 1.3em;
  margin-bottom: 0.625rem;
}

.calendar-body .num {
  font-size: 1.1875rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: block;
}

.date-cell-set {
  display: flex;
  flex-wrap: wrap;
}

.date-cell {
  width: 14.28571%;
  flex: 0 0 14.28571%;
  display: flex;
  flex-direction: column;
}

.date-cell .cell-head {
  font-size: 1.1875rem;
  padding-bottom: 1.25rem;
  font-weight: 700;
}

.date-cell .cell-content {
  padding: 1.25rem;
  border-top: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  width: 100%;
  flex-grow: 1;
  background: #fff;
  position: relative;
}

.date-cell:last-child .cell-content {
  border-right: none;
}

.date-cell.weekend .cell-content {
  background: #f0f0f0;
}

.date-cell.filled {
  cursor: pointer;
}

.date-cell.filled .cell-content {
  background: #dac287;
}

.date-cell.filled .cell-content .num {
  color: #fff;
}

.date-cell.filled .calendar-popup {
  display: none !important;
}

.date-cell:hover .btn-add {
  display: inline-flex;
}

.date-cell .btn-add {
  display: none;
}

.calendar-wrap {
  overflow-x: auto;
}

.calendar-wrap .calendar-body {
  min-width: 930px;
}

.calendar-week .date-cell .cell-content {
  min-height: 21.25rem;
}

.calendar-month .date-cell .cell-content {
  min-height: 10.625rem;
}

.calendar-popup {
  background: #fff;
  padding: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 4.0625rem;
  z-index: 20;
  width: 1000%;
  max-width: 480px;
}

.calendar-popup:after {
  content: '';
  position: absolute;
  left: 12px;
  top: -12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 12px 12px;
  border-color: transparent transparent #fff transparent;
}

.calendar-popup .calendar-events {
  margin-bottom: 0;
}

.calendar-events {
  font-size: 1rem;
  color: #656565;
  font-weight: 500;
  margin-bottom: 5rem;
}

.calendar-events .event-item {
  margin-bottom: 1.25rem;
}

.calendar-events .event-item:last-child {
  margin-bottom: 0;
}

.calendar-events .event-item .head {
  font-size: 1.0625rem;
  line-height: 1.3em;
  font-weight: 700;
  margin-bottom: 0;
  color: #ec1119;
}

.calendar-events .event-item .info {
  margin-bottom: 0;
}

.calendar-export {
  padding-top: 2.5rem;
}

.calendar-export ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0 -10px;
}

.calendar-export ul li {
  padding: 0 10px;
}

.calendar-export ul li a {
  display: flex;
  align-items: center;
}

.calendar-export ul li a .icon {
  margin-right: 10px;
}

.tag-list ul {
  display: flex;
}

.tag-list ul li {
  margin: 2px 0;
  padding: 0;
}

.tag-list ul li:before {
  content: none;
}

.tag-list ul li a {
  font-size: 0.875rem;
  line-height: 1.5em;
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  border-radius: 5px;
}

.tag-list ul li a:hover {
  border-color: #ec1119;
  background: #ec1119;
  color: #fff;
}

.tag-list.alt ul li a {
  background: #ec1119;
  color: #fff;
}

.tag-list.alt ul li a:hover {
  border-color: #dac287;
  background: #dac287;
}

.login-box {
  background: #fff;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  max-width: 935px;
  margin: 0 auto;
}

.login-box .box-inner {
  margin: 0;
}

.login-box .box-img {
  padding: 0;
  background: #dac287;
  display: flex;
  align-items: flex-end;
}

.login-box .box-text {
  padding: 4rem;
}

.logged-in {
  padding: 0.9375rem 0;
  text-align: right;
}

.user-nav {
  display: flex;
  justify-content: center;
}

.user-nav ul {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.user-nav ul li a {
  font-weight: 600;
  border: 2px solid #ec1119;
  text-decoration: none;
  padding: 0.1875rem 1.25rem;
  border-radius: 5px;
  display: inline-flex;
}

.user-nav ul li a:hover {
  background: #ec1119;
  color: #fff;
}

.links .item {
  margin-bottom: 1.875rem;
}

.links .item .img {
  display: block;
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  overflow: hidden;
}

.links .item .img img {
  width: 100%;
  transform: scale(1);
  transition: 0.3s all;
}

.links .item .img:after {
  content: '';
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.links .item .text {
  font-size: 1.25rem;
  line-height: 1.3em;
  font-weight: 700;
  text-align: center;
  padding: 15px;
  width: 100%;
  flex: 0 0 100%;
  margin-left: -100%;
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.links .item-inner {
  display: flex;
  color: #000;
}

.links .item-inner:hover .img img {
  transform: scale(1.15);
}

form #contact_form_website, #contact_form_email {
  display: none;
}

form.std select.--on-white-bg {
  background: #f7f7f7;
  color: #787878;
  transition: all 1s;
}

form.std select.--on-white-bg.--highlight {
  background: #f9f08b;
  border-color: #f7ea5a;
}

form.std select.--w-auto {
  width: auto;
}

form.std .box-select-fiter {
  padding: 1rem 0 2rem;
  text-align: right;
}

form.std .box-select-fiter input, form.std .box-select-fiter select {
  vertical-align: middle;
}

form.std .box-select-fiter select {
  background: white;
  width: auto;
  min-width: 220px;
  margin-right: 0.5rem;
}

.box.post-block.--lighter {
  background: #e9e9e9;
}

.progress.com {
  display: inline-block;
  vertical-align: middle;
  height: 2.5em;
  line-height: 2.5em;
  font-size: 1em;
  font-weight: bold;
  min-width: 100px;
  color: black;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid white;
}

.progress.com .num {
  position: relative;
  z-index: 2;
}

.progress.com:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  z-index: 0;
}

.progress.com.--pc-0 {
  background: rgba(255, 0, 0, 0.6);
  border-color: red;
}

.progress.com.--pc-0:after {
  width: 0;
  background: red;
}

.progress.com.--pc-25 {
  background: rgba(255, 115, 0, 0.6);
  border-color: #ff7300;
}

.progress.com.--pc-25:after {
  width: 25%;
  background: #ff7300;
}

.progress.com.--pc-50 {
  background: rgba(255, 165, 0, 0.6);
  border-color: orange;
}

.progress.com.--pc-50:after {
  width: 50%;
  background: orange;
}

.progress.com.--pc-75 {
  background: rgba(243, 237, 22, 0.6);
  border-color: #f3ed16;
}

.progress.com.--pc-75:after {
  width: 75%;
  background: #f3ed16;
}

.progress.com.--pc-100 {
  background: rgba(18, 232, 18, 0.6);
  border-color: #12e812;
}

.progress.com.--pc-100:after {
  width: 100%;
  background: #12e812;
}

.text-bold {
  font-weight: bold;
}

[class][class][class].text-right {
  text-align: right;
}

/************************************************************************************
FOOTER
*************************************************************************************/
.footer {
  font-size: 14px;
  line-height: 2em;
  font-weight: 400;
  background: #272728;
  color: #828585;
}

.footer .f_1 {
  padding: 5.3125rem 0 2.1875rem 0;
}

.footer .f_2 .inner {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  padding: 2.5rem 0 0.9375rem 0;
}

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

.footer h3 {
  font-size: 14px;
  line-height: 1.3em;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #c6c7bf;
}

.footer ul li {
  margin-bottom: 4px;
  padding: 0 0 0 24px;
  position: relative;
}

.footer ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: url("../img/li-arr.svg") center center no-repeat;
  background-size: cover !important;
}

.footer ul.unstyled li {
  padding: 0;
}

.footer ul.unstyled li:before {
  content: none;
}

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

.footer a {
  color: #828585;
  text-decoration: none;
  transition: 0.3s all;
}

.footer a:hover {
  color: #fff;
}

.footer a.hl {
  color: #dac287;
}

.footer a.hl:hover {
  color: #fff;
}

.footer .logos .item-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -0.9375rem;
}

.footer .logos .item {
  margin: 0.3125rem 0;
  padding: 0 0.9375rem;
}

.footer .mw {
  position: relative;
  color: #c6c6c6;
  display: block;
}

.footer .mw:hover {
  color: #00daee;
}

.footer .mw .text {
  position: absolute;
  left: 0;
  top: 0;
  text-indent: -80000px;
  display: block;
}

.footer .mw .icon-mw {
  width: 70px;
  height: 30px;
}

.footer .orwin {
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  transition: 0.3s all;
  opacity: 0.5;
}

.footer .orwin:hover {
  filter: url("data:image/svg+xml;utf8,&lt;svg xmlns='http://www.w3.org/2000/svg'&gt;&lt;filter id='grayscale'&gt;&lt;feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
  -webkit-filter: grayscale(0%);
  opacity: 1;
}

.footer .orwin .text {
  position: absolute;
  left: 0;
  top: 0;
  text-indent: -80000px;
  display: block;
}

.social-nav ul {
  display: flex;
  margin: 0 -0.3125rem;
}

.social-nav ul li {
  margin: 0.25rem 0;
  padding: 0 0.3125rem;
}

.social-nav ul li:before {
  content: none;
}

.social-nav ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #000;
  color: #fff;
}

.social-nav ul li a .icon {
  width: 1.5625rem;
  height: 1.5625rem;
}

.social-nav ul li.fb a {
  background: #3b5998;
}

.social-nav ul li.tw a {
  background: #39a2f2;
}

.social-nav ul li.ig a {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.loader-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.spinner {
  font-size: 30px;
  position: absolute;
  display: inline-block;
  width: 1em;
  height: 1em;
  left: 50%;
  top: 50%;
  z-index: 1;
}

.spinner div {
  position: absolute;
  left: 0.4629em;
  bottom: 0;
  width: 0.074em;
  height: 0.2777em;
  border-radius: 0.5em;
  background-color: transparent;
  transform-origin: center -0.2222em;
  -webkit-animation: spinner-fade 1s infinite linear;
  animation: spinner-fade 1s infinite linear;
}

.spinner div:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  transform: rotate(0deg);
}

.spinner div:nth-child(2) {
  -webkit-animation-delay: 0.083s;
  animation-delay: 0.083s;
  transform: rotate(30deg);
}

.spinner div:nth-child(3) {
  -webkit-animation-delay: 0.166s;
  animation-delay: 0.166s;
  transform: rotate(60deg);
}

.spinner div:nth-child(4) {
  -webkit-animation-delay: 0.249s;
  animation-delay: 0.249s;
  transform: rotate(90deg);
}

.spinner div:nth-child(5) {
  -webkit-animation-delay: 0.332s;
  animation-delay: 0.332s;
  transform: rotate(120deg);
}

.spinner div:nth-child(6) {
  -webkit-animation-delay: 0.415s;
  animation-delay: 0.415s;
  transform: rotate(150deg);
}

.spinner div:nth-child(7) {
  -webkit-animation-delay: 0.498s;
  animation-delay: 0.498s;
  transform: rotate(180deg);
}

.spinner div:nth-child(8) {
  -webkit-animation-delay: 0.581s;
  animation-delay: 0.581s;
  transform: rotate(210deg);
}

.spinner div:nth-child(9) {
  -webkit-animation-delay: 0.664s;
  animation-delay: 0.664s;
  transform: rotate(240deg);
}

.spinner div:nth-child(10) {
  -webkit-animation-delay: 0.747s;
  animation-delay: 0.747s;
  transform: rotate(270deg);
}

.spinner div:nth-child(11) {
  -webkit-animation-delay: 0.83s;
  animation-delay: 0.83s;
  transform: rotate(300deg);
}

.spinner div:nth-child(12) {
  -webkit-animation-delay: 0.913s;
  animation-delay: 0.913s;
  transform: rotate(330deg);
}

@-webkit-keyframes spinner-fade {
  0% {
    background-color: #69717d;
  }
  100% {
    background-color: transparent;
  }
}

@keyframes spinner-fade {
  0% {
    background-color: #69717d;
  }
  100% {
    background-color: transparent;
  }
}

/************************************************************************************
MEDIA QUERIES
*************************************************************************************/
/*========================= Viewport width 1399px and lower =========================*/
@media screen and (max-width: 1399px) {
  .post .block-main-img {
    margin-right: 0;
  }
}

/*========================= Viewport width 1199px and lower =========================*/
@media screen and (max-width: 1199px) {
  html {
    font-size: 15px;
  }
  h1, .h1 {
    font-size: 1.875rem;
  }
  h1.big, .h1.big {
    font-size: 2.5rem;
    line-height: 1.3em;
  }
  h2, .h2 {
    font-size: 1.75rem;
  }
  h2.huge, .h2.huge {
    font-size: 3.75rem;
  }
  h2.big, .h2.big {
    font-size: 1.75rem;
  }
  .post .block-main-img {
    margin-right: 0;
  }
  .header .logo {
    max-width: 160px;
  }
  .main-nav ul {
    margin: 0 -0.5rem;
  }
  .main-nav ul li {
    padding: 0 0.5rem;
  }
  .main-nav ul li a {
    font-size: 13px;
  }
  .video .play {
    width: 5.75rem;
    height: 3.9375rem;
  }
  .calendar-head .calendar-switch .head, .calendar-head .calendar-switch .head.small {
    font-size: 1.5625rem;
  }
}

/*========================= Viewport width 991px and lower =========================*/
@media screen and (max-width: 991px) {
  html {
    font-size: 14px;
  }
  h2.huge {
    font-size: 3rem;
  }
  .block {
    padding: 3.75rem 0;
  }
  .spacer {
    height: 3.75rem;
  }
  .header .inner {
    height: 6.25rem;
  }
  .header .search-trig {
    margin-left: 0;
  }
  .teaser-hp {
    padding-bottom: 3.75rem;
  }
  .teaser-hp .text {
    width: 23.125rem;
    flex: 0 0 23.125rem;
  }
  .main-nav {
    display: none;
  }
  .nav-btn {
    display: block;
  }
  .mobile-nav-wrap {
    display: block;
  }
  .col2-l-set .content-col {
    padding-left: 40px;
  }
  .col2-l-set .side-col {
    max-width: 16.25rem;
    flex: 0 0 16.25rem;
  }
  .side-col-r {
    padding-left: 0;
    padding-top: 5rem;
  }
  .interests .item-inner {
    padding: 1.875rem;
  }
  .interests .main .item-inner .text {
    padding: 0 1.875rem 1.875rem 1.875rem;
  }
  .news .item-inner {
    padding: 1.875rem;
  }
  .instagram {
    margin-bottom: 2.5rem;
  }
  .facebook {
    margin-bottom: 2.5rem;
  }
  .persons .item .img {
    order: 0;
    max-width: 100px;
    flex: 0 0 100px;
  }
  .persons .item .text {
    padding-right: 0;
    padding-left: 30px;
  }
  .search-input {
    margin: 0 1.875rem;
  }
  .date-cell .cell-content {
    padding: 0.9375rem;
  }
  .box, .box-hl, .box-std {
    padding: 1.875rem 1.5625rem;
  }
}

/*========================= Viewport width 767px and lower =========================*/
@media screen and (max-width: 767px) {
  .block {
    padding: 2.5rem 0;
  }
  .spacer {
    height: 2.5rem;
  }
  .teaser-hp {
    padding-bottom: 2.5rem;
  }
  .teaser-hp .teaser-content {
    flex-wrap: wrap;
  }
  .teaser-hp .img {
    order: 0;
    margin: 0 0 1.25rem 0;
  }
  .teaser-hp .text {
    order: 1;
    max-width: 100%;
    flex: 0 0 100%;
  }
  .teaser-hp .text .head {
    margin-right: 0;
  }
  .col2-l-set {
    display: block;
  }
  .col2-l-set .content-col {
    padding-left: 0;
    display: block;
  }
  .col2-l-set .side-col {
    max-width: 100%;
    flex: 0 0 100%;
    display: block;
  }
  .side-nav {
    display: none;
  }
  .interests {
    margin: 0 -12px;
    flex-wrap: wrap;
  }
  .interests .main {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .interests .main .item-inner .text {
    padding: 0 15px 15px 15px;
  }
  .interests .side {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .interests .item-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  .table-wrap {
    overflow-x: scroll;
    max-width: 100%;
  }
  .table-wrap table {
    width: 750px;
  }
  .login-box .box-text {
    padding: 2.5rem;
  }
}

/*========================= Viewport width 575px and lower =========================*/
@media screen and (max-width: 575px) {
  html {
    font-size: 13px;
  }
  body {
    font-size: 1.125rem;
  }
  h2.huge {
    font-size: 2.5rem;
  }
  .teaser-hp .text h2 .more {
    top: -3px;
  }
  .breadcrumbs ul li {
    display: none;
  }
  .breadcrumbs ul li:last-child, .breadcrumbs ul li:nth-last-child(2) {
    display: block;
  }
  .footer .f_1 {
    padding: 2.5rem 0;
  }
  .post .box, .post .box-hl {
    padding: 30px 15px;
  }
  .post .box .files-list, .post .box-hl .files-list {
    margin: 30px -15px -30px -15px;
  }
  .post .box .files-list .item-inner, .post .box-hl .files-list .item-inner {
    padding: 15px;
  }
  .persons .item .img {
    max-width: 80px;
    flex: 0 0 80px;
  }
  .persons .item .text {
    padding-left: 20px;
  }
  .photogallery .item-list {
    margin: 0 -10px;
  }
  .photogallery .item-list .item {
    padding: 0 10px;
  }
  .instagram {
    mx-width: 360px;
  }
  .files-list .item-inner,
  .big-list .item-inner,
  .medium-list .item-inner {
    padding-left: 15px;
    padding-right: 15px;
  }
  img.right {
    float: none;
    padding: 0;
    margin-bottom: 10px;
  }
  img.left {
    float: none;
    padding: 0;
    margin-bottom: 10px;
  }
  .header .search-input.active {
    position: absolute;
    left: 0;
    top: 6.25rem;
    height: 6.25rem;
    padding: 15px 15px;
    width: 100%;
    margin: 0;
    background: #fff;
  }
  .header .search-input.active form {
    position: relative;
  }
  .header .search-input.active .btn {
    right: 0;
  }
  .main-nav-dropdown#vyhledavani {
    top: 6.25rem;
  }
  .post table.phone-table tr {
    display: block;
  }
  .post table.phone-table tr:first-child {
    border-top: 1px solid #ec1119;
  }
  .post table.phone-table td, .post table.phone-table th {
    display: block;
    width: 100%;
  }
  .post table.phone-table th, .post table.phone-table thead {
    display: none;
  }
  .post table.phone-table td {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .post table.phone-table td.name:before {
    content: 'Jméno: ';
    color: #ec1119;
    font-weight: 600;
  }
  .post table.phone-table td.department {
    text-align: right;
    flex-wrap: nowrap;
  }
  .post table.phone-table td.department:before {
    content: 'Funkce: ';
    color: #ec1119;
    font-weight: 600;
  }
  .post table.phone-table td.phone {
    display: block;
    text-align: right;
  }
  .post table.phone-table td.phone a {
    display: block;
    margin-bottom: 10px;
  }
  .post table.phone-table td.phone a:last-child {
    margin-bottom: 0;
  }
  .post table.phone-table td.phone:before {
    content: 'Telefon: ';
    color: #ec1119;
    font-weight: 600;
    float: left;
  }
  .login-box {
    max-width: 467px;
    margin: 0 auto;
  }
  .login-box .box-img {
    order: 1;
    display: none;
  }
  .login-box .box-text {
    order: 0;
  }
  .mobile-hidden {
    display: none !important;
  }
}

@media print {
  @page {}  body {
    font-size: 8pt;
    line-height: 1.5em;
    font-weight: 400;
    padding: 0;
    margin: 0;
    background: #fff;
  }
  h1, h1.big {
    font-size: 20pt;
    line-height: 1.2em;
    margin-bottom: 20pt;
  }
  h2, h2.big {
    font-size: 18pt;
    line-height: 1.2em;
  }
  h2.huge {
    font-size: 28pt;
    line-height: 1.2em;
  }
  h3 {
    font-size: 16pt;
    line-height: 1.2em;
  }
  h4 {
    font-size: 16pt;
    line-height: 1.2em;
  }
  img.right, img.left {
    float: none;
    padding: 0;
  }
  .header, .footer, .logged-in {
    display: none;
  }
  .teaser-hp {
    padding-bottom: 30pt;
  }
  .teaser-hp .teaser-content {
    display: block;
  }
  .teaser-hp .desc {
    font-size: 12pt;
    line-height: 1.5em;
  }
  .teaser-hp .text {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .teaser-hp .text .cat-list {
    margin-bottom: 10px;
  }
  .teaser-hp .text h2 .more {
    display: none;
  }
  .teaser-hp .img {
    margin-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .teaser-hp .teaser-nav {
    display: none;
  }
  .teaser-slider .glide__slides {
    width: 100% !important;
    transform: translate3d(0, 0, 0) !important;
  }
  .teaser-slider .glide__slide {
    width: 100% !important;
    display: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .teaser-slider .glide__slide.glide__slide--active {
    display: block;
  }
  .col2-l-set .content-col {
    padding-left: 0;
  }
  .col2-l-set .side-col {
    display: none;
  }
  .post .block-main-img {
    margin-right: 0;
  }
  .post .block-excerpt {
    font-size: 10pt;
    line-height: 1.3em;
  }
  .post .tag-list ul {
    padding-left: 0;
  }
  .post .tag-list ul li {
    list-style-type: none;
  }
  .post ul {
    padding-left: 15pt;
  }
  .post ul li {
    padding-left: 0;
    line-height: 1.5em;
    list-style-type: disc;
  }
  .post ul li:before {
    content: none;
  }
  .post ol {
    margin-bottom: 0;
  }
  .post ol ol {
    padding-left: 10pt;
    margin-bottom: 0;
  }
  .post ol li ul {
    padding-left: 0;
    margin-bottom: 0;
    padding-left: 10pt;
  }
  .post ol li ul li {
    padding-left: 0;
    list-style-type: disc;
  }
  .post table {
    font-size: 8pt;
    line-height: 1.3em;
  }
  .post table td, .post table th {
    padding: 5pt 5pt 5pt 0;
  }
  .post table td:first-child, .post table th:first-child {
    padding-left: 0;
  }
  .pager {
    display: none;
  }
  .spacer {
    height: 35pt;
  }
  .block {
    padding: 20pt 0;
  }
  .block.alt {
    background: none;
  }
  .breadcrumbs ul {
    margin: 0;
  }
  .breadcrumbs li {
    font-size: 8pt;
    padding-left: 0;
  }
  .breadcrumbs li a {
    color: #000;
  }
  .breadcrumbs li:after {
    content: none;
  }
  .btn {
    background: none;
    color: #ec1119;
    height: auto;
    padding: 10pt;
  }
  .btn .icon {
    color: #ec1119;
  }
  .file-list a {
    padding-left: 0;
  }
  .file-list a:before {
    content: none !important;
  }
  .big-list .item, .medium-list .item, .files-list .item {
    font-size: 8pt;
    line-height: 1.5em;
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
  .big-list .item .head, .medium-list .item .head, .files-list .item .head {
    font-size: 11pt;
    line-height: 1.3em;
    font-weight: 600;
    margin-bottom: 5pt;
  }
  .big-list .item .head:last-child, .medium-list .item .head:last-child, .files-list .item .head:last-child {
    margin-bottom: 0;
  }
  .big-list .item .link, .medium-list .item .link, .files-list .item .link {
    flex: 0 0 25pt;
    width: 25pt;
    height: 25pt;
  }
  .big-list .item .img .icon, .medium-list .item .img .icon, .files-list .item .img .icon {
    flex: 0 0 25pt;
    width: 25pt;
    height: 25pt;
  }
  .big-list .item .text, .medium-list .item .text, .files-list .item .text {
    padding-left: 0;
    align-items: center;
  }
  .big-list .item-inner, .medium-list .item-inner, .files-list .item-inner {
    padding: 5pt 10pt;
  }
  .files-list .item .info {
    font-size: 8pt;
    line-height: 1.5em;
  }
  .video .play {
    display: none;
  }
  .persons .item .info ul {
    padding: 0;
  }
  .persons .item .info ul li {
    padding: 0;
    list-style-type: none;
  }
  .persons .item-inner {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
  .box, .box-hl, .box-std {
    padding: 15pt;
    display: none;
  }
  .box .files-list, .box-hl .files-list, .box-std .files-list {
    margin: 0;
  }
  .side-col-r {
    padding-left: 0;
    padding-top: 40pt;
  }
  .news .item {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .news .item .date {
    margin-bottom: 10pt;
  }
  .news .item-inner {
    padding: 15pt;
  }
  .news .foot {
    display: none;
  }
  .press-news .section-head {
    margin-bottom: 20pt;
  }
  .press-news .item-list {
    margin: 0 !important;
  }
  .press-news .item {
    padding: 0;
    margin-bottom: 20pt;
  }
  .press-news .item .meta {
    display: block;
  }
  .press-news .item .meta .date {
    margin-bottom: 10pt;
  }
  .press-news .foot {
    display: none;
  }
  .news .item {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
  .interests {
    margin: 0;
  }
  .interests .item {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
  .interests .item .img {
    margin-bottom: 0;
    float: left;
    margin-right: 20pt;
  }
  .interests .item-inner {
    padding: 15pt;
  }
  .interests .main {
    display: none;
  }
  .interests .side {
    max-width: 100%;
    flex: 0 0 100%;
  }
  .tabs .tab-content {
    width: 100% !important;
  }
  .tabs .tab-content .tab {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .interests {
    display: block;
  }
  .tag-list ul li a {
    padding: 0 5pt;
  }
  .photogallery .item-list {
    margin-left: -15px;
    margin-right: -15px;
  }
  .photogallery .item {
    float: left;
    width: 50%;
    padding: 0 15px;
  }
  .photogallery .item .img img {
    width: auto;
  }
  .mobile-hidden {
    display: none !important;
  }
  h1, h2, h3 {
    -moz-column-break-inside: avoid;
    break-inside: avoid;
  }
  img, pre {
    break-inside: avoid-page;
  }
  p {
    orphans: 4;
  }
  .container {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
  }
  .container .row {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  .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 {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
  }
  .links {
    display: none;
  }
}

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