/*
    Created on : Oct 29, 2016, 1:33:27 PM
    Author     : Juraj Marcin
*/

/*  Home  */
.home {
    height: 100vh;
    text-align: center;
    line-height: calc(100vh - 150px);
}
.home .background, .home .background-overlay {
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: -2;
}
.home .background {
    background-image: url(../img/us.jpg);
    background-size: cover;
}
.home .background video {
    object-fit: cover;
    position: absolute;
}
.home .background-overlay {
    z-index: -1;
    background-color: #222;
    opacity: 0.7;
}
.home .home-logo {
    width: 50%;
    vertical-align: middle;
}
.home h1 {
    position: absolute;
    bottom: 25px;
    text-align: center;
    font-size: 50px;
    line-height: 55px;
    padding-left: 25px;
    padding-right: 25px;
}


@media screen and (min-width: 1280px) {
    .home h1 {
        padding-left: calc((100vw - 1280px) / 2);
        padding-right: calc((100vw - 1280px) / 2);
    }
}

@media screen and (max-width: 768px),
screen and (orientation: portrait) {
    .home .home-logo {
        width: 90%
    }
    .home h1 {
        font-size: 30px;
        line-height: 33px;
    }
}
