/**
 Sven Varkel / Wasabi web development.
 Tehtud 09.05.2019
 */

/*body {*/
/*	background-image: url('1.jpg');*/
/*	background-repeat: no-repeat;*/
/*	margin-left: 0px;*/
/*	margin-top: 0px;*/
/*	margin-right: 0px;*/
/*	margin-bottom: 0px;*/
/*	background-position: left top;*/
/*	background-attachment: fixed;*/
/*	background-size: 100%;*/
/*}*/

@font-face {
    font-family: 'BebasNeueRegular';
    src: url('fonts/BebasNeue-webfont.eot');
    src: url('fonts/BebasNeue-webfont.eot?#iefix') format('embedded-opentype'),
    url('fonts/BebasNeue-webfont.woff') format('woff'),
    url('fonts/BebasNeue-webfont.ttf') format('truetype'),
    url('fonts/BebasNeue-webfont.svg#BebasNeueRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

/* CSS reset */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
}

ol, ul {
    list-style: none;
}

a {
    color: ghostwhite;
}


#yt-container {
    position: absolute;
    right: 20px;
    bottom: 5%;
    z-index: 10000;
}

#info-container {
    position: absolute;
    left: 20px;
    bottom: 10%;
    z-index: 10000;
    font-size: 2em;
    color: #fff;
}

.cb-slideshow,
.cb-slideshow:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
}

.cb-slideshow:after {
    content: '';
    background: transparent url(./pattern.png) repeat top left;
}

.cb-slideshow li span {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 30s linear infinite 0s;
}

.cb-slideshow li div {
    z-index: 1000;
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 100%;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

.cb-slideshow li h3, .cb-slideshow li h6 {
    font-family: 'BebasNeueRegular', 'Arial Narrow', Arial, sans-serif;
    padding: 0;
}

.cb-slideshow li h3 {
    font-size: 14em;
    line-height: 1em;
}

.cb-slideshow li h6 {
    font-size: 2em;
}

.cb-slideshow li:nth-child(1) span {
    background-image: url(1.jpg);
}

.cb-slideshow li:nth-child(2) span {
    background-image: url(2.jpg);
    animation-delay: 6s;
}

.cb-slideshow li:nth-child(3) span {
    background-image: url(3.jpg);
    animation-delay: 12s;
}

.cb-slideshow li:nth-child(4) span {
    background-image: url(4.jpg);
    animation-delay: 18s;
}


@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    8% {
        opacity: 1;
        animation-timing-function: ease-out;
    }
    17% {
        opacity: 1
    }
    25% {
        opacity: 0
    }
    100% {
        opacity: 0
    }
}

.no-cssanimations .cb-slideshow li span {
    opacity: 1;
}

@media screen and (max-width: 1140px) {
    .cb-slideshow li div h3 {
        font-size: 140px
    }
}

@media screen and (max-width: 600px) {
    .cb-slideshow li div h3 {
        font-size: 80px
    }
}

.fb-page {
    position: fixed;
    left: 20px;
    top: 20px;
    height: 100% !important;
    animation: none;
    z-index: 10000;
}

#logo-container {
    position: fixed;
    bottom: 100px;
    width: 100%;
}

#logo-container img {
    display: block;
    margin: 0px auto;
    width: 600px;
}