/* @import url("https://fonts.googleapis.com/css?family=Open+Sans|Oswald|Raleway:100"); */
/* @import url("https://fonts.googleapis.com/css?family=Open+Sans|Oswald|Raleway:100"); */ 
.animated__headline {
  opacity: 0;
  animation: fadeInLeft 2s forwards; }

.animated__subHeadline {
  opacity: 0;
  transform: translateY(100px);
  animation: fadeInUp 1s forwards;
  animation-delay: 1s; }

.Boxlane.js-checkView {
  opacity: 0; }
  .Boxlane.js-checkView .Boxlane--box i, .Boxlane.js-checkView .Boxlane--box h3 {
    opacity: 0; }

.Boxlane.isInView {
  opacity: 1; }

.headline i, .headline em, .headline h2, .headline h1 {
  opacity: 0;
  display: inline-block; }

.headline.isInView {
  opacity: 1; }

.MoreButton {
  opacity: 0; }

.Card.js-checkView {
  opacity: 0; }

.Teaser.js-checkView {
  opacity: 0; }

.Teaser.isInView {
  opacity: 1; }

.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%); }
  100% {
    opacity: 1;
    transform: translateX(0px); } }

.fadeInRight, .Teaser.isInView b {
  animation-name: fadeInRight;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(100%); }
  100% {
    opacity: 1;
    transform: translateX(0px); } }

.fadeInUp, .Boxlane.isInView .Boxlane--box h3, .Card.isInView, .Teaser.isInView p {
  animation-name: fadeInUp;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(100px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }

.fadeOutUp, .SearchForm--hide {
  animation-name: fadeOutUp;
  animation-duration: .5s;
  animation-fill-mode: forwards; }

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0px); }
  100% {
    opacity: 0;
    transform: translateY(-140px); } }

.fadeInDown, .headline.isInView i, .headline.isInView em, .headline.isInView h2, .headline.isInView h1 {
  transform: translateY(-100px);
  animation-name: fadeInDown;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-100px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }

.fadeInDownSlow {
  transform: translateY(-100px);
  animation-name: fadeInDownSlow;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s; }

@keyframes fadeInDownSlow {
  0% {
    opacity: 0;
    transform: translateY(-100px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }

.showFadeInDown {
  transform: translateY(-100px);
  animation-name: showFadeInDown;
  animation-duration: .75s;
  animation-fill-mode: forwards; }

@keyframes showFadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-100px); }
  100% {
    opacity: 1;
    transform: translateY(0px); } }

.zoomIn, .Boxlane.isInView .Boxlane--box i, .MoreButton.isInView, .Teaser.isInView .chart {
  animation-name: zoomIn;
  animation-duration: 1s;
  animation-fill-mode: forwards; }

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(2); }
  100% {
    opacity: 1;
    transform: scale(1); } }

.zoombox {
  animation-name: zoombox;
  animation-duration: .25s;
  animation-fill-mode: forwards; }

@keyframes zoombox {
  0% {
    opacity: 0;
    transform: scale(0); }
  100% {
    opacity: .75;
    transform: scale(1); } }

.extendLength {
  animation-name: extendLength;
  animation-duration: .75s;
  animation-fill-mode: forwards; }

@keyframes extendLength {
  0% {
    width: auto; }
  100% {
    width: 200px; } }

.form__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between; }

.form__left {
  width: 45%; }

.form__right {
  width: 50%; }

.form input, .form textarea, .form select {
  outline: none;
  font-family: "Raleway", sans-serif; }

.form input[type=search], .form input[type=text], .form textarea, .form select {
  border: none;
  border-bottom: 1px solid #DDD;
  background: none;
  font-size: .75em;
  color: #333;
  margin-left: 10px; }
  .form input[type=search]::placeholder, .form input[type=text]::placeholder, .form textarea::placeholder, .form select::placeholder {
    opacity: .5;
    font-style: italic; }

.form option {
  color: red; }

.form option:first-child {
  opacity: .25; }

.form textarea {
  border: 1px solid #DDD;
  width: 100%;
  font-size: .5em; }

.form .submit--hidden {
  display: none; }

.contactForm {
  font-size: 2em; }
  .contactForm input, .contactForm select, .contactForm textarea {
    width: 100%;
    margin-bottom: 10px; }
  .contactForm input {
    text-indent: 3px; }
  .contactForm button {
    font-size: .5em; }

.SearchForm {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 140px;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  transform: translateY(-140px);
  font-size: 4em;
  color: #333; }
  .SearchForm input {
    width: 400px;
    font-size: .75em; }
  .SearchForm .fa-close {
    font-size: .75em;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px; }
