/* TILT HOVER EFFEKT *//*------------------------------------------*/
.tilter {
  display: block;
  position: relative;
  border-radius: 15px;
  /* width: 380px;
  height: 450px; */
  /* width: 480px;
  height: 320px; */
  width: 720px;
  height: 480px;
  /*margin: 1.5em 2.5em;*//* grund für problem mobile ansicht */
  color: #fff;
  flex: none;
  perspective: 1000px;
  text-shadow: 0px 0px 0px rgba(150, 150, 150, 1);/*jonas*/
  transition: text-shadow 0.3s ease-in-out;
}

#leftPost.tilter{
  /* width:600px;  */
  /* width: 624px !important; */
}

.tilter * {
  pointer-events: none;
}

.tilter:hover,
.tilter:focus {
  color: #fff;
  text-shadow: 0px 3px 6px rgba(150, 150, 150, 1);/*jonas*/
  outline: none;
  transition: text-shadow 0.3s ease-in-out;
}

/*
.tilter__figure,
.tilter__deco,
.tilter__caption {
  will-change: transform;
}*/

.tilter__figure,
.tilter__image {
  margin: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.tilter__figure > * {
  transform: translateZ(0px); /* Force correct stacking order */
}

.smooth .tilter__figure,
.smooth .tilter__deco--overlay,
.smooth .tilter__deco--lines,
.smooth .tilter__deco--shine div,
.smooth .tilter__caption {
  transition: transform 0.2s ease-out;
}

.tilter__figure {
  position: relative;
}

.tilter__figure::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  top: 5%;
  left: 5%;
  margin-bottom: 200px;
  /*box-shadow: 0 30px 20px rgba(35,32,39,0.5);*/
  box-shadow: 0px 20px 29px -3px rgba(0,0,0,0.41); /*jonas*/
}

.tilter__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tilter__deco--shine div {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 255, 255, 0.2) 0%, transparent 0%);
}

.tilter__deco--lines {
  fill: none;
  stroke: #fff;
  stroke-width: 1.5px;
}

.tilter__caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2em;
}

.tilter__title {
  margin: 0;
  font-weight: normal;
  font-size: 1.5em;
  letter-spacing: 1px;
  /* font-family: 'Poppins', sans-serif; */
  /* font-family: 'Sporting Grotesque_Bold', Helvetica, sans-serif; */
  font-family: 'Monument Extended', Helvetica, sans-serif;
  line-height: 1;
  text-transform: uppercase;
  /* font-weight: 600; */

}

.tilter__description {
  font-size: 1.2em;
  /*margin: 0.8em 0 0 0;*/
  font-weight: 300;
  /*font-family: 'Raleway', sans-serif;*/
  font-family: 'Cirka';
}

/* Individual styles */

/* Example 1 (Default) */
.tilter--1 .tilter__figure::before {
  /*box-shadow: 0 30px 20px rgba(0,0,0,0.5);*/
  box-shadow: 0px 25px 33px 4px rgba(0,0,0,0.43); /*jonas*/
}

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




.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Icons */
.icon {
  display: block;
  width: 1.5em;
  height: 1.5em;
  margin: 0 auto;
  fill: currentColor;
}



/* Content */
.content {
  /*padding: 0 0 4em;
  margin-top: 5vh;
  margin-bottom: 25vh;
  height: 50vh;
  /*min-height: 100vh;*/
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: relative;
}

.content:not(:first-child) {
  padding: 4em 0;
}


/* Related demos */
.content--related {
  height: auto;
  text-align: center;
  font-weight: bold;
  min-height: 0;
  padding-bottom: 10em !important;
  background: #f1ebf0;
}

.content--related > p {
  width: 100%;
}

.media-item {
  display: inline-block;
  padding: 1em;
  vertical-align: top;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.media-item__img {
  max-width: 100%;
  opacity: 0.3;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.media-item:hover .media-item__img,
.media-item:focus .media-item__img {
  opacity: 1;
}

.media-item__title {
  margin: 0;
  padding: 0.5em;
  font-size: 1em;
}

@media screen and (max-width: 55.625em) {
  .content {
    height: auto;
  }
}
/*------------------------------------------*/
