/**
 * ------------------------------------------------------------------------
 * Parallax Typed  Module
 * ------------------------------------------------------------------------
 * Copyright (C) 2014-2016 LogicHunt, All Rights Reserved.
 * license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
 * Author: LogicHunt
 * Websites:  http://logichunt.com
 * ------------------------------------------------------------------------
 */
/**
 * ------------------------------------------------------------------------
 * LGX Parallax typed Module
 * ------------------------------------------------------------------------
 * Copyright (C) 2014-2016 LogicHunt, All Rights Reserved.
 * license - GNU/GPL, http://www.gnu.org/licenses/gpl.html
 * Author: LogicHunt
 * Websites: http://logichunt.com - http://logichunt.com
 * ------------------------------------------------------------------------
 */
.lgx-typed {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  display: block;
}
.lgx-typed .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  margin-left: 5px;
}
.lgx-typed .lgx-typed-inner {
  width: 100%;
  height: 100%;
  display: table;
  background-color: rgba(0, 0, 0, 0);
}
.lgx-typed-inner .lgx-typed-content {
  display: table-cell;
  vertical-align: middle;
}
.lgx-typed-logo {
  display: block;
  margin-bottom: 25px;
}
.lgx-typed-content .lgx-typed-content-wrapper {
  margin: 0 auto;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.lgx-typed-content .lgx-typed-title {
  font-weight: 700;
  margin-bottom: 30px;
}
.lgx-typed-content .lgx-typed-text {
  font-weight: 400;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
