/* CSS Document */


/* =Load the Fonts
-------------------------------------------------------------- */

@import url(http://fonts.googleapis.com/css?family=Lato:400,300,700);

/* =Main-Styling Mobile First
-------------------------------------------------------------- */

a:focus,
a:active,
button,
input[type="reset"]::-moz-focus-inner,
input[type="button"]::-moz-focus-inner,
input[type="submit"]::-moz-focus-inner,
select::-moz-focus-inner,
input[type="file"]>input[type="button"]::-moz-focus-inner {
    outline: none !important;
}

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

html {
    -webkit-tap-highlight-color: transparent;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

section {
    overflow: hidden;
    position: relative;
}


/* =Typography
-------------------------------------------------------------- */

body {
    font-family: 'Lato', sans-serif;
    color: #212529;
}

a {
    color: #999999;
    opacity: 0.9;
}

a:hover, a:focus {
    color: #999999;
    text-decoration: underline;
    opacity: 1;
}

h2,
.h2 {
    color: #f28a12;
    font-size: 30px;
}

h3,
.h3 {
    margin-top: 0;
    font-weight: 600;
}

.modal-body h3 {
    color: #f28a12;
    margin-bottom: 10px;
}

.modal-body h4 {
    margin-top: 20px;
}

h4,
.h4 {
    margin-top: 0;
    font-weight: 600;
}

label {
    font-weight: 400;
}

.orange {
    color: #f28a12;
}

.p-space {
    margin-bottom: 10px;
}

.section a:not(a.btn) {
    color: #f28a12;
    font-weight: 400;
}

.section a:hover:not(a.btn) {
    opacity: 0.7;
    text-decoration: none;
}

.sectionHead {
    border-bottom: 1px solid #ededed;
    margin-bottom: 25px;
}

.answersContent {
    margin: 25px 0;
}

ul.answers {
    padding-left: 0;
    margin-bottom: 0;
}

ul.answers li {
    margin: 0 0 10px 0;
    padding: 0 0 0 45px;
    position: relative;
    list-style: none;
}

ul.answers li::before {
    border: 13px solid #f28a12;
    border-radius: 13px;
    content: " ";
    display: block;
    height: 0;
    left: 7px;
    position: absolute;
    width: 0;
    box-sizing: content-box;
}

ul.answers li::after {
    box-sizing: content-box;
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    border-color: #fff;
    -webkit-border-image: none;
    -o-border-image: none;
    border-image: none;
    border-style: solid;
    border-width: 0 3px 3px 0;
    content: " ";
    display: block;
    height: 10px;
    left: 16px;
    margin-top: -8px;
    position: absolute;
    top: 13px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 5px;
}


/*.section a:before {
  border-bottom: 6px solid transparent;
  border-left: 6px solid #f28a12;
  border-top: 6px solid transparent;
  content: "";
  display: inline-block;
  height: 0;
  padding-right: 6px;
  width: 0;
} */


/* =Main Content Styles
-------------------------------------------------------------- */

blockquote {
    border-left: 5px solid #ffcf97;
    font-size: 14px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group > label {
    font-weight: 700;
}

.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    border: none;
    box-shadow: none;
}

.form-control:focus {
    border: none;
    box-shadow: none;
}

#DemoRequestFormular .form-control {
    background: #ededed;
}

span.custom-select {
    width: 100%;
    position: relative;
    display: inline-block;
}

.custom-select:after {
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    content: "\f0d7";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    font-size: 14px;
    line-height: 34px;
    text-indent: 0.01px;
    text-overflow: '';
    padding: 0 15px;
    color: #f28a12;
    pointer-events: none;
    -webkit-border-radius: 0 6px 6px 0;
    -moz-border-radius: 0 6px 6px 0;
    border-radius: 0 6px 6px 0;
}

.livedemoButton {
    margin-top: 15px;
}

.btn {
    border: none;
    padding-left: 18px;
    padding-right: 18px;
    text-shadow: none;
}

.btn-default {
    background: lightgray none repeat scroll 0 0;
    color: #fff;
}

.btn-default:hover,
.btn-default:focus {
    background: #adadad;
    color: #fff;
}

.btn-orange {
    border: none;
    background: #f28a12;
    color: #fff;
}

.btn-orange:hover,
.btn-orange:focus {
    background: #e07b07;
    color: #fff;
}

.btn-outline {
    border: 2px solid #ffffff;
    background: none;
    color: #fff;
}

.btn-outline:hover,
.btn-outline:focus {
    border-color: #ffffff;
    background: #ffffff;
    color: #f28a12;
}

.btn-default,
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
    text-shadow: none;
    box-shadow: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default.active[disabled],
fieldset[disabled] .btn-default.active {
    border-color: #fff;
    background: none;
}

.gradient-top {
    border-top: 1px solid #ededed;
    background: #fafafa;
    /* Old browsers */
    background: -moz-linear-gradient(top, #fafafa 0%, #ffffff 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fafafa), color-stop(100%, #ffffff));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fafafa 0%, #ffffff 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fafafa 0%, #ffffff 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fafafa 0%, #ffffff 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#ffffff', GradientType=0);
    /* IE6-9 */
}

.gradient-top-reverse {
    border-top: 1px solid #ededed;
    background: #fff;
    /* Old browsers */
    background: -moz-linear-gradient(top, #fff 0%, #fafafa 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fff), color-stop(100%, #fafafa));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #fff 0%, #fafafa 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #fff 0%, #fafafa 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #fff 0%, #fafafa 100%);
    /* IE10+ */
    background: linear-gradient(to bottom, #fff 0%, #fafafa 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fff', endColorstr='#fafafa', GradientType=0);
    /* IE6-9 */
}

.page-header {
    margin-top: 0;
    padding: 0;
    border: 0;
}

.section {
    padding: 40px 0;
}

.icon-box {
    width: 70px;
    height: 70px;
    position: relative;
    margin: 0 auto 10px auto;
}

.icon-box i {
    font-size: 2.5em;
    color: #f28a12;
}

.Box {
    margin: 10px 0 0;
    padding-bottom: 10px;
    padding-top: 20px;
}

.productsRow {
    padding-top: 50px;
    border-top: 1px solid #ededed;
    margin-top: 40px;
}


/* =Navigation
-------------------------------------------------------------- */

.header--fixed {
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10;
}

.navbar-default {
    background: #f28a12;
    border-radius: 0;
    border: none;
    box-shadow: none;
}

.navbar {
    margin-bottom: 0;
}

.navbar-default .navbar-brand {
    color: #fff;
    font-weight: 700;
}

.navbar-default .navbar-brand:hover,
.navbar-default .navbar-brand:focus {
    color: #ffe6c9;
}

.navbar-default .navbar-toggle {
    border: none;
}

.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background: #fff;
}

.navbar-default .navbar-toggle:hover>.icon-bar,
.navbar-default .navbar-toggle:focus>.icon-bar {
    background: #f28a12;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #fff;
}

.navbar-brand,
.navbar-nav>li>a {
    text-shadow: none;
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-top: none;
}

.navbar-default .navbar-nav>.active>a {
    background: #fff;
    box-shadow: none;
}

.navbar-collapse {
    box-shadow: none;
}

.nav.navbar-nav>li {
    border-bottom: 1px solid #f29a35;
}

.nav.navbar-nav>li:first-child {
    border-top: 1px solid #f29a35;
}

.navbar-default .navbar-nav>li>a {
    color: #fff;
    font-weight: 400;
}

.nav.navbar-nav>li a:hover,
.nav.navbar-nav>li a:focus {
    background: #fff !important;
    color: #f28a12;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
    background-color: #fff;
    color: #f28a12;
}

.mejs-mediaelement {
    background: #fff;
}

.mejs-controls .mejs-time-rail .mejs-time-current {
    background: #f28a12;
    width: 0;
}


/* =Header
-------------------------------------------------------------- */

#header {
    background: url("../img/header-xs.jpg") no-repeat scroll center top/cover transparent;
    height: 245px;
    position: relative;
    width: 100%;
    border-bottom: 3px solid #f28a12;
    margin-top: 50px;
}

.claimbox {
    bottom: 35px;
    color: #fff;
    left: 50%;
    margin-left: -160px;
    position: absolute;
    text-align: center;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
    width: 320px;
}

.claimbox h1 {
    margin-bottom: 0;
}

.claimbox h2 {
    color: #ffffff;
}

#claimButton {
    margin-top: 20px;
}


/* =Intro
-------------------------------------------------------------- */


/* =IT Security
-------------------------------------------------------------- */

#itSecuritySlice {
    background: url("../img/itSecuritySlice-xs.jpg") no-repeat scroll center top/cover transparent;
    height: 150px;
}

.product_services {
    margin-top: 40px;
}

.product_service {
    display: block;
    float: left;
    width: 50%;
    margin-bottom: 15px;
}

.product_service,
.product_service:hover,
.product_service:focus {
    color: #212529;
    text-decoration: none;
}

.product_service:hover,
.product_service:focus {
    color: #000000;
}

.product_service p {
    margin-bottom: 0;
}

.product_service img {
    height: 45px;
    width: 45px;
}


/* =Datanywhere
-------------------------------------------------------------- */

#Datanywhere {
    background: url("../img/DatanywhereSlice-xs.jpg") no-repeat scroll center top/cover transparent;
    height: 150px;
}

.video-element {
    margin: 30px 0;
}


/* =About
-------------------------------------------------------------- */

#about {
    padding-bottom: 0;
}

#PeterSchmanau {
    border-top: 1px solid #ededed;
    margin-top: 20px;
    padding-top: 30px;
}

#partner {
    border-top: 1px solid #ededed;
    margin: 0 0 20px 0;
    padding-top: 30px;
}

.partner-element {
    margin-bottom: 20px;
}

.geschaeftspartner {
    margin-top: 20px;
}


/* =Kontakt
-------------------------------------------------------------- */

#kontakt {
    background: #f28a12;
    padding: 40px 0 10px 0;
}

#kontakt,
#kontakt a,
#kontakt .page-header h2 {
    color: #fff;
}

#kontakt #kontaktForm {
    margin: 20px 0;
}

#kontakt #footer {
    color: #ffddb6;
}

#kontaktDetails .mail {
    white-space: nowrap;
}


/* =Impressum
-------------------------------------------------------------- */


/* =Datenschutz
-------------------------------------------------------------- */


/* =Responsive Styles
-------------------------------------------------------------- */


/* Landscape Phone */

@media all and (min-width: 478px) {
    /* =Main Content Styles
  -------------------------------------------------------------- */
    .icon-box {
        text-align: right;
    }
    /* =Header
  -------------------------------------------------------------- */
    #header {
        background: url("../img/header-sm.jpg") no-repeat scroll center top/cover transparent;
        height: 400px;
        position: relative;
        width: 100%;
    }
    .claimbox {
        bottom: 105px;
    }
}


/* Tablet Portrait */

@media all and (min-width: 768px) {
    /* =Typography
  -------------------------------------------------------------- */
    body {
        color: #212529;
    }
    h1,
    .h1 {
        font-size: 56px;
    }
    h2,
    .h2 {
        font-size: 36px;
        margin-top: 0;
    }
    /* =Main Content Styles
  -------------------------------------------------------------- */
    blockquote {
        text-align: center;
    }
    .page-header,
    .sectionText {
        text-align: center;
    }
    .page-header.left {
        text-align: left;
    }
    .sectionText {
        margin-bottom: 50px;
    }
    .section,
    #kontakt {
        padding: 90px 0;
    }
    .icon-box {
        background: none repeat scroll 0 0 #f28a12;
        border-radius: 10px;
        height: 50px;
        margin: 0 auto 20px;
        padding: 12px;
        position: relative;
        width: 50px;
    }
    .icon-box.less-padding {
        padding: 9px;
    }
    .icon-box i {
        color: #fff;
        font-size: 2em;
    }
    /* =Navigation
  -------------------------------------------------------------- */
    .navbar {
        height: 70px;
    }
    .navbar-default {
        background: none repeat scroll 0 0 #fff;
        box-shadow: none;
        box-shadow: 0 1px 0 rgba(255, 255, 255, 0.1) inset;
    }
    .nav.navbar-nav {
        margin-top: 10px;
    }
    .nav.navbar-nav>li {
        border: none;
        font-size: 16px;
    }
    .navbar-default .navbar-nav>li>a {
        color: #212529;
        font-weight: 400;
    }
    .navbar-default .navbar-nav>.active>a,
    .navbar-default .navbar-nav>.active>a:hover {
        font-weight: 400;
    }
    .nav.navbar-nav>li a:focus {
        color: #212529;
    }
    .nav.navbar-nav>li:first-child {
        border-top: 0;
    }
    .headroom--not-top {
        -webkit-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.25);
        -moz-box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.25);
        box-shadow: 0px 0px 3px 0px rgba(50, 50, 50, 0.25);
    }
    #Logo {
        width: 80px;
    }
    .sectionHead {
        padding-bottom: 30px;
    }
    /* =Intro
  -------------------------------------------------------------- */
    #header {
        background: url("../img/header-sm.jpg") no-repeat scroll center -35px/cover transparent;
        height: 330px;
        margin-top: 70px;
    }
    #intro .sectionText {
        font-size: 16px;
    }
    .partner-logo {
        margin-top: 20px;
    }
    .claimbox {
        bottom: 55px;
        margin-left: -235px;
        width: 470px;
    }
    #claimButton {
        margin-top: 50px;
    }
    /* =IT Security
  -------------------------------------------------------------- */
    #itSecuritySlice {
        background: url("../img/itSecuritySlice-sm.jpg") no-repeat scroll center top/cover transparent;
        height: 210px;
    }

    .product_services {
        margin-top: 0;
    }

    .product_service {
        float: none;
        width: auto;
        margin-bottom: 15px;
    }

    /* =DatAnywhere
  -------------------------------------------------------------- */
    #Datanywhere {
        background: url("../img/DatanywhereSlice-sm.jpg") no-repeat scroll center top/cover transparent;
        height: 210px;
    }
    .video-element {
        margin: 0;
    }
    /* =About
  -------------------------------------------------------------- */
    #about {
        padding-bottom: 90px;
    }
    #about .sectionText {
        margin-bottom: 0;
    }
    #partner {
        margin: 20px 0;
    }
    .partner-element {
        margin-bottom: 0;
    }
    /* =Kontakt
  -------------------------------------------------------------- */
    #kontakt .page-header {
        text-align: left;
    }
    #kontakt #kontaktForm {
        margin-top: 0;
    }
}


/* Laptop */

@media all and (min-width: 900px) {
    /* =Typography
  -------------------------------------------------------------- */
    body {
        font-size: 16px;
    }
    h1,
    .h1 {
        font-size: 86px;
    }
    /* =Main Content Styles
  -------------------------------------------------------------- */
    blockquote {
        font-size: 16px;
        margin-bottom: 40px;
    }
    .ProductBoxDesc {
        margin-top: 40px;
    }
    .icon-box i {
        color: #fff;
        font-size: 1.8em;
    }
    /* =Intro
  -------------------------------------------------------------- */
    #header {
        background: url("../img/header-md.jpg") no-repeat scroll center -95px/cover transparent;
        height: 340px;
    }
    .claimbox {
        bottom: 35px;
        margin-left: -300px;
        width: 600px;
    }
    .claimbox h2 {
        font-size: 56px;
        margin-top: 0;
    }
    #claimButton {
        margin-top: 50px;
    }
    #intro .sectionText {
        font-size: 18px;
    }
    .partner-left {
        float: right;
    }
    .partner-right {
        float: left;
    }
    /* =IT Security
  -------------------------------------------------------------- */
    #itSecuritySlice {
        background: url("../img/itSecuritySlice-md.jpg") no-repeat scroll center top/cover transparent;
        height: 300px;
    }
    /* =IT Security
  -------------------------------------------------------------- */
    #Datanywhere {
        background: url("../img/DatanywhereSlice-md.jpg") no-repeat scroll center top/cover transparent;
        height: 300px;
    }
    /* =About
  -------------------------------------------------------------- */
    #PeterSchmanau {
        margin-bottom: 40px;
    }
    #partner {
        padding-top: 60px;
    }
    .geschaeftspartner {
        margin-top: 40px;
    }
    /* =Footer
  -------------------------------------------------------------- */
    #footer {
        font-size: 14px;
    }
}


/* normal screen */

@media all and (min-width: 1200px) {
    /* =Main Content Styles
  -------------------------------------------------------------- */
    .section,
    #kontakt {
        padding: 90px 0;
    }
    .sectionHead {
        padding-bottom: 40px;
        margin-bottom: 40px;
    }
    /* =Intro
  -------------------------------------------------------------- */
    #header {
        background: url("../img/header-md.jpg") no-repeat scroll center -100px/cover transparent;
        height: 440px;
    }
    .claimbox {
        bottom: 85px;
    }
    /* =About
  -------------------------------------------------------------- */
    #about {
        padding-bottom: 90px;
    }
}

@media all and (min-width: 1400px) {
    /* =Intro
  -------------------------------------------------------------- */
    #header {
        background: url("../img/header-lg.jpg") no-repeat scroll center top/cover transparent;
    }
    /* =IT Security
  -------------------------------------------------------------- */
    #itSecuritySlice {
        background: url("../img/itSecuritySlice-lg.jpg") no-repeat scroll center top/cover transparent;
    }
    /* =Datanywhere
  -------------------------------------------------------------- */
    #Datanywhere {
        background: url("../img/DatanywhereSlice-lg.jpg") no-repeat scroll center top/cover transparent;
    }
}


/* =Animation
-------------------------------------------------------------- */

.animated {
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes slideDown {
    0% {
        -moz-transform: translateY(-100%);
    }
    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes slideDown {
    0% {
        -o-transform: translateY(-100%);
    }
    100% {
        -o-transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

.animated.slideDown {
    -webkit-animation-name: slideDown;
    -moz-animation-name: slideDown;
    -o-animation-name: slideDown;
    animation-name: slideDown;
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-100%);
    }
}

@-moz-keyframes slideUp {
    0% {
        -moz-transform: translateY(0);
    }
    100% {
        -moz-transform: translateY(-100%);
    }
}

@-o-keyframes slideUp {
    0% {
        -o-transform: translateY(0);
    }
    100% {
        -o-transform: translateY(-100%);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

.animated.slideUp {
    -webkit-animation-name: slideUp;
    -moz-animation-name: slideUp;
    -o-animation-name: slideUp;
    animation-name: slideUp;
}

@-webkit-keyframes swingInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
    }
}

@-moz-keyframes swingInX {
    0% {
        -moz-transform: perspective(400px) rotateX(-90deg);
    }
    100% {
        -moz-transform: perspective(400px) rotateX(0deg);
    }
}

@-o-keyframes swingInX {
    0% {
        -o-transform: perspective(400px) rotateX(-90deg);
    }
    100% {
        -o-transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes swingInX {
    0% {
        transform: perspective(400px) rotateX(-90deg);
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
    }
}

.animated.swingInX {
    -webkit-transform-origin: top;
    -moz-transform-origin: top;
    -ie-transform-origin: top;
    -o-transform-origin: top;
    transform-origin: top;
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: swingInX;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: swingInX;
    -o-backface-visibility: visible !important;
    -o-animation-name: swingInX;
    backface-visibility: visible !important;
    animation-name: swingInX;
}

@-webkit-keyframes swingOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
    }
}

@-moz-keyframes swingOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
    }
    100% {
        -moz-transform: perspective(400px) rotateX(-90deg);
    }
}

@-o-keyframes swingOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
    }
    100% {
        -o-transform: perspective(400px) rotateX(-90deg);
    }
}

@keyframes swingOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
    }
    100% {
        transform: perspective(400px) rotateX(-90deg);
    }
}

.animated.swingOutX {
    -webkit-transform-origin: top;
    -webkit-animation-name: swingOutX;
    -webkit-backface-visibility: visible !important;
    -moz-animation-name: swingOutX;
    -moz-backface-visibility: visible !important;
    -o-animation-name: swingOutX;
    -o-backface-visibility: visible !important;
    animation-name: swingOutX;
    backface-visibility: visible !important;
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@-moz-keyframes flipInX {
    0% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    100% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@-o-keyframes flipInX {
    0% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    100% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.animated.flipInX {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipInX;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipInX;
    backface-visibility: visible !important;
    animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-moz-keyframes flipOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@-o-keyframes flipOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.animated.flipOutX {
    -webkit-animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -moz-animation-name: flipOutX;
    -moz-backface-visibility: visible !important;
    -o-animation-name: flipOutX;
    -o-backface-visibility: visible !important;
    animation-name: flipOutX;
    backface-visibility: visible !important;
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes bounceInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-200px);
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(30px);
    }
    80% {
        -moz-transform: translateY(-10px);
    }
    100% {
        -moz-transform: translateY(0);
    }
}

@-o-keyframes bounceInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-200px);
    }
    60% {
        opacity: 1;
        -o-transform: translateY(30px);
    }
    80% {
        -o-transform: translateY(-10px);
    }
    100% {
        -o-transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-200px);
    }
    60% {
        opacity: 1;
        transform: translateY(30px);
    }
    80% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.animated.bounceInDown {
    -webkit-animation-name: bounceInDown;
    -moz-animation-name: bounceInDown;
    -o-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
    }
    30% {
        opacity: 1;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
    }
}

@-moz-keyframes bounceOutUp {
    0% {
        -moz-transform: translateY(0);
    }
    30% {
        opacity: 1;
        -moz-transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(-200px);
    }
}

@-o-keyframes bounceOutUp {
    0% {
        -o-transform: translateY(0);
    }
    30% {
        opacity: 1;
        -o-transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -o-transform: translateY(-200px);
    }
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        transform: translateY(-200px);
    }
}

.animated.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    -moz-animation-name: bounceOutUp;
    -o-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}


/*# sourceMappingURL=style.css.map */