/*
* BG Video
*/

#image {
    position: fixed;
    top: -1px;
    left: -1px;
    width: 1px;
    height: 1px;
}
video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    opacity: 0.5;

    -webkit-filter: url("#lumtoalpha");
    filter: url("#lumtoalpha");
    filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'lumtoalpha\'><feColorMatrix type=\'luminanceToAlpha\'/><feComponentTransfer><feFuncR type=\'table\' tableValues=\'1 0\'/><feFuncG type=\'table\' tableValues=\'1 0\'/><feFuncB type=\'table\' tableValues=\'1 0\'/></feComponentTransfer></filter></svg>#lumtoalpha");

    -webkit-transform: translateX(-50%) translateY(-50%) scale(1);
    -moz-transform: translateX(-50%) translateY(-50%) scale(1);
    transform: translateX(-50%) translateY(-50%) scale(1);
    /*
    background: url('http://demosthenes.info/assets/images/polina.jpg') no-repeat;
    */
    background-size: cover;
    transition: all 0.5s ease-in-out;
}

video::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(150, 191, 17);
}

.page--header video, .intro video {
    z-index: 1;
}

#video-overlay {
    position: absolute;
    display: none;
    width: 100%;
    height: 30vh;
    bottom: 0;
    left: 0;
    background: -moz-linear-gradient(bottom, rgba(150, 191, 17, 1) 0%, rgba(150, 191, 17, 0) 100%);
    background: -webkit-linear-gradient(bottom, rgba(150, 191, 17, 1) 0%, rgba(150, 191, 17, 0) 100%);
    background: linear-gradient(to top, rgba(150, 191, 17, 1) 0%, rgba(150, 191, 17, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#96bf11', endColorstr='#0096bf11', GradientType=0);
    transition: all .3s;

}

.stopfade {
    opacity: 1;
    -webkit-filter: none;
    filter: none;
}

.fadeOut {
    opacity: 0;
}

button.pause {
    position: relative;
    z-index: 9999;
    display: none;
}

/**************/


#notification-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #fff;
    color: #232323;
    z-index: 888888;
}

/*
* PROJEKTE
*/

.project--logo img {
    width: 100%;
    height: auto;
}

.post--content {

    transition: all .3s;
    transition-delay: .0s;
    -webkit-backface-visibility: hidden;
    z-index: 2;
}

.post--info .read-more {

}

.is-animating {
    visibility: visible;
    opacity: 1;
}

/*
*   Projekt Detail
*/

.project-description .swiper-container {
    margin: 5rem 0;
    background: #f5f5f5;
    padding: 0px;
}


/*
*   Blog
*/

.come-in {
    transform: translateY(150px);
    animation: come-in 0.5s ease forwards;
}

@-webkit-keyframes come-in {
    to {
        transform: translateY(0);
    }
}

@keyframes come-in {
    to {
        transform: translateY(0);
    }
}

.nextprev {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nextprev .next {
    text-align: right;
}

.nextprev .prev {
    text-align: left;
}


time {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    color: #c0c0c0;
}