

.parallaxie{
    height: 580px;
    width: 100%;
    background: url("../images/background/start-page.jpg") 0 0 fixed;
    position: relative;
}

.heading-container{
    display: table;
    width: 100%;
    text-align: center;
}

.heading{
    color: #fff;
    display: table-cell;
    vertical-align: middle;
}

h1{
    /*font-family: 'Lato', sans-serif;*/
    font-weight: 100;
    font-size: 80px;
    line-height: 1.3;
    margin: 16px 0 0;
}

h1 span,
h2 span {
    /*color: #2fa68e;*/
    color: darkorange;
}

h2 {
    font-weight: 100;
    font-size: 50px;
    line-height: 1.3;
    margin: 16px 0 0;
}

/* navbar */

.navbar {
    padding: 0 1rem .5rem 1rem;
}

.navbar-brand {
    font-weight: 100;
    font-size: 50px;
    line-height: 1.3;
    /*margin: 16px 0 0;*/
}

.navbar-dark .navbar-text {
    font-weight: 100;
    font-size: 30px;
    color: darkorange; !important;
    text-align: left;
}

/* arrow-down */

.arrow-down {
    position: absolute;
    bottom: 50px;
    left: 50%;
    margin-left: -10px;
    width: 21px;
    height: 29px;
    display: block;
    -webkit-animation: bounce-fade 1.2s infinite; /* Safari 4+ */
    -moz-animation: bounce-fade 1.2s infinite; /* Fx 5+ */
    -o-animation: bounce-fade 1.2s infinite; /* Opera 12+ */
    animation: bounce-fade 1.2s infinite; /* IE 10+ */
    color: darkorange;
}

@-webkit-keyframes bounce-fade {
    0% {
        opacity: 0;
        bottom: 70px;
    }
    100% {
        opacity: 1;
        bottom: 35px;
    }
}

@-moz-keyframes bounce-fade {
    0% {
        opacity: 0;
        bottom: 70px;
    }
    100% {
        opacity: 1;
        bottom: 35px;
    }
}

@-o-keyframes bounce-fade {
    0% {
        opacity: 0;
        bottom: 70px;
    }
    100% {
        opacity: 1;
        bottom: 35px;
    }
}

@keyframes bounce-fade {
    0% {
        opacity: 0;
        bottom: 70px;
    }
    100% {
        opacity: 1;
        bottom: 35px;
    }
}

.btn-info {
    background-color: darkorange;
    border-color: darkorange;
}