@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

.contact {display: none;}

html,
body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #838487;
  font-family: "ff-meta-web-pro", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  padding: 0;
}

h1 {
  color: #c2151c;
}

.container {
  transition: all 0.5s ease;
}

.container.is-active {
  -webkit-filter: blur(8px);
  filter: blur(8px);
}

a {
  text-decoration: none;
  color: #c2151c;
  transition: color 0.4s ease-in-out;
}

a:hover {
  color: #a7a9ac;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 16vh;
}

@media all and (max-width: 51em) {
  header {
    height: 90px;
  }
}

@media all and (min-width: 51em) {
  header {
    min-height: 90px;
  }
}

@media all and (max-width: 27em) {
  header {
    height: 75px;
  }
}

header #logo {
  margin-left: 20px;
  height: 74px;
  width: auto;
	padding-top: 25px;
  padding-bottom: 30px;
}

@media all and (max-width: 27em) {
  header #logo {
    margin-left: 10px;
    padding-top: 5px;
    height: 60px;
  }
}

@media all and (min-width: 75em) {
  header #logo {
    height: 88px;
  }
}

@media all and (min-width: 112em) {
  header #logo {
    height: 130px;
  }
}

@media all and (min-width: 130em) {
  header #logo {
    height: 160px;
  }
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

header ul.nav.menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin: 0;
  padding: 0 30px 0 0;
}

header ul.nav.menu li {
  list-style-type: none;
  font-family: "ff-meta-web-pro", sans-serif;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 0.95;
}

@media all and (min-width: 87em) {
  header ul.nav.menu li {
    font-size: 2em;
  }
}

@media all and (min-width: 112em) {
  header ul.nav.menu li {
    font-size: 2.5em;
  }
}

@media all and (min-width: 130em) {
  header ul.nav.menu li {
    font-size: 3.5em;
  }
}

header ul.nav.menu li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #a7a9ac;
  transition: color 0.4s ease-in-out;
}

header ul.nav.menu li a:hover {
  color: #c2151c;
}

header ul.nav.menu li.current.active {
  font-weight: bold;
}

header ul.nav.menu li.current.active a {
  color: #c2151c;
}

@media all and (max-width: 51em) {
  header ul.nav.menu {
    display: none;
  }
}

.toggle {
  height: 45px;
  width: 45px;
  position: absolute;
  right: 20px;
  top: 15px;
  padding: 6px;
  border: 5px solid transparent;
  border-radius: 100%;
  transition: 0.3s;
  cursor: pointer;
  overflow: hidden;
  z-index: 1000;
}

@media all and (min-width: 51em) {
  .toggle {
    display: none;
  }
}

.toggle:after {
  content: "";
  width: 84%;
  height: 84%;
  left: 0;
  top: 0;
  position: absolute;
  border: 5px solid transparent;
  border-radius: 100%;
}

.toggle.is-active .bar {
  background-color: #d7d2d2;
}

.toggle.is-active .bar:nth-of-type(1) {
  -ms-transform: translateY(12px) rotate(45deg);
  transform: translateY(12px) rotate(45deg);
}

.toggle.is-active .bar:nth-of-type(2) {
  -ms-transform: translateX(100px);
  transform: translateX(100px);
  transition: 0.6s;
}

.toggle.is-active .bar:nth-of-type(3) {
  -ms-transform: translateY(-12px) rotate(-45deg);
  transform: translateY(-12px) rotate(-45deg);
}

@media all and (max-width: 27em) {
  .toggle {
    top: 4px;
    right: 10px;
  }
}

.toggle .bar {
  height: 5px;
  width: 40px;
  display: block;
  margin: 7px auto;
  position: relative;
  background-color: #838487;
  border-radius: 10px;
  transition: 0.4s;
}

nav.nav_mobile {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -100;
  height: 100%;
  width: calc(100% - 4em);
  padding: 2em;
  opacity: 0;
  -ms-transform: scale(0.85);
  transform: scale(0.85);
  transition: 0.5s;
  background-color: rgba(51, 51, 51, 0.75);
}

nav.nav_mobile.is-active {
  display: block;
  z-index: 999;
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  transition: 0.5s;
}

nav.nav_mobile ul {
  padding: 3.5em;
}

nav.nav_mobile ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  list-style-type: none;
}

nav.nav_mobile ul li a {
  text-decoration: none;
  font-size: 1.7em;
  color: #d7d2d2;
  padding: 1em 0;
  font-weight: 300;
  display: block;
  transition: 0.5s;
}

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

nav.nav_mobile ul li a:hover {
  opacity: 0.45;
  transition: 0.5s;
  padding: 1em;
}

@media all and (max-width: 27em) {
  nav.nav_mobile ul {
    padding: 1.5em 0em;
  }
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

.main {
  position: relative;
  height: calc(84vh - 30px);
}

@media all and (max-width: 51em) {
  .main {
    height: calc(100vh - 120px);
  }
}

@media all and (max-width: 27em) {
  .main {
    height: calc(100vh - 105px);
  }
}

@media all and (min-width: 112em) {
  .main {
    height: calc(84vh - 59px);
  }
}

@media all and (min-width: 130em) {
  .main {
    height: calc(84vh - 70px);
  }
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

.main #k2Container.itemListView,
.itemList,
#itemListLeading,
.catItemView.groupLeading.catItemIsFeatured {
  position: relative;
  height: 100%;
  margin: 0;
  padding: 0;
}

.main #k2Container.itemListView .itemListCategoriesBlock,
.itemList .itemListCategoriesBlock,
#itemListLeading .itemListCategoriesBlock,
.catItemView.groupLeading.catItemIsFeatured .itemListCategoriesBlock {
  display: none;
}

.main #k2Container.itemListView #itemListLeading,
.itemList #itemListLeading,
#itemListLeading #itemListLeading,
.catItemView.groupLeading.catItemIsFeatured #itemListLeading {
  display: -ms-flexbox;
  display: flex;
}

@media all and (max-width: 27em) {
  .main #k2Container.itemListView #itemListLeading,
  .itemList #itemListLeading,
  #itemListLeading #itemListLeading,
  .catItemView.groupLeading.catItemIsFeatured #itemListLeading {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.main #k2Container.itemListView .itemContainer,
.itemList .itemContainer,
#itemListLeading .itemContainer,
.catItemView.groupLeading.catItemIsFeatured .itemContainer {
  position: relative;
  height: 100%;
  width: 20%;
  overflow: hidden;
  border-left: 3px solid white;
  animation: slideIn 0.9s ease-in-out forwards;
}

.main #k2Container.itemListView .itemContainer:first-child,
.itemList .itemContainer:first-child,
#itemListLeading .itemContainer:first-child,
.catItemView.groupLeading.catItemIsFeatured .itemContainer:first-child {
  border-left: none;
}

.main #k2Container.itemListView .itemContainer.is-active,
.itemList .itemContainer.is-active,
#itemListLeading .itemContainer.is-active,
.catItemView.groupLeading.catItemIsFeatured .itemContainer.is-active {
  animation: slideOut 1.5s ease-in-out forwards;
}

.main #k2Container.itemListView .itemContainer.is-active .catItemIntroText,
.itemList .itemContainer.is-active .catItemIntroText,
#itemListLeading .itemContainer.is-active .catItemIntroText,
.catItemView.groupLeading.catItemIsFeatured .itemContainer.is-active .catItemIntroText {
  animation: introIn 0.6s ease-in forwards;
  animation-delay: 1s;
}

@media all and (max-width: 27em) {
  .main #k2Container.itemListView .itemContainer,
  .itemList .itemContainer,
  #itemListLeading .itemContainer,
  .catItemView.groupLeading.catItemIsFeatured .itemContainer {
    height: 20%;
    width: 100%;
    border-bottom: 2px solid #fff;
    border-left: none;
    animation: slideInMobile 0.7s ease-in-out forwards;
  }

  .main #k2Container.itemListView .itemContainer.is-active,
  .itemList .itemContainer.is-active,
  #itemListLeading .itemContainer.is-active,
  .catItemView.groupLeading.catItemIsFeatured .itemContainer.is-active {
    animation: slideOutMobile 1.5s ease-in-out forwards;
    animation-delay: 1s;
  }
}

.main #k2Container.itemListView .catItemHeader,
.itemList .catItemHeader,
#itemListLeading .catItemHeader,
.catItemView.groupLeading.catItemIsFeatured .catItemHeader {
  position: absolute;
  left: 1em;
  z-index: 100;
}

.main #k2Container.itemListView .catItemHeader h3.catItemTitle,
.itemList .catItemHeader h3.catItemTitle,
#itemListLeading .catItemHeader h3.catItemTitle,
.catItemView.groupLeading.catItemIsFeatured .catItemHeader h3.catItemTitle {
  display: inline-block;
  font-size: 4em;
  font-weight: 300;
}

@media all and (max-width: 43.75em) {
  .main #k2Container.itemListView .catItemHeader h3.catItemTitle,
  .itemList .catItemHeader h3.catItemTitle,
  #itemListLeading .catItemHeader h3.catItemTitle,
  .catItemView.groupLeading.catItemIsFeatured .catItemHeader h3.catItemTitle {
    font-size: 1.7em;
  }
}

@media all and (max-width: 27em) {
  .main #k2Container.itemListView .catItemHeader h3.catItemTitle,
  .itemList .catItemHeader h3.catItemTitle,
  #itemListLeading .catItemHeader h3.catItemTitle,
  .catItemView.groupLeading.catItemIsFeatured .catItemHeader h3.catItemTitle {
    font-size: 3em;
  }
}

.main #k2Container.itemListView .catItemHeader h3.catItemTitle a,
.itemList .catItemHeader h3.catItemTitle a,
#itemListLeading .catItemHeader h3.catItemTitle a,
.catItemView.groupLeading.catItemIsFeatured .catItemHeader h3.catItemTitle a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

@media all and (max-width: 27em) {
  .main #k2Container.itemListView .catItemHeader,
  .itemList .catItemHeader,
  #itemListLeading .catItemHeader,
  .catItemView.groupLeading.catItemIsFeatured .catItemHeader {
    top: 0;
  }
}

@media all and (min-width: 27em) {
  .main #k2Container.itemListView .catItemHeader,
  .itemList .catItemHeader,
  #itemListLeading .catItemHeader,
  .catItemView.groupLeading.catItemIsFeatured .catItemHeader {
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -ms-transform-origin: center left;
    transform-origin: center left;
    left: 3.8em;
    bottom: 0;
  }
}

@media all and (min-width: 112em) {
  .main #k2Container.itemListView .catItemHeader,
  .itemList .catItemHeader,
  #itemListLeading .catItemHeader,
  .catItemView.groupLeading.catItemIsFeatured .catItemHeader {
    left: 7em;
  }

  .main #k2Container.itemListView .catItemHeader h3.catItemTitle,
  .itemList .catItemHeader h3.catItemTitle,
  #itemListLeading .catItemHeader h3.catItemTitle,
  .catItemView.groupLeading.catItemIsFeatured .catItemHeader h3.catItemTitle {
    font-size: 6em;
  }
}

@media all and (min-width: 130em) {
  .main #k2Container.itemListView .catItemHeader,
  .itemList .catItemHeader,
  #itemListLeading .catItemHeader,
  .catItemView.groupLeading.catItemIsFeatured .catItemHeader {
    left: 7em;
  }

  .main #k2Container.itemListView .catItemHeader h3.catItemTitle,
  .itemList .catItemHeader h3.catItemTitle,
  #itemListLeading .catItemHeader h3.catItemTitle,
  .catItemView.groupLeading.catItemIsFeatured .catItemHeader h3.catItemTitle {
    font-size: 8em;
  }
}

.main #k2Container.itemListView .catItemBody,
.itemList .catItemBody,
#itemListLeading .catItemBody,
.catItemView.groupLeading.catItemIsFeatured .catItemBody {
  position: relative;
  height: 100%;
  padding: 0;
}

.main #k2Container.itemListView .catItemBody .catItemImageBlock,
.itemList .catItemBody .catItemImageBlock,
#itemListLeading .catItemBody .catItemImageBlock,
.catItemView.groupLeading.catItemIsFeatured .catItemBody .catItemImageBlock {
  height: 100%;
  background-color: #000;
  padding: 0;
  margin: 0;
}

.main #k2Container.itemListView .catItemBody .catItemImageBlock span.catItemImage,
.itemList .catItemBody .catItemImageBlock span.catItemImage,
#itemListLeading .catItemBody .catItemImageBlock span.catItemImage,
.catItemView.groupLeading.catItemIsFeatured .catItemBody .catItemImageBlock span.catItemImage {
  margin: 0;
  display: inline;
}

.main #k2Container.itemListView .catItemBody .catItemImageBlock img,
.itemList .catItemBody .catItemImageBlock img,
#itemListLeading .catItemBody .catItemImageBlock img,
.catItemView.groupLeading.catItemIsFeatured .catItemBody .catItemImageBlock img {
  object-fit: cover;
  opacity: 0.8;
  height: 100%;
}

.main #k2Container.itemListView .catItemBody .catItemImageBlock.compat-object-fit,
.itemList .catItemBody .catItemImageBlock.compat-object-fit,
#itemListLeading .catItemBody .catItemImageBlock.compat-object-fit,
.catItemView.groupLeading.catItemIsFeatured .catItemBody .catItemImageBlock.compat-object-fit {
  background-size: cover;
  background-position: center center;
}

.main #k2Container.itemListView .catItemBody .catItemImageBlock.compat-object-fit img,
.itemList .catItemBody .catItemImageBlock.compat-object-fit img,
#itemListLeading .catItemBody .catItemImageBlock.compat-object-fit img,
.catItemView.groupLeading.catItemIsFeatured .catItemBody .catItemImageBlock.compat-object-fit img {
  opacity: 0;
}

.main #k2Container.itemListView .catItemBody .catItemIntroText,
.itemList .catItemBody .catItemIntroText,
#itemListLeading .catItemBody .catItemIntroText,
.catItemView.groupLeading.catItemIsFeatured .catItemBody .catItemIntroText {
  z-index: 100;
  position: absolute;
  color: white;
  left: 7em;
  bottom: 2em;
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  opacity: 0;
  padding-right: 40px;
}

@media all and (max-width: 51em) {
  .main #k2Container.itemListView .catItemBody .catItemIntroText,
  .itemList .catItemBody .catItemIntroText,
  #itemListLeading .catItemBody .catItemIntroText,
  .catItemView.groupLeading.catItemIsFeatured .catItemBody .catItemIntroText {
    bottom: 0;
    left: 1em;
  }
}

@media all and (min-width: 112em) {
  .main #k2Container.itemListView .catItemBody .catItemIntroText,
  .itemList .catItemBody .catItemIntroText,
  #itemListLeading .catItemBody .catItemIntroText,
  .catItemView.groupLeading.catItemIsFeatured .catItemBody .catItemIntroText {
    left: 7em;
    bottom: 1em;
    font-size: 2em;
  }
}

@media all and (min-width: 130em) {
  .main #k2Container.itemListView .catItemBody .catItemIntroText,
  .itemList .catItemBody .catItemIntroText,
  #itemListLeading .catItemBody .catItemIntroText,
  .catItemView.groupLeading.catItemIsFeatured .catItemBody .catItemIntroText {
    font-size: 3em;
    left: 5em;
    bottom: 0.8em;
  }
}

/* Preloader Animation */

#logo.is-visible {
  animation: flyInTop 0.9s ease-in-out forwards;
}

.main.is-visible {
  animation: flyInRight 0.9s ease-in-out forwards;
  animation-delay: 0.2s;
}

ul.nav.menu.is-visible {
  animation: flyInRight 0.9s ease-in-out forwards;
  animation-delay: 900ms;
}

footer.is-visible {
  animation: flyInBottom 0.9s ease-in-out forwards;
  animation-delay: 780ms;
}

div.itemIsFeatured:before,
div.catItemIsFeatured:before,
div.userItemIsFeatured:before {
  display: none;
}

/* Animations */

@keyframes slideIn {
  0% {
    width: 70%;
  }

  100% {
    width: 20%;
  }
}

@keyframes slideOut {
  0% {
    width: 20%;
  }

  40% {
    width: 90%;
  }

  100% {
    width: 70%;
  }
}

@keyframes slideInMobile {
  0% {
    height: 70%;
  }

  100% {
    height: 20%;
  }
}

@keyframes slideOutMobile {
  0% {
    height: 20%;
  }

  40% {
    height: 90%;
  }

  100% {
    height: 70%;
  }
}

@keyframes introIn {
  0% {
    transform: translateX(100%);
  }

  40% {
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes flyInTop {
  0% {
    transform: translateY(-200%) scale(0.3);
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes flyInRight {
  0% {
    transform: translateX(200%) scale(0.3);
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  100% {
    transform: translateX(0) scale(1);
    opacity: 1;
  }
}

@keyframes flyInBottom {
  0% {
    transform: translate(-30%, 200%) scale(0.3);
    transform-origin: bottom;
    opacity: 0;
  }

  40% {
    opacity: 0;
  }

  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

.latestViewProdukte {
  position: relative;
  height: 100%;
  overflow-y: scroll;
}

.latestViewProdukte .latestItemsContainer {
  position: relative;
  height: 100%;
}

.latestViewProdukte .gutter-sizer {
  width: 1%;
}

.latestViewProdukte .latestItemView,
.latestViewProdukte .grid-sizer {
  position: relative;
  width: 32.6%;
  margin-bottom: 1%;
  float: left;
}

@media all and (min-width: 75em) {
  .latestViewProdukte .latestItemView,
  .latestViewProdukte .grid-sizer {
    width: 24.2%;
  }
}

@media all and (max-width: 51em) {
  .latestViewProdukte .latestItemView,
  .latestViewProdukte .grid-sizer {
    width: 49.5%;
  }
}

@media all and (max-width: 27em) {
  .latestViewProdukte .latestItemView,
  .latestViewProdukte .grid-sizer {
    width: 100%;
  }
}

.latestViewProdukte .latestItemView .latestItemHeader,
.latestViewProdukte .grid-sizer .latestItemHeader {
  position: absolute;
  bottom: 0;
  padding: 1em 2em;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  opacity: 0;
}

.latestViewProdukte .latestItemView .latestItemHeader a,
.latestViewProdukte .grid-sizer .latestItemHeader a {
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}

.latestViewProdukte .latestItemView .latestItemHeader.is-visible,
.latestViewProdukte .grid-sizer .latestItemHeader.is-visible {
  animation: flyIn 0.4s ease-in forwards;
}

.latestViewProdukte .latestItemView .latestItemBody,
.latestViewProdukte .grid-sizer .latestItemBody {
  padding: 0;
  opacity: 0;
}

.latestViewProdukte .latestItemView .latestItemBody.is-visible,
.latestViewProdukte .grid-sizer .latestItemBody.is-visible {
  animation: flyIn 0.4s ease-in forwards;
}

.latestViewProdukte .latestItemView .latestItemImageBlock span.latestItemImage,
.latestViewProdukte .grid-sizer .latestItemImageBlock span.latestItemImage {
  margin: 0;
}

.latestViewProdukte .latestItemView .latestItemImageBlock img,
.latestViewProdukte .grid-sizer .latestItemImageBlock img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
  overflow: hidden;
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}

.latestViewProdukte .latestItemView .latestItemImageBlock.compat-object-fit,
.latestViewProdukte .grid-sizer .latestItemImageBlock.compat-object-fit {
  background-size: cover;
  background-position: center center;
}

.latestViewProdukte .latestItemView .latestItemImageBlock.compat-object-fit img,
.latestViewProdukte .grid-sizer .latestItemImageBlock.compat-object-fit img {
  opacity: 0;
}

.latestViewProdukte .latestItemView:hover .latestItemImageBlock img,
.latestViewProdukte .grid-sizer:hover .latestItemImageBlock img {
  -webkit-filter: grayscale(0.8) blur(4px);
  filter: grayscale(0.8) blur(4px);
}

@keyframes flyIn {
  0% {
    transform: translate(500%, 500%);
    opacity: 0;
  }

  90% {
    transform: translate(10%, 10%);
    opacity: 1;
  }

  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@charset "UTF-8";

@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

#k2Container.itemView {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 100%;
  overflow-y: scroll;
  padding: 0;
  margin: 0;
}

@media all and (max-width: 51em) {
  #k2Container.itemView {
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

#k2Container.itemView .content-article {
  width: 40%;
  background-color: #e0e1e2;
  position: relative;
}

@media all and (max-width: 51em) {
  #k2Container.itemView .content-article {
    width: 100%;
  }
}

#k2Container.itemView .content-article h2.itemTitle {
  color: #c2151c;
  font-size: 2.5em;
  text-transform: uppercase;
  padding: 20px 30px 0 30px;
  background-color: #e0e1e2;
}

@media all and (max-width: 51em) {
  #k2Container.itemView .content-article h2.itemTitle {
    font-size: 8vw;
  }
}

@media all and (min-width: 51em) {
  #k2Container.itemView .content-article.overflow {
    overflow-y: scroll;
  }
}

#k2Container.itemView .content-article .itemBody {
  padding: 0 30px 30px 30px;
  background-color: #e0e1e2;
}

#k2Container.itemView .content-article .itemBody .itemFullText div.col.colspan {
  max-width: 100%;
}

#k2Container.itemView .content-article .itemBody .itemFullText img {
  max-width: 100%;
  height: auto;
}

#k2Container.itemView .content-article .itemBody .itemFullText p {
  padding: 0;
  margin: 0;
}

#k2Container.itemView .content-article .itemBody .itemFullText a {
  text-decoration: none;
  color: #c2151c;
  transition: color 0.4s ease-in-out;
}

#k2Container.itemView .content-article .itemBody .itemFullText a:before {
  content: "";
  font-family: FontAwesome;
  font-weight: lighter;
  font-size: 0.7em;
  position: relative;
  padding: 0px 2px;
}

#k2Container.itemView .content-article .itemBody .itemFullText a:hover {
  color: #a7a9ac;
}

#k2Container.itemView .content-article .itemLinks {
  margin: 30px 0 0 0;
  padding: 0 30px;
}

#k2Container.itemView .content-article .itemLinks ul {
  margin-top: 5px;
}

#k2Container.itemView .media-article {
  width: calc(60% - 5px);
  margin-left: 5px;
  position: relative;
}

@media all and (min-width: 27em) and (max-width: 51em) {
  #k2Container.itemView .media-article {
    position: initial;
    width: 100%;
    top: 0;
    bottom: 0;
    margin: 4px 4px 0 0;
  }
}

@media all and (max-width: 27em) {
  #k2Container.itemView .media-article {
    margin-left: 0px;
    width: 100%;
    top: 0;
  }
}

#k2Container.itemView .media-article .itemImageBlock {
  position: absolute;
  height: 100%;
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

#k2Container.itemView .media-article .itemImageBlock span.itemImage {
  height: 100%;
  width: 100%;
}

#k2Container.itemView .media-article .itemImageBlock img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#k2Container.itemView .media-article .itemImageBlock.compat-object-fit {
  background-size: cover;
  background-position: center center;
}

#k2Container.itemView .media-article .itemImageBlock.compat-object-fit img {
  opacity: 0;
}

#k2Container.itemView .media-article .itemImageGallery {
  margin: 0 0 16px 6px;
}

#k2Container.itemView .media-article .itemImageGallery .sigProClassic {
  list-style-type: none;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
}

#k2Container.itemView .media-article .itemImageGallery .sigProClassic .gutter-sizer {
  width: 1%;
}

#k2Container.itemView .media-article .itemImageGallery .sigProClassic .sigProThumb,
#k2Container.itemView .media-article .itemImageGallery .sigProClassic .grid-sizer {
  position: relative;
  width: 24.2%;
  margin-bottom: 1%;
  float: left;
  overflow: hidden;
  opacity: 0;
}

@media all and (max-width: 112em) {
  #k2Container.itemView .media-article .itemImageGallery .sigProClassic .sigProThumb,
  #k2Container.itemView .media-article .itemImageGallery .sigProClassic .grid-sizer {
    width: 32.5%;
  }
}

@media all and (max-width: 51em) {
  #k2Container.itemView .media-article .itemImageGallery .sigProClassic .sigProThumb,
  #k2Container.itemView .media-article .itemImageGallery .sigProClassic .grid-sizer {
    width: 49.5%;
  }
}

@media all and (max-width: 27em) {
  #k2Container.itemView .media-article .itemImageGallery .sigProClassic .sigProThumb,
  #k2Container.itemView .media-article .itemImageGallery .sigProClassic .grid-sizer {
    width: 98%;
  }
}

#k2Container.itemView .media-article .itemImageGallery .sigProClassic .sigProThumb span.sigProLinkOuterWrapper,
#k2Container.itemView .media-article .itemImageGallery .sigProClassic .grid-sizer span.sigProLinkOuterWrapper {
  margin: 0;
  padding: 0;
}

#k2Container.itemView .media-article .itemImageGallery .sigProClassic .sigProThumb span.sigProLinkWrapper,
#k2Container.itemView .media-article .itemImageGallery .sigProClassic .grid-sizer span.sigProLinkWrapper {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

#k2Container.itemView .media-article .itemImageGallery .sigProClassic .sigProThumb span.sigProLinkWrapper img,
#k2Container.itemView .media-article .itemImageGallery .sigProClassic .grid-sizer span.sigProLinkWrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
  -ms-transform: scale(1.04);
  transform: scale(1.04);
  overflow: hidden;
}

#k2Container.itemView .media-article .itemImageGallery .sigProClassic .sigProThumb:hover img,
#k2Container.itemView .media-article .itemImageGallery .sigProClassic .grid-sizer:hover img {
  -webkit-filter: grayscale(0.8) blur(4px);
  filter: grayscale(0.8) blur(4px);
}

#k2Container.itemView .media-article .itemImageGallery .sigProClassic .sigProThumb.is-visible,
#k2Container.itemView .media-article .itemImageGallery .sigProClassic .grid-sizer.is-visible {
  animation: PopIn 600ms ease-in forwards;
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

.media-article .custom #map {
  position: absolute;
  width: 100%;
  height: 100%;
  border-top: 2px solid #a7a9ac;
  border-bottom: 2px solid #a7a9ac;
  box-sizing: border-box;
}

@media all and (max-width: 51em) {
  .media-article .custom #map:after {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    content: "";
  }
}

canvas.mapboxgl-canvas {
  top: 0;
}
@charset "UTF-8";

@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

footer {
  bottom: 0;
  position: relative;
  height: 30px;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  z-index: 999;
  font-family: "ff-meta-web-pro", sans-serif;
}

footer .contact {
  position: absolute;
  bottom: 0;
}

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

footer a:before {
  content: "";
  font-family: FontAwesome;
  font-weight: lighter;
  font-size: 0.9em;
  position: relative;
  top: 0px;
  padding-right: 3px;
  padding-left: 20px;
}

footer span {
  text-transform: uppercase;
  font-weight: book;
  font-family: "ff-meta-web-pro", sans-serif;
  font-size: 1.1em;
}

footer span:first-child {
  color: #a7a9ac;
  margin-left: 50px;
}

footer span:nth-child(2) {
  color: #c2151c;
  position: relative;
  bottom: 2px;
  padding-left: 15px;
  font-size: 1.2em;
}

footer span:nth-child(2):before {
  content: "";
  font-family: FontAwesome;
  font-weight: lighter;
  font-size: 0.7em;
  position: relative;
  top: 2px;
  padding-right: 3px;
}

@media all and (max-width: 27em) {
  footer {
    display: none;
  }
}

@media all and (min-width: 112em) {
  footer {
    height: 59px;
  }

  footer span {
    font-size: 2.2em;
  }

  footer span:nth-child(2) {
    font-size: 2.4em;
    bottom: 5px;
    padding-left: 15px;
  }

  footer a {
    font-size: 2em;
  }
}

@media all and (min-width: 130em) {
  footer {
    height: 70px;
  }

  footer span {
    font-size: 2.5em;
  }

  footer span:nth-child(2) {
    font-size: 2.7em;
    bottom: 5px;
    padding-left: 15px;
  }

  footer a {
    font-size: 2.5em;
  }
}

footer ul.nav.menu {
  position: absolute;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  margin: 0;
  padding: 0 20px;
  right: 0;
}

footer ul.nav.menu li {
  list-style-type: none;
}

footer ul.nav.menu li a {
  text-decoration: none;
  color: #c2151c;
  transition: 0.4s ease-in-out;
}

footer ul.nav.menu li a:hover {
  color: #a7a9ac;
}

footer .item-198 {
  top: 3px;
  position: relative;
}

footer .item-198 a {
  color: #c2151c;
}

footer .item-198 a:before {
  content: "";
}

@media all and (max-width: 51em) {
  footer .item-198 {
    display: none;
  }
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

fieldset {
  border: none;
}

.login form .control-group:nth-child(3) {
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0;
}

.login form .control-group:nth-child(3) .controls {
  -ms-flex-order: 0;
  order: 0;
  margin-right: 10px;
}

.login form .control-group:nth-child(3) .control-label {
  -ms-flex-order: 1;
  order: 1;
}

ul.nav.nav-tabs.nav-stacked {
  list-style-type: none;
  padding: 0 10px;
}

ul.nav.nav-tabs.nav-stacked a {
  text-decoration: none;
  color: #c2151c;
  transition: color 0.4s ease-in-out;
}

ul.nav.nav-tabs.nav-stacked a:hover {
  color: #a7a9ac;
}

button.btn.btn-primary {
  border: none;
  cursor: pointer;
  color: #c2151c;
  font-size: 1em;
  margin: 20px 0 0 0;
  padding: 10px;
  transition: all 0.4s ease;
}

button.btn.btn-primary:hover {
  color: #ecebeb;
}

.logout {
  padding: 40px;
}

h2.itemTitle span.itemEditLink a {
  border-radius: 0;
  background: #a7a9ac;
  border: none;
  padding: 15px 7px;
  -ms-transform: translateY(-30%);
  transform: translateY(-30%);
  transition: all 0.4s ease-in-out;
}

h2.itemTitle span.itemEditLink a:hover {
  color: #c2151c;
}

.icon-48-k2 {
  padding-left: 0px !important;
  background: none;
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

.no-js #loader {
  display: none;
}

.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  z-index: 9999;
}

.se-pre-con .spinner {
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: #eee;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.se-pre-con .spinner:after,
.se-pre-con .spinner:before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.se-pre-con .spinner:after {
  position: absolute;
  top: -4px;
  left: -4px;
  border: 4px solid transparent;
  border-top-color: #c2151c;
  border-bottom-color: #c2151c;
  animation: spinny 1s linear infinite;
}

@keyframes spinny {
  0% {
    transform: rotate(0deg) scale(1);
  }

  50% {
    transform: rotate(45deg) scale(1.2);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

div.k2ItemsBlock {
  position: relative;
  height: 100%;
}

div.k2ItemsBlock div.container_unterkategorie {
  width: calc(100% - 5px);
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie {
  position: relative;
  width: 33.3333%;
  margin-bottom: 10px;
  padding-right: 10px;
  float: left;
  box-sizing: border-box;
}

@media all and (min-width: 75em) {
  div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie {
    width: 25%;
  }
}

@media all and (max-width: 51em) {
  div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie {
    width: 50%;
  }

  div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie:nth-child(2n) {
    padding-right: 0;
  }
}

@media all and (max-width: 27em) {
  div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie {
    width: 100%;
    height: auto;
    padding-right: 0;
  }
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie a.moduleItemTitle {
  position: absolute;
  bottom: 0;
  padding: 0.7em 1em;
  z-index: 100;
  width: 100%;
  font-weight: bold;
  font-size: 1.4vw;
  box-sizing: border-box;
  opacity: 0;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie a.moduleItemTitle.is-visible {
  animation: flyIn 0.4s ease-in forwards;
}

@media all and (max-width: 51em) {
  div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie a.moduleItemTitle {
    font-size: 4vw;
  }
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie div.moduleItemIntrotext {
  padding: 0;
  opacity: 0;
  position: relative;
  height: 100%;
  background-color: #000;
  overflow: hidden;
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie div.moduleItemIntrotext.is-visible {
  animation: flyIn 0.4s ease-in forwards;
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie div.moduleItemIntrotext a.moduleItemImage {
  position: relative;
  height: 100%;
  margin: 0;
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie div.moduleItemIntrotext a.moduleItemImage img {
  width: 100%;
  height: 100% !important;
  margin: 0;
  object-fit: cover;
  transition: -webkit-filter 0.5s ease;
  transition: filter 0.5s ease;
  transition: filter 0.5s ease, -webkit-filter 0.5s ease;
  overflow: hidden;
  opacity: 0.9;
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie div.moduleItemIntrotext a.moduleItemImage img.compat-object-fit {
  background-size: cover;
  background-position: center center;
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie div.moduleItemIntrotext a.moduleItemImage img img {
  opacity: 0;
}

div.k2ItemsBlock div.container_unterkategorie .item_unterkategorie:hover a.moduleItemImage img {
  -webkit-filter: grayscale(0.8) blur(4px);
  filter: grayscale(0.8) blur(4px);
}

@keyframes flyIn {
  0% {
    transform: translate(500%, 500%);
    opacity: 0;
  }

  90% {
    transform: translate(10%, 10%);
    opacity: 1;
  }

  100% {
    transform: translate(0%, 0%);
    opacity: 1;
  }
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

#k2Container.itemView .content-article .itemLinks ul.itemAttachments {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 10px;
}

#k2Container.itemView .content-article .itemLinks ul.itemAttachments li {
  text-align: left;
  word-wrap: break-word;
}
@keyframes PopIn {
  0% {
    opacity: 0;
    padding: 0px;
  }

  100% {
    opacity: 1;
  }
}

#startOfPageId44 #k2Container .content-article .itemBody .itemFullText p,
#startOfPageId45 #k2Container .content-article .itemBody .itemFullText p,
#startOfPageId46 #k2Container .content-article .itemBody .itemFullText p {
  margin: 5px;
  height: 120px;
  float: left;
}
.customsocial {
	position: absolute;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    margin: 0;
    padding: 0 20px;
	left: 50px;}
.customsocial .fa {
	font-size: 20px;
}
@media (min-width: 112em) {.customsocial .fa {
font-size: 30px;
	}}