/* Copyright (C) YOOtheme GmbH, YOOtheme Proprietary Use License (http://www.yootheme.com/license) */

/* ========================================================================
   Use this file to add custom CSS easily
 ========================================================================== */

/* Parallax Content
 ========================================================================== */
.tm-parallax-teaser {
  position: relative;
  top: 50%;
  margin-top: -70px;
  max-width: 600px;
  left: 50%;
  margin-left: -300px;
}
.tm-parallax-teaser h2 {
  display: inline-block;
  margin-bottom: 15px;
  padding: 10px;
  background: #075c97;
  color: #ffffff;
}
.tm-parallax-teaser-container {
  position: relative;
  left: 50%;
  width: 700px;
margin-top: 100px;
  margin-left: -350px;
  text-align: center;
}
.tm-parallax-teaser-images-top {
  margin-bottom: 50px;
  -webkit-animation: Parallax-ScaleUpTop;
  animation: Parallax-ScaleUpTop;
  -webkit-animation-duration: .5s;
  animation-duration: .5s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.tm-parallax-teaser-images-bottom {
  margin-top: 50px;
  -webkit-animation: Parallax-ScaleUpBottom;
  animation: Parallax-ScaleUpBottom;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
.tm-parallax-teaser-images-top > img.uk-float-right {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.tm-parallax-teaser-images-bottom > img.uk-float-right {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.tm-parallax-teaser-images-bottom > img.uk-float-left {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.tm-parallax-teaser-headline {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(7, 92, 151, 0.7);
  color: #ffffff;
  line-height: 65px;
  font-weight: bold;
  font-size: 65px;
  -webkit-animation: Parallax-FadeIn;
  animation: Parallax-FadeIn;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
.tm-parallax-teaser-caption {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  line-height: 25px;
  font-size: 25px;
  -webkit-animation: Parallax-FadeIn;
  animation: Parallax-FadeIn;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
}
@-webkit-keyframes Parallax-FadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes Parallax-FadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes Parallax-ScaleUpTop {
  0% {
    margin: 0 0 0 0;
  }
  100% {
    margin: 0 0 50px 0;
  }
}
@keyframes Parallax-ScaleUpTop {
  0% {
    margin: 0 0 0 0;
  }
  100% {
    margin: 0 0 50px 0;
  }
}
@-webkit-keyframes Parallax-ScaleUpBottom {
  0% {
    margin: 0 0 0 0;
  }
  100% {
    margin: 50px 0 0 0;
  }
}
@keyframes Parallax-ScaleUpBottom {
  0% {
    margin: 0 0 0 0;
  }
  100% {
    margin: 50px 0 0 0;
  }
}