/*! HTML5 Boilerplate v4.3.0 | MIT License | http://h5bp.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
    color: #222;
}

html {
    font-size: 1em;
    line-height: 1.4;

    /* background-color: #ecf0f1; */

    background: url(../img/83.jpg) no-repeat center center fixed; 
    background-size: 100% 100%;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images, videos, audio and canvas and the bottom of
 * their containers: h5bp.com/i/440
 */

audio,
canvas,
img,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browse Happy prompt
   ========================================================================== */

.browsehappy {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {

    /* background-color: #f0f0f0; */

}

#container {

    min-height: 100%;
    position: relative;

}


#navbar {
    min-height: 65px;
    width: 100%;
    position: fixed;

    margin-left: auto;
    margin-right: auto;

    top: 0;

    z-index: 100;

    background: rgba(44,137,240,1);

    /*background-color: #3A539B;*/

    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.content {

    /* background-color: #ffffff; */
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 100%;
    margin-left: auto;
    margin-right: auto;

    margin-top: 65px;

    /* overflow: hidden; */

    background-color: #fff;

    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    -moz-box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);

}

.cell {display: table-cell;}

.clear{width: 100%; clear: both; height: 0px; line-height:0px;}

.center {

    position: relative;
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;

    display: block;
    height: 65px;

    /*background-color: #43a3d4; */
    
}

.logo {

    display: block;
    height: 60px;
    width: 150px;
    background-image: url("../img/logo_hover.png");
    background-repeat: no-repeat;
    float:left;

    opacity: 0;

    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;

}

.logo:hover {

    opacity: 1;

} 

.logos  {

    display: block;
    height: 60px;
    width: 150px;
    margin: 2px 0px 0px 2px;
    background-repeat: no-repeat;
    float:left;
    background-image: url("../img/logo.png");

}

.navmenu {
    position: relative;
    margin: 0;
    float: right;
    max-width: 450px;
    text-align: right;
}

.navmenu li {

    display:inline;

}

.navmenu span, .navme span{

    vertical-align: middle;

}

.menubutton {

    /* font-family: 'Lato', sans-serif; */
    font-family: 'Raleway', 'sans-serif';
    font-size: 25px;
    text-decoration: none;
    color: #fff;

    /* text-shadow: 1px 1px 7px #555555; */

    height: 65px;

    width: 150px;

    display: block;
    
    float: left;
    
    text-align: center; 
    vertical-align: middle;
    line-height: 55px;


    position: relative;

    margin-top: 0px;

    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;

    border-bottom: 0px solid #FFFFFF;

}

.menubutton:active, .menubutton:focus{outline:none;}

.selectedbutton {
    -webkit-animation: blendin 1s forwards; /* Chrome, Safari, Opera */
    -moz-animation: blendin 1s forwards;
    animation: blendin 1s forwards;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes blendin {
    from {background-color: rgba(100,100,100,0.0);}
    to {background-color: rgba(100,100,100,0.1);}
}

@-moz-keyframes blendin {
    from {background-color: rgba(100,100,100,0.0);}
    to {background-color: rgba(100,100,100,0.1);}
}

/* Standard syntax */
@keyframes blendin {
    from {background-color: rgba(100,100,100,0.0);}
    to {background-color: rgba(100,100,100,0.1);}
}

.menubutton div {

    height: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;

    background-color: #ffffff;

    -webkit-transition: height 0.2s ease-in-out;
    -moz-transition: height 0.2s ease-in-out;
    transition: height 0.2s ease-in-out;

}


.menubutton:hover div {

    height: 7px;

}

.selectedbutton div{
    background-color: #00b0ff;
    height: 7px;

    -webkit-animation: blendins 1s forwards; /* Chrome, Safari, Opera */
    animation: blendins 1s forwards;
}

/* Chrome, Safari, Opera */
@-webkit-keyframes blendins {
    from {background-color: #fff;}
    to {background-color: #00b0ff;}
}

/* Standard syntax */
@keyframes blendins {
    from {background-color: #fff;}
    to {background-color: #00b0ff;}
}


.mainpic {

    width: 100%;
    max-width: 960px;

    display: block;

    max-height: 450px;

}




.blog {

    position: relative;
    margin-top: 0;

    width: 100%;
    max-width: 960px;
    height: 100%;

    float: left;

    background-color: #ffffff;

    padding-bottom: 10px;

}


.bigfont {
    /*font-family: 'Montserrat', 'sans-serif';
     font-family: 'Open Sans', 'sans-serif'; 
    font-family: 'Lato', sans-serif; */
    font-family: 'Raleway', 'sans-serif';
    font-size: 18pt; 
    /* color: #96c7d3; */
    color: #00b0ff;
    margin: 0;
}





.rightcolumn {

    margin-top: 0;

    width: 31.25%;
    max-width: 300px;

    float: right;

    display: block;

    height: 100%;

    position: relative;

}



.header_card{


    display: block;
    width: 100%;
    height: 70px;

    /* box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26); */

    background-color: #00b0ff; /* maybe differernt color? */

}

.divider {

    height: 15px;
    display: block;

}

.blogpost{

    position: relative;

    max-height: 400px;
    height: auto;

    max-width: 900px;
    width: 93.75%;

    text-decoration: none;

    display: block;

    margin-top: 0;
    margin-left: 3.125%;
    margin-right: 3.125%;
    margin-bottom: 20px;

    filter: blur(0px);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px);

    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;

    overflow: hidden;

    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);

}


/* .spotlight:hover{

    filter: blur(2px);
    -webkit-filter: blur(2px);
    -moz-filter: blur(2px);
    -o-filter: blur(2px);
    -ms-filter: blur(2px);

} */

.blogpost_image{

    position: relative;
    width: 200px;
    max-height: 400px;

    /*-webkit box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    -moz box-shadow: 0 2px 6px rgba(0,0,0,0.5);
    box-shadow: 0 2px 6px rgba(0,0,0,0.5);*/

}


.blogpost_titel{

    position: absolute;

    font-family: 'Raleway', 'sans-serif';
    font-size: 24pt; 
    font-weight: 400;

    color: #ffffff;
    margin-top: 7px;
    margin-left: 15px;

    top: 0;
    left: 200px;

}

.blogpost_preview{

    position: absolute;

    font-family: 'Raleway', 'sans-serif';
    font-size: 16pt; 
    color: #444;
    font-weight: 400;
    margin-top: 7px;
    margin-left: 15px;

    right: 15px;

    top: 40px;
    left: 200px;

}


.blogpost_header_back{

    display: block;

    position: absolute;

    top: 0;
    left: 200px;

    width: 700px;
    height: 55px;

    background-color: #00b0ff;

}


.blogpost_date{

    display: block;

    position: absolute;

    background-color: #0277bd;

    top: 10px;
    right: 10px;

    width: 90px;
    height: 35px;

    color: #fff;
    font-family: 'Raleway', 'sans-serif';
    font-size: 16pt; 
    padding-left: 15px;
}


.blogpost_more{

    display: block;

    position: absolute;

    background-color: #00b0ff;

    bottom: 0px;
    left: 200px;

    width: 700px;
    height: 35px;
    
}

.blogpost_more span{

    color: #fff;
    font-family: 'Raleway', 'sans-serif';
    font-size: 16pt; 
    margin-left: 15px;

}






.bigfont2 {

    font-family: 'Raleway', 'sans-serif';
    font-size: 18pt; 
    color: #fff;
    margin-top: 0;
    margin-left: 3.125%;

    display: block;

    padding-top: 20px;

    margin-bottom: 20px;

}



.newreleases {

    padding-bottom: 30px;
    background-color: #fff;


}

.spot{

    position: relative;
    float: left;
    width: 29.17%;
    max-height: 280px; 
    max-width: 280px;
    margin-left: 3.12%;

    background: #00b0ff;

    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);

}

.spot img{


    position: relative;
    display: block; 

    height: 100%;
    width: 100%;

    float: left;

    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;

    opacity: 1;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;

}


.spot:hover img{

    opacity: 0.7;

}

.spot p{

    font-family: 'Raleway', 'sans-serif';
    font-size: 24pt; 
    color: #fff;
    text-decoration: none;

    position: absolute;

    width: 100%;
    text-align: center;

    -webkit-transform: translate3d(0px,10px,0);
    transform: translate3d(0px,10px,0);

    opacity: 0;

    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;

}

.spot:hover p{

    -webkit-transform: transform: translate3d(0px,-30px,0);
    transform: translate3d(0px,-20px,0);

    opacity: 1;

}

.spot div{


    font-family: 'Raleway', 'sans-serif';
    font-size: 24pt; 
    color: #fff;
    text-decoration: none;

    position: absolute;

    bottom: 0px;

    width: 100%;
    text-align: center;

    -webkit-transform: translate3d(0px,10px,0);
    transform: translate3d(0px,10px,0);

    opacity: 0;

    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    transition-duration: 0.2s;

    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;

}

.spot:hover div{

    -webkit-transform: transform: translate3d(0px,-30px,0);
    transform: translate3d(0px,-10px,0);

    opacity: 1;

}


.whoweare {

    position: relative;

    background-color: #fff;

    max-width: 960px;
    min-height: 125px;
    margin-top: 0px;
    margin-bottom: 0px;

    overflow: hidden;


}



.whoweare_cont {

    color: #444;

    margin-bottom: 20px;

    margin-left: 3.12%;


    font-family: 'Raleway', 'sans-serif';
    font-size: 18pt; 
    font-weight: 400;

}


.head {

    position: relative;

    margin: 0;

    padding: 20px 0 20px 30px;

    background-color: #555e6a;

}


.beta{


    background: #e2e4e4;

    width: 100%;
    max-width: 300px;

    overflow: hidden;

}

.footer {  

    font-family: 'Muli', 'sans-serif';
    font-size: 14pt; 
    color: #fff;
    text-decoration: none;

    height: 100px;
    width: 100%;
    max-width: 960px;

    display: block;
    padding-top: 20px;

}


.footer a{

    text-decoration: none;
    color: #fff;
    float: right;

}


.copyright{

    float: left;

    color: #fff;

    font-family: 'Muli', 'sans-serif';
    font-size: 14pt; 

    margin: 12px 0 0 0;
}




.facebook {

    height: 48px;
    width: 48px;
    display: block;
    background: url("../img/facebook.png");

    float: right;

    margin: 0 10px 0 10px;
}

.twitter {

    height: 48px;
    width: 48px;
    display: block;
    background: url("../img/twitter.png");

    float: right;

    margin: 0 10px 0 10px;
}

.mail {

    height: 48px;
    width: 48px;
    display: block;
    background: url("../img/mail.png");

    float: right;

    margin: 0 0px 0 10px;
}


.impress{

    margin: 12px 10px 0 10px;



}




.impressum{

    font-family: 'Muli', 'sans-serif';
    font-size: 14pt;

    padding-left: 30px;

    overflow: hidden;

}

















@media screen and (max-width: 650px){.rightcolumn{display:none;} .leftcolumn{width:100%;}}
@media screen and (max-width: 650px){.menubutton:hover div{display:none;}}
@media screen and (max-width: 650px){.navbar{height: 50px;} .navbar{height: 50px;}}

@media screen and (max-width: 650px){.blogpost p{font-size: 24pt;}}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

@media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */

@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links for images, or javascript/internal links
     */

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group; /* h5bp.com/t */
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}













