/*
Title:		www.soul-sign.de - main stylesheet file
Author:		mb@soul-sign.de // Marko Bresecke
*/


/* ==========================================================================
LESS
SASS

variables (ci color)
   ========================================================================== */


/* ==========================================================================
   IMPORT & FONTS
   ========================================================================== */


/*@import url("reset.css");	 reset */


/*@import url("normalise.css");	 reset */


/* @import url("vertical.css"); @media ( min-width : 768px ) */


/* check AspectRatio: Landscape => Portrait */


/* HeadLine - Display */


/*
@import url(http://fonts.googleapis.com/css?family=Varela+Round);
@import url(http://fonts.googleapis.com/css?family=Nunito:700);
@import url(http://fonts.googleapis.com/css?family=Quicksand:700);
*/

@font-face {
    font-family: 'Benguiat';
    src: url('../media/fnt/benguiatgothicstd-book.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BenguiatBold';
    src: url('../media/fnt/benguiatgothicstd-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


/*
@font-face {
    font-family: 'BebasNeue';
    src: url('../media/fnt/benguiatgothicstd-bold.woff') format('woff');
    src: url('../media/fnt/bebas-neue.eot');
    src: url('../media/fnt/bebas-neue.eot?#iefix') format('embedded-opentype'), url('../media/fnt/bebas-neue.woff') format('woff'), url('../media/fnt/bebas-neue.ttf') format('truetype'), url('../media/fnt/bebas-neue.svg#BebasNeue') format('svg');
    font-weight: normal;
    font-style: normal;
}
 */


/* BodyText - Sans Serif */

@import url(http://fonts.googleapis.com/css?family=Economica);

/*
@import url(http://fonts.googleapis.com/css?family=Rationale);
@import url(http://fonts.googleapis.com/css?family=Oxygen:300);
*/

@font-face {
    font-family: 'Agency';
    src: url('../media/fnt/agencyr.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'AgencyBold';
    src: url('../media/fnt/agencyb.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}


/* Utillity - Symbol */

@font-face {
    font-family: 'GeneralFoundicons';
    src: url('../media/fnt/general_foundicons.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

[class*="foundicon-"] {
    display: inline;
    width: auto;
    height: auto;
    line-height: inherit;
    vertical-align: baseline;
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
}

[class*="foundicon-"]:before {
    font-family: 'GeneralFoundicons';
    font-weight: normal;
    font-style: normal;
    text-decoration: inherit;
}

.foundicon-settings:before {
    content: "\f000";
}

.foundicon-plus:before {
    content: "\f003";
}

.foundicon-minus:before {
    content: "\f004";
}

.foundicon-checkmark:before {
    content: "\f005";
}

.foundicon-remove:before {
    content: "\f006";
}

.foundicon-mail:before {
    content: "\f007";
}

.foundicon-calendar:before {
    content: "\f008";
}

.foundicon-people:before {
    content: "\f00e";
}

.foundicon-up-arrow:before {
    content: "\f016";
}

.foundicon-search:before {
    content: "\f02e";
}


/* ==========================================================================
   OVERRIDE STANDARD
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:after,
*:before {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    border: 0px;
    font: 1em/1.4 'Agency', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 100%;
    /*15px*/
    font-weight: normal;
    /*400*/
    font-style: normal;
    background: #222;
    background-color: hsla(0, 0%, 15%, 1);
    /*CI/timedependant*/
    color: #aa3e03;
    /* overflow-y: hidden; */
    /* scroll */
    overflow-x: hidden;
    /* for LESS
    @baseFontFamily
    @baseFontSize
    @baseLineHeight*/
}


/* ==========================================================================
   TEXT STYLING
   ========================================================================== */

p,
.content {
    /* padding: 0 0 150px; bottom: Height of the footer */
    font: 1em/1.4 'Agency', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 1.25em;
    color: hsl(0, 0%, 85%);
}

h1,
h2,
h3,
.title {
    font: normal 1.5em/1.2 'Benguiat', Baskerville, Garamond, 'Times New Roman', serif;
    font-weight: bold;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    color: hsl(3, 87%, 35%);
}

a:link {
    text-decoration: none;
    color: hsla(3, 87%, 35%, 1);
    /*@linkColor*/
}

a:hover {
    text-decoration: underline;
    color: hsla(3, 87%, 53%, 1);
}

a:active {
    text-decoration: underline;
    color: hsla(3, 67%, 13%, 1);
}

a:visited {
    text-decoration: none;
    color: hsla(3, 5%, 55%, 0.8);
}

code,
.code {
    display: block;
    text-align: left;
    padding: 10px;
    font: 0.8em/1.6 Monaco, Mono-Space, monospace;
    background-color: hsla(0, 0%, 35%, 0.75);
    color: hsl(0, 0%, 75%);
    border: 1px solid hsl(0, 0%, 0%);
    box-shadow: 1px 1px 1px 1px hsla(0, 0%, 0%, 0.1);
    transition-property: all;
    transition-duration: 0.5s;
}

code:before,
.code:before {
    clear: both;
}

code:hover,
code:focus,
.code:hover,
.code:focus {
    background-color: hsla(0, 0%, 15%, 1.0);
    color: hsl(0, 0%, 95%);
    box-shadow: 3px 3px 3px 3px hsla(0, 0%, 0%, 0.75);
    transition-property: all;
    transition-duration: 1s;
}

ul {
    padding: 0 0 0 16px;
}

li {
    padding: 5px 0 5px 0;
}

hr {
    color: hsl(3, 87%, 53%);
    width: inherit;
    box-shadow: 0 3px 3px -3px hsla(0, 0%, 0%, 0.6);
}

cite,
address {
    padding: 0 0 0 0.25em;
    font: normal 0.75em 'Benguiat', sans-serif;
    font-style: italic;
    color: hsl(0, 0%, 65%);
}

figcaption {
    padding: 0.25em 0 0.5em 0;
    font: 0.8em/1.6 Monaco, Mono-Space, monospace;
    color: hsl(0, 0%, 45%);
}

article {
    margin: 5px 0px 0px 0px;
    width: 100%;
}

article div {
    background: hsla(0, 0%, 25%, 0.4);
    border-radius: 5px 5px 5px 15px;
    -moz-border-radius: 5px 5px 5px 15px;
    -webkit-border-radius: 5px 5px 5px 15px;
    border: 2px solid hsl(3, 87%, 35%);
    box-shadow: 0 10px 10px -10px hsla(0, 0%, 0%, 0.6);
    padding: 1.5em 0.5em 1.0em 0.5em;
    text-align: center;
    /*line-height: 20em;*/
}

article div header {
    padding-top: 0.25em;
}

article div p {
    padding-bottom: 0.5em;
}

article div p:first-letter,
article div span:first-letter {
    font: normal 1.5em/1.2 'Benguiat', Baskerville, Garamond, 'Times New Roman', serif;
    font-weight: normal;
    font-style: normal;
    font-size: 2em;
    color: hsl(0, 0%, 65%);
}

article div footer {
    margin: -0.5em 0 1.5em 0px;
}


/* ==========================================================================
   FORMULAR
   ========================================================================== */

textarea,
form input[type="text"],
form input[type="password"],
form input[type="datetime"],
form input[type="datetime-local"],
form input[type="date"],
form input[type="month"],
form input[type="time"],
form input[type="week"],
form input[type="number"],
form input[type="email"],
form input[type="url"],
form input[type="search"],
form input[type="tel"],
form input[type="color"] {
    display: inline-block;
    height: 1.8em;
    margin-bottom: 0.75em;
    padding: 4px 6px;
    background-color: hsla(0, 0%, 85%, 1.0);
    border: 1px solid hsla(0, 0%, 65%, 1.0);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border-image-outset: 0px;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    box-sizing: border-box;
    color: hsl(0, 0%, 20%);
    font-size: 0.75em;
    font-weight: normal;
    letter-spacing: normal;
    line-height: normal;
    vertical-align: middle;
    text-align: start;
    text-indent: 0px;
    text-shadow: none;
    text-transform: none;
    white-space: pre;
    word-spacing: 0px;
}

form input:focus,
form input.focused {
    background-color: hsla(0, 0%, 100%, 1.0);
    -webkit-box-shadow: 0 0 3px hsla(0, 0%, 0%, 0.15);
    -moz-box-shadow: 0 0 3px hsla(0, 0%, 0%, 0.15);
    box-shadow: 0 0 3px hsla(0, 0%, 0%, 0.15);
    color: hsl(0, 0%, 5%);
    text-shadow: 0 1px 0 hsl(0, 0%, 100%);
}

form select {
    width: 8.5em;
    height: 2em;
    margin: 0px 0px 10px 0px;
    padding: 4px 6px;
    background-color: hsla(0, 0%, 85%, 1.0);
    border: 1px solid hsla(0, 0%, 65%, 1.0);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border-image-outset: 0px;
    border-image-repeat: stretch;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-width: 1;
    box-sizing: border-box;
    color: hsl(0, 0%, 30%);
    font-family: 'Agency', sans-serif;
    font-size: 0.9em;
    font-weight: normal;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    vertical-align: middle;
    text-align: start;
    text-indent: 0px;
    text-shadow: none;
    text-transform: none;
    white-space: pre;
    word-spacing: 0px;
    cursor: pointer;
    align-items: center;
    writing-mode: horizontal-tb;
    -webkit-align-items: center;
    -webkit-appearance: menulist-button;
    -webkit-rtl-ordering: logical;
    -webkit-writing-mode: horizontal-tb;
    text-transform: uppercase;
    text-indent: 0px;
}

form select option {
    background-color: hsla(0, 0%, 25%, 1.0);
    color: hsla(0, 0%, 100%, 1.0);
}

form input::-webkit-input-placeholder {
    color: hsl(0, 0%, 50%);
}

form input:-moz-placeholder {
    color: hsl(0, 0%, 50%);
}

form input::-moz-placeholder {
    color: hsl(0, 0%, 50%);
}

form input:-ms-input-placeholder {
    color: hsl(0, 0%, 50%);
}

form input.search-input {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 1.8em;
    margin: 0;
    padding: 10px 35px 10px 10px;
    border: none;
    outline: none;
    background: hsl(0, 0%, 85%);
    color: hsl(0, 0%, 20%);
    /*font-family: inherit;*/
    font-size: 0.75em;
    z-index: 10;
}

form input[type="search"].search-input {
    -webkit-appearance: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
}

form input.search-input:focus,
form input.search-input.focused {
    background: hsl(0, 0%, 100%);
    color: hsl(0, 0%, 5%);
    width: 100%;
    width: 250px;
}

textarea {
    height: auto;
}

*::selection,
*::-ms-selection,
*::-moz-selection,
*::-webkit-selection,
*::-o-selection {
    background-color: hsl(0, 0%, 10%);
    color: hsl(0, 0%, 90%);
    text-shadow: none;
}


/* ==========================================================================
   GENERAL
   ========================================================================== */

 ::selection {
    color: #ffffff;
    background: #6e001a;
    background: hsla(346, 100%, 43%, 0.6);
}

 ::-moz-selection {
    color: #ffffff;
    background: #6e001a;
    background: hsla(346, 100%, 43%, 0.6);
}


/*  Text Blockquote */

.txt-quote blockquote {
    position: relative;
    margin: 1em 0 3em;
    padding: 15px;
    background: hsla(0, 0%, 95%, 0.8);
    background: -webkit-gradient(linear, 0 0, 0 100%, from(hsl(0, 0%, 95%)), to(hsl(0, 0%, 65%)));
    background: -moz-linear-gradient(hsl(0, 0%, 95%), hsl(0, 0%, 65%));
    background: -o-linear-gradient(hsl(0, 0%, 95%), hsl(0, 0%, 65%));
    background: linear-gradient(hsl(0, 0%, 95%), hsl(0, 0%, 65%));
    border: 5px solid hsl(0, 0%, 5%);
    -webkit-border-radius: 10px 10px 10px 10px;
    -moz-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
}

.txt-quote blockquote p {
    color: hsl(0, 0%, 20%);
}

.txt-quote blockquote p:first-letter {
    font: 1em/1.4 'Agency', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 1em;
    color: hsl(0, 0%, 20%);
}

.txt-quote>p:first-letter {
    font: normal 1.25em 'Benguiat', sans-serif;
    font-weight: normal;
    font-style: italic;
    color: hsl(0, 0%, 65%);
}

.txt-quote blockquote:before {
    /* creates triangle */
    display: block;
    /* reduce the damage in FF3.0 */
    position: absolute;
    bottom: -20px;
    /* value = - border-top-width - border-bottom-width */
    width: 0;
    border-color: hsl(0, 0%, 5%) transparent;
    border-style: solid;
    border-width: 20px 20px 0;
    content: "";
}

.txt-quote.left blockquote:before {
    left: 40px;
    /* controls horizontal position */
}

.txt-quote.right blockquote:before {
    right: 40px;
}

.txt-quote blockquote:after {
    /* creates triangle */
    display: block;
    /* reduce the damage in FF3.0 */
    position: absolute;
    bottom: -13px;
    /* value = - border-top-width - border-bottom-width */
    width: 0;
    border-color: hsl(0, 0%, 65%) transparent;
    border-style: solid;
    border-width: 13px 13px 0;
    content: "";
}

.txt-quote.left blockquote:after {
    left: 47px;
    /* value = (:before left) + (:before border-left) - (:after border-left) */
}

.txt-quote.right blockquote:after {
    right: 47px;
}

.txt-quote.left blockquote+p {
    margin: -50px 0 1.5em 0px;
    padding-left: 90px;
    text-align: left;
}

.txt-quote.right blockquote+p {
    margin: -50px 0 1.5em 0px;
    padding-right: 90px;
    text-align: right;
}


/*  Text Abbreviation */

abbr[title],
abbr[data-original-title] {
    border-bottom: 1px dotted;
    cursor: help;
}

.outline {
    display: none;
    /*
    text-outline: 1px 2px hsl(0, 0%, 100%);
    text-outline: 1px 2px hsla(0, 0%, 100%, 0.9);
    color: hsl(0, 0%, 10%);
    color: hsla(0, 0%, 10%, 0.1);
    -webkit-text-fill-color: hsla(0, 0%, 10%, 0.1);
    -webkit-text-stroke: 1px hsla(0, 0%, 100%, 0.9);
    text-shadow: 0px 0px hsla(0, 0%, 10%, 0.1);
   */
}


/*
@-moz-document url-prefix() {
    .outline {
        text-shadow: 0px 0px hsla(0, 0%, 100%, 0.9);
    }
}
*/

.filetype {
    display: block;
    float: left;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    width: 24px;
    height: 24px;
    margin-right: 5px;
}

.filetype-pdf {
    background-image: url(../media/img/icon_filetype_pdf.png);
}

.filetype-mp4 {
    background-image: url(../media/img/icon_filetype_mp4.png);
}

.linktype {
    display: block;
    float: left;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.linktype-intern {
    background-image: url(../media/img/icon_linktype_intern.png);
}

.linktype-extern {
    background-image: url(../media/img/icon_linktype_extern.png);
}


/*  Button*/

p.btn-link {
    display: block;
    padding: 15px 0px;
}

p.btn-link a,
p.btn-link a.current,
p.btn-link a.current:hover {
    display: inline-block;
    border: 1px solid #6d0019;
    margin: 2px 3px;
    padding: 4px 10px 3px;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.25em;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    color: #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #a90329;
    background: -moz-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #a90329), color-stop(44%, #8f0222), color-stop(100%, #6d0019));
    background: -webkit-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
    background: -o-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
    background: -ms-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
    background: linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
    vertical-align: middle;
}

p.btn-link a:hover {
    background: #6d0019;
}

p.btn-link a:active {
    background: #6d0019;
    background: -moz-linear-gradient(top, #6d0019 0%, #8f0222 56%, #a90329 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #6d0019), color-stop(56%, #8f0222), color-stop(100%, #a90329));
    background: -webkit-linear-gradient(top, #6d0019 0%, #8f0222 56%, #a90329 100%);
    background: -o-linear-gradient(top, #6d0019 0%, #8f0222 56%, #a90329 100%);
    background: -ms-linear-gradient(top, #6d0019 0%, #8f0222 56%, #a90329 100%);
    background: linear-gradient(top, #6d0019 0%, #8f0222 56%, #a90329 100%);
    -webkit-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
    -moz-box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
    box-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9);
}

p.btn-link a.current,
p.btn-link a.current:hover {
    color: #A5727D;
    background: #6d0019;
}

form input[type="submit"],
button,
.btn {
    display: inline-block;
    *display: inline;
    margin-bottom: 0;
    *margin-left: .3em;
    padding: 4px 12px;
    text-align: center;
    vertical-align: middle;
    font: inherit;
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    color: hsl(0, 0%, 20%);
    text-shadow: 0 1px 1px hsla(0, 0%, 100%, 0.75);
    cursor: pointer;
    background-color: hsl(0, 0%, 96%);
    *background-color: hsl(0, 0%, 90%);
    background-image: -moz-linear-gradient(top, hsl(0, 0%, 100%), hsl(0, 0%, 90%));
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(hsl(0, 0%, 100%)), to(hsl(0, 0%, 90%)));
    background-image: -webkit-linear-gradient(top, hsl(0, 0%, 100%), hsl(0, 0%, 90%));
    background-image: -o-linear-gradient(top, hsl(0, 0%, 100%), hsl(0, 0%, 90%));
    background-image: linear-gradient(to bottom, hsl(0, 0%, 100%), hsl(0, 0%, 90%));
    background-repeat: repeat-x;
    border: 1px solid hsl(0, 0%, 80%);
    *border: 0;
    border-color: hsl(0, 0%, 90%) hsl(0, 0%, 90%) #bfbfbf;
    border-color: hsla(0, 0%, 0%, 0.1) hsla(0, 0%, 0%, 0.1) hsla(0, 0%, 0%, 0.25);
    border-bottom-color: hsl(0, 0%, 70%);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
    *zoom: 1;
    -webkit-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.2), 0 1px 2px hsla(0, 0%, 0%, 0.05);
    -moz-box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.2), 0 1px 2px hsla(0, 0%, 0%, 0.05);
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, 0.2), 0 1px 2px hsla(0, 0%, 0%, 0.05);
}

form input[type="submit"]:hover,
form input[type="submit"]:focus,
form input[type="submit"]:active,
form input[type="submit"].active,
form input[type="submit"].disabled,
button:hover,
button:focus,
button:active,
button.active,
button.disabled,
.btn:hover,
.btn:focus,
.btn:active,
.btn.active,
.btn.disabled {
    color: #333333;
    background-color: #e6e6e6;
    *background-color: #d9d9d9;
}

form input[type="submit"]:active,
form input[type="submit"].active,
button:active,
button.active,
.btn:active,
.btn.active {
    background-color: hsl(0, 0%, 80%) \9;
}

form input[type="submit"]:first-child,
button:first-child,
.btn:first-child {
    *margin-left: 0;
}

form input[type="submit"]:hover,
form input[type="submit"]:focus,
button:hover,
button:focus,
.btn:hover,
.btn:focus {
    color: hsl(0, 0%, 20%);
    text-decoration: none;
    background-position: 0 -15px;
    -webkit-transition: background-position 0.1s linear;
    -moz-transition: background-position 0.1s linear;
    -o-transition: background-position 0.1s linear;
    transition: background-position 0.1s linear;
}

form input[type="submit"]:focus,
button:focus,
.btn:focus {
    outline: thin dotted hsl(0, 0%, 20%);
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

form input[type="submit"].active,
form input[type="submit"]:active,
button.active,
button:active,
.btn.active,
.btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 2px 4px hsla(0, 0%, 0%, 0.15), 0 1px 2px hsla(0, 0%, 0%, 0.05);
    -moz-box-shadow: inset 0 2px 4px hsla(0, 0%, 0%, 0.15), 0 1px 2px hsla(0, 0%, 0%, 0.05);
    box-shadow: inset 0 2px 4px hsla(0, 0%, 0%, 0.15), 0 1px 2px hsla(0, 0%, 0%, 0.05);
}

form input[type="submit"].disabled,
button.disabled,
.btn.disabled {
    cursor: default;
    background-image: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.btn-group {
    position: relative;
    display: inline-block;
    *display: inline;
    *margin-left: .3em;
    font-size: 0;
    white-space: nowrap;
    vertical-align: middle;
    *zoom: 1;
}

.btn-group>.dropdown-toggle {
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -moz-border-radius-topright: 4px;
    -moz-border-radius-bottomright: 4px;
}


/*  DropDown Menue*/

.dropdown-menu {
    position: absolute;
    top: 100%;
    top: 32px;
    left: 0;
    display: block;
    float: left;
    min-width: 50px;
    max-width: 276px;
    margin: 2px 0 0 0;
    padding: 5px 0;
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding;
    background-clip: padding-box;
    background-color: hsl(0, 0%, 100%);
    background-color: hsla(0, 0%, 100%, 0.8);
    box-shadow: 0 5px 10px hsla(0, 0%, 0%, 0.2);
    border: 1px solid hsl(0, 0%, 80%);
    border: 1px solid hsla(0, 0%, 0%, 0.2);
    *border-right-width: 2px;
    *border-bottom-width: 2px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px hsla(0, 0%, 0%, 0.2);
    -moz-box-shadow: 0 5px 10px hsla(0, 0%, 0%, 0.2);
    list-style: none;
    line-height: 20px;
    font-size: 14px;
    text-align: left;
    white-space: normal;
    z-index: 1010;
    opacity: 1.0;
    transition-property: opacity;
    transition-duration: 1s;
}

.dropdown-menu .divider {
    *width: 100%;
    height: 1px;
    margin: 9px 1px;
    *margin: -5px 0 5px;
    overflow: hidden;
    background-color: hsl(0, 0%, 10%);
    background-color: hsla(0, 0%, 10%, 0.8);
    border-bottom: 1px solid hsl(0, 0%, 50%);
    border-bottom: 1px solid hsla(0, 0%, 50%, 0.8);
}

.dropdown-menu .topic {
    display: table;
    position: relative;
    width: 100%;
    min-height: 1em;
    margin: 9px 1px;
    background-color: hsl(0, 0%, 10%);
    background-color: hsla(0, 0%, 10%, 0.8);
    border-bottom: 1px solid hsl(0, 0%, 50%);
    border-bottom: 1px solid hsla(0, 0%, 50%, 0.8);
}

.dropdown-menu .topic span {
    display: table-cell;
    margin: 0 auto;
    vertical-align: middle;
    text-align: center;
    font-family: 'Agency', sans-serif;
    font-size: 18px;
    font-weight: bold;
    font-style: normal;
    line-height: 20px;
    color: hsl(0, 0%, 90%);
    white-space: nowrap;
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-family: 'Agency', sans-serif;
    font-weight: bold;
    font-style: normal;
    line-height: 20px;
    color: hsl(0, 0%, 15%);
    white-space: nowrap;
}

.dropdown-menu>li>a:hover,
.dropdown-menu>li>a:focus {
    color: hsl(0, 0%, 100%);
    text-decoration: none;
    background-color: hsl(0, 0%, 15%);
    background-image: -moz-linear-gradient(top, hsl(0, 0%, 20%), hsl(0, 0%, 10%));
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(hsl(0, 0%, 20%)), to(hsl(0, 0%, 10%)));
    background-image: -webkit-linear-gradient(top, hsl(0, 0%, 20%), hsl(0, 0%, 10%));
    background-image: -o-linear-gradient(top, hsl(0, 0%, 20%), hsl(0, 0%, 10%));
    background-image: linear-gradient(to bottom, hsl(0, 0%, 20%), hsl(0, 0%, 10%));
    background-repeat: repeat-x;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

.dropdown-menu>.active>a,
.dropdown-menu>.active>a:hover,
.dropdown-menu>.active>a:focus {
    color: hsl(0, 0%, 100%);
    text-decoration: none;
    background-color: hsl(0, 0%, 15%);
    background-image: -moz-linear-gradient(top, hsl(0, 0%, 20%), hsl(0, 0%, 10%));
    background-image: -webkit-gradient(linear, 0 0, 0 100%, from(hsl(0, 0%, 20%)), to(hsl(0, 0%, 10%)));
    background-image: -webkit-linear-gradient(top, hsl(0, 0%, 20%), hsl(0, 0%, 10%));
    background-image: -o-linear-gradient(top, hsl(0, 0%, 20%), hsl(0, 0%, 10%));
    background-image: linear-gradient(to bottom, hsl(0, 0%, 20%), hsl(0, 0%, 10%));
    background-repeat: repeat-x;
    outline: 0;
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);
}

.dropdown-menu>.disabled>a,
.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    color: hsl(0, 0%, 60%);
}

.dropdown-menu>.disabled>a:hover,
.dropdown-menu>.disabled>a:focus {
    text-decoration: none;
    cursor: default;
    background-color: transparent;
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
}

.dropdown-menu>li>a div {
    display: table;
    position: relative;
    min-height: 32px;
}

.dropdown-menu>li>a div span {
    display: table-cell;
    vertical-align: middle;
}

.dropdown-menu>li>a div .icon_social_lablel {
    height: 32px;
    padding-left: 5px;
}

#menu-toggle {
    position: absolute;
    top: 2%;
    right: 2%;
    text-align: right;
    vertical-align: top;
    z-index: 10000;
    height: auto;
    display: inline-block;
    /*overflow: hidden;*/
}

#menu-toggle input {
    position: absolute;
    width: 64px;
    height: 64px;
    top: 2%;
    right: 2%;
    z-index: 100;
    opacity: 0;
    cursor: pointer;
}

#menu-toggle input~label {
    background-color: hsla(3, 87%, 35%, 0.1);
    ;
    position: absolute;
    width: 64px;
    height: 64px;
    top: 2%;
    right: 2%;
    z-index: 99;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#menu-toggle input:hover~label {
    background-color: hsla(3, 87%, 35%, 0.5);
    ;
}

#menu-toggle input:checked~label {
    background-color: hsla(3, 87%, 35%, 1);
    ;
}

#menu-toggle input~label p {
    color: #f00;
}

#menu-toggle input:checked~label p {
    color: #0f0;
}

#menu-toggle input~label .menu-toggle-icon {
    background: #fff;
    height: .5rem;
    margin-left: .75rem;
    margin-top: 1.75rem;
    width: 2.5rem;
}

#menu-toggle input~label .menu-toggle-icon::before,
#menu-toggle input~label .menu-toggle-icon::after {
    background: white;
    content: '';
    display: block;
    height: .5rem;
    width: 2.5rem;
}


/*#menu-toggle - Animation*/

#menu-toggle input~label .menu-toggle-icon::before,
#menu-toggle input~label .menu-toggle-icon::after,
#menu-toggle input:checked~label .menu-toggle-icon::before,
#menu-toggle input:checked~label .menu-toggle-icon::after {
    -webkit-transition: 250ms all;
    transition: 250ms all;
}

#menu-toggle input~label .menu-toggle-icon::before {
    -webkit-transform: translateY(-0.75rem);
    -ms-transform: translateY(-0.75rem);
    transform: translateY(-0.75rem);
}

#menu-toggle input~label .menu-toggle-icon::after {
    -webkit-transform: translateY(0.25rem);
    -ms-transform: translateY(0.25rem);
    transform: translateY(0.25rem);
}

#menu-toggle input:checked~label .menu-toggle-icon {
    background: transparent;
}

#menu-toggle input:checked~label .menu-toggle-icon::before {
    -webkit-transform: translateY(0rem) rotate(-45deg);
    -ms-transform: translateY(0rem) rotate(-45deg);
    transform: translateY(0rem) rotate(-45deg);
}

#menu-toggle input:checked~label .menu-toggle-icon::after {
    -webkit-transform: translateY(-0.5rem) translateX(0rem) rotate(45deg);
    -ms-transform: translateY(-0.5rem) translateX(0rem) rotate(45deg);
    transform: translateY(-0.5rem) translateX(0rem) rotate(45deg);
}

#menu-toggle input~ul {
    /*display: none; */
    visibility: collapse;
    opacity: 0.0;
    transition-property: opacity;
    transition-duration: 1s;
    -webkit-transform: translateX(200px);
    -ms-transform: translateX(200px);
    transform: translateX(200px);
    -webkit-transition: 250ms all;
    transition: 250ms all;
}

#menu-toggle input:checked~ul {
    /*display: block;*/
    visibility: visible;
    opacity: 1.0;
    transition-property: opacity;
    transition-duration: 1s;
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
    -webkit-transition: 250ms all;
    transition: 250ms all;
}

#menu-toggle .dropdown-menu {
    margin-top: 45px;
    /*32+5px*/
    position: relative;
    right: 2%;
}

.icon_social {
    background-image: url(../media/img/icon_social-spritesheet.png);
    background-repeat: no-repeat;
    display: block;
    float: left;
}

.icon_social_deviantart {
    width: 32px;
    height: 32px;
    background-position: -5px -5px;
}

.dropdown-menu li a:hover .icon_social_deviantart {
    width: 32px;
    height: 32px;
    background-position: -47px -5px;
}

.icon_social_facebook {
    width: 32px;
    height: 32px;
    background-position: -89px -5px;
}

.dropdown-menu li a:hover .icon_social_facebook {
    width: 32px;
    height: 32px;
    background-position: -131px -5px;
}

.icon_social_instagram {
    width: 32px;
    height: 32px;
    background-position: -5px -47px;
}

.dropdown-menu li a:hover .icon_social_instagram {
    width: 32px;
    height: 32px;
    background-position: -47px -47px;
}

.icon_social_linkedin {
    width: 32px;
    height: 32px;
    background-position: -89px -47px;
}

.dropdown-menu li a:hover .icon_social_linkedin {
    width: 32px;
    height: 32px;
    background-position: -131px -47px;
}

.icon_social_twitch {
    width: 32px;
    height: 32px;
    background-position: -5px -89px;
}

.dropdown-menu li a:hover .icon_social_twitch {
    width: 32px;
    height: 32px;
    background-position: -47px -89px;
}

.icon_social_twitter {
    width: 32px;
    height: 32px;
    background-position: -89px -89px;
}

.dropdown-menu li a:hover .icon_social_twitter {
    width: 32px;
    height: 32px;
    background-position: -131px -89px;
}

.icon_social_xing {
    width: 32px;
    height: 32px;
    background-position: -5px -131px;
}

.dropdown-menu li a:hover .icon_social_xing {
    width: 32px;
    height: 32px;
    background-position: -47px -131px;
}

.icon_social_youtube {
    width: 32px;
    height: 32px;
    background-position: -89px -131px;
}

.dropdown-menu li a:hover .icon_social_youtube {
    width: 32px;
    height: 32px;
    background-position: -131px -131px;
}

.icon_lang_de {
    background-image: url(../media/img/icon_lang_de.png);
    background-repeat: no-repeat;
    float: left;
    width: 32px;
    height: 32px;
}

.icon_lang_en {
    background-image: url(../media/img/icon_lang_en.png);
    background-repeat: no-repeat;
    float: left;
    width: 32px;
    height: 32px;
}

.lang_active {
    opacity: 0.65;
    border-width: 2px 0px 2px 0px;
    border-color: hsla(3, 87%, 35%, 1);
    border-style: solid;
    background-image: linear-gradient(to top, hsla(0, 0%, 35%, 0.65) 0%, hsla(0, 0%, 100%, 0) 35%, hsla(0, 0%, 100%, 0) 65%, hsla(0, 0%, 35%, 0.65) 100%);
}


/*  Special Characters*/

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: top;
    border-top: 4px solid hsl(0, 0%, 0%);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    content: "";
}

.btn .caret {
    margin-top: 8px;
    margin-left: 0;
}


/*  Tab */


/* ==========================================================================
   SHORTHAND
   ========================================================================== */


/*  Visibillity */

.hide {
    display: none !important;
    visibility: hidden !important;
}

.show {
    display: block !important;
    visibility: visible !important;
}

.fade-in {
    opacity: 0.0;
    transition-property: opacity;
    transition-time: 1s;
}

.fade-out {
    opacity: 1.0;
    transition-property: opacity;
    transition-time: 1s;
}


/*  Flow */

.float-left {
    float: left;
}

.float-right {
    float: right;
}


/*  Text Alignment */

.txt-left {
    text-align: left;
}

.txt-center {
    text-align: center;
}

.txt-right {
    text-align: right;
}


/*  Text type-style */

.txt-muted {
    color: hsl(0, 0%, 60%);
}

.txt-warning {
    color: hsl(38, 57%, 75%);
}

.txt-error,
del {
    color: hsl(1, 61%, 73%);
}

del {
    text-decoration: line-through;
    display: none;
    visibility: hidden;
}

.txt-info {
    color: hsl(200, 66%, 68%);
}

.txt-success,
ins {
    color: hsl(121, 49%, 53%);
}

ins {
    text-decoration: underline;
}

ins+del {
    display: none;
    visibility: hidden;
}

ins:hover+del {
    display: inline-block;
    visibility: visible;
}

ins:hover+del:before {
    content: " ";
    /* TODO Leerzeichen ignoriert & style nicht zurücksetzbar */
}


/* ==========================================================================
   SITE-SPECIFIC
   ========================================================================== */

#bg-body {
    background-color: hsla(0, 0%, 15%, 1);
    /*CI/timedependant*/
    background-image: none;
    background-repeat: repeat;
    background-attachment: scroll;
    background-position: 0 0;
    position: fixed;
    width: 200%;
    height: 200%;
    left: -50%;
    top: -50%;
    /*
	background:url(../media/img/fav/gonzo-head.png);
	background-size:cover;
	-webkit-background-size:cover;
	-moz-background-size:cover;
	-o-background-size:cover;
	background-repeat:no-repeat;
	background-position:center;
	overflow:hidden;
	z-index:-100;
*/
}

#bg-body img {
    position: absolute;
    min-width: 50%;
    min-height: 50%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    /*
	min-height:927;
	min-width:1920;
*/
}

#wrapper {
    position: relative;
    width: 100%;
    min-height: 100%;
}

* html #wrapper {
    height: 100%;
}


/* ERROR */

body div.error {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    margin-bottom: 10px;
    padding: 4px;
    border: 2px solid black;
    background: hsl(3, 87%, 35%);
    color: hsl(0, 0%, 85%) !important;
    font-size: 11px !important;
    z-index: 9999;
}

body div.error-browser {
    display: none;
}

body div.error-noscript {
    display: none;
    min-height: 30px;
}

div.error img {
    margin-right: 4px;
    vertical-align: middle;
}

div.error p {
    display: inline-block;
}

div.error-message {
    float: left;
    display: inline;
    width: 70%;
}

div.error-links {
    float: right;
    margin-left: 5%;
    margin-right: 35px;
}

.container {
    /* 	max-width: 800px; */
    min-height: 100%;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.container>header {
    padding: 30px 30px 10px 20px;
    margin: -50px 20px 10px 20px;
    position: relative;
    display: block;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.container>header h1 {
    font-family: 'BenguiatBold', 'Arial Narrow', Arial, sans-serif;
    font-size: 35px;
    line-height: 35px;
    position: relative;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
    padding: 0px 0px 5px 0px;
}

.container>header h2,
p.info {
    font-size: 16px;
    font-style: italic;
    color: #f8f8f8;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.6);
}

.container:after,
.row:after,
.col:after {
    clear: both;
    content: "";
    display: table;
    /*	height:0;
    line-height:0;
    visibility:hidden;
    overflow:hidden;*/
}

.clear:before,
.clear:after {
    content: "";
    display: table;
}

.clear:after {
    clear: both;
}

.clear {
    zoom: 1;
    /* For IE 6/7 (trigger hasLayout) */
    /*    display:block;*/
}


/* ==========================================================================
   HEADER
   ========================================================================== */

#header {
    position: fixed;
    display: block;
    margin: 0 auto;
    margin-top: 25px;
    width: 100%;
    min-height: inherit;
    /*height:140px;*/
    background: none repeat scroll 0 0 hsla(0, 0%, 100%, 0.4);
    text-align: center;
    z-index: 999;
    /*overflow:hidden;*/
}

#header:hover {
    left: 15px;
}

#header .logo {
    display: inline-block;
    float: left;
    width: 250px;
    min-height: 140px;
    vertical-align: middle;
    background: linear-gradient(hsla(0, 0%, 100%, 0.5), hsla(0, 0%, 100%, 0.8)) repeat scroll 0 0 hsla(0, 0%, 100%, 0);
    border-right: 1px solid hsla(0, 0%, 0%, 0.8);
    border-top: 1px solid hsla(0, 0%, 0%, 0.8);
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.8);
    box-shadow: 0 4px 4px -4px hsla(0, 0%, 0%, 0.5);
}


/*#header .logo h1,
    #header .logo a,
    #header .logo img {
    margin:0px;
    padding:0px;
    }*/


/* TODO <span class="switch"> 2-Klick Datenschutz http://www.heise.de/ct/artikel/2-Klicks-fuer-mehr-Datenschutz-1333879.html */

#settings {
    background-color: hsl(0, 0%, 0%);
    display: inline-block;
    position: relative;
    margin-left: 10px;
    margin-top: 45px;
    float: right;
    width: 100px;
    height: 35px;
    vertical-align: middle;
    line-height: 35px;
    opacity: 0.4;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}

#settings:hover {
    /*  height:200px; */
    opacity: 1;
}

#settings input {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    cursor: pointer;
}

#settings label {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    background: hsl(45, 5%, 65%);
    border-radius: 40px;
    box-shadow: inset 0 3px 8px 1px hsla(0, 0%, 0%, 0.2), 0 1px 0 hsla(0, 0%, 100%, 0.5);
}

#settings label:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -8px;
    right: -8px;
    bottom: -8px;
    left: -8px;
    border-radius: inherit;
    background: hsl(0, 0%, 80%);
    /* Fallback */
    background: linear-gradient(hsl(0, 0%, 95%), hsl(0, 0%, 65%));
    box-shadow: 0 0 10px hsla(0, 0%, 0%, 0.3), 0 1px 1px hsla(0, 0%, 0%, 0.25);
}

#settings label:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -18px;
    right: -18px;
    bottom: -18px;
    left: -18px;
    border-radius: inherit;
    background: hsl(0, 0%, 93%);
    /* Fallback */
    background: linear-gradient(hsl(0, 0%, 91%), hsl(0, 0%, 93%));
    box-shadow: 0 1px 0 hsla(0, 0%, 100%, 0.5);
    -webkit-filter: blur(1px);
    /* Smooth trick */
    filter: blur(1px);
    /* Future-proof */
}

#settings label p {
    display: block;
    height: 100%;
    width: 60%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    border-radius: inherit;
    background: hsl(42, 11%, 70%);
    /* Fallback */
    background: linear-gradient(hsl(312, 2%, 97%), hsl(42, 11%, 70%));
    box-shadow: inset 0 1px 0 white, 0 0 8px hsla(0, 0%, 0%, 0.3), 0 5px 5px hsla(0, 0%, 0%, 0.2);
}

#settings label p:after {
    content: "";
    position: absolute;
    left: 15%;
    top: 25%;
    width: 70%;
    height: 50%;
    background: hsl(32, 7%, 82%);
    /* Fallback */
    background: linear-gradient(hsl(44, 7%, 80%), hsl(32, 7%, 82%));
    border-radius: inherit;
}

#settings label p:before {
    content: "off";
    position: absolute;
    top: 50%;
    right: -50%;
    margin-top: -12px;
    color: hsl(0, 0%, 40%);
    /* Fallback */
    color: hsla(0, 0%, 0%, 0.4);
    font-style: normal;
    font-weight: bold;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 hsl(43, 7%, 74%), 0 -1px 0 hsl(47, 6%, 59%);
}

#settings input:checked~label {
    /* Background */
    background: hsl(95, 30%, 73%);
}

#settings input:checked~label p {
    /* Toggle */
    left: auto;
    right: -1%;
}

#settings input:checked~label p:before {
    /* On/off */
    content: "on";
    right: 115%;
    color: hsl(93, 34%, 63%);
    text-shadow: 0 1px 0 hsl(95, 24%, 80%), 0 -1px 0 hsl(96, 34%, 53%);
}

#social {
    display: inline-block;
    margin-left: 10px;
    margin-top: 45px;
    float: right;
    width: 100px;
    vertical-align: middle;
    line-height: 35px;
}

#client {
    display: inline-block;
    margin-left: 10px;
    margin-top: 45px;
    float: right;
    /*width: 200px;*/
    vertical-align: middle;
    line-height: 35px;
}

#search {
    display: inline-block;
    position: relative;
    float: right;
    /*overflow: hidden;*/
    margin-left: 10px;
    margin-top: 45px;
    float: right;
    width: 0%;
    min-width: 100px;
    height: 60px;
    line-height: 35px;
    vertical-align: middle;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    transition: width 0.3s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

#header .nav {
    display: inline-block;
    min-width: 750px;
    line-height: 35px;
    /*		float: right;*/
    margin: 0 auto;
    margin-top: 45px;
    /*	margin-right:10%;*/
    text-align: center;
    vertical-align: middle;
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
}

#header .nav ul {
    height: inherit;
    float: left;
    padding: 0px 0px 0px 0px;
}

#header .nav ul li {
    float: left;
    height: 3em;
    padding: 3px 10px 4px 10px;
    list-style-type: none;
    background-color: hsla(0, 0%, 0%, 0.6);
    opacity: 0.6;
    transition: all 0.5s ease-in-out 0.2s;
}

#header .nav ul li:hover {
    opacity: 1;
}

#header .nav ul li h1 {
    height: inherit;
    padding: 3px 10px 5px 10px;
}

#header .nav ul li h1:hover :before {
    content: '[';
}

#header .nav ul li h1:hover :after {
    content: ']';
}

#header .nav ul li h1 a:hover {
    text-decoration: none;
}

#header .nav ul span {
    float: left;
    height: 3em;
    padding: 3px 0px 4px 0px;
    background-color: hsla(0, 0%, 0%, 0.6);
    opacity: 0.6;
}

.search-submit,
.search-icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5em;
    margin: 7px 10px 0 0;
    padding: 0;
    text-align: center;
    cursor: pointer;
}

.search-submit {
    background: hsl(0, 0%, 100%);
    /* IE needs this */
    border: none;
    outline: none;
    color: transparent;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    /* IE 8 */
    filter: alpha(opacity=0);
    /* IE 5-7 */
    opacity: 0;
    z-index: -1;
}

.search-icon {
    background: hsl(0, 45%, 30%);
    color: hsl(0, 0%, 100%);
    speak: none;
    z-index: 90;
}

.search-icon:before {
    content: " >>";
}

#search .focused .search-icon {
    background: hsl(0, 45%, 30%);
    color: hsl(0, 0%, 100%);
    z-index: 11;
}

#search .focused .search-submit {
    z-index: 90;
}


/* ==========================================================================
   CONTENT
   ========================================================================== */

.container>main {
    min-height: inherit;
    display: inline-block;
}

#content {
    clear: both;
    position: relative;
    float: left;
    display: block;
    width: 100%;
    height: auto;
    margin-top: 0px;
    /*padding-top:150px;10%*/
    padding-bottom: 150px;
    /*9em*/
}

.content-box-border {
    border: 4px dotted hsl(3, 87%, 35%);
    border-radius: 25px;
    margin: 5px;
    padding: 10px;
}

.accordion,
.accordion * {
    /*dl*/
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.accordion {
    overflow: hidden;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
    border-radius: 3px;
    background: #f7f7f7;
}

.accordion-section-title {
    /*dt*/
    cursor: pointer;
    display: inline-block;
    width: 100%;
    padding: 15px;
    border-bottom: 1px solid #1a1a1a;
    outline: none;
    transition: all linear 0.25s;
    text-shadow: 0px 1px 0px #1a1a1a;
    /*text-align: left;
        background-color: #eee;
        color: #444;*/
}

.accordion-section-title.active {
    background: hsla(3, 87%, 35%, 0.9);
    text-decoration: none;
    color: #d9d9d9;
}

.accordion-section-title:hover {
    background: hsla(0, 0%, 5%, 0.9);
    text-decoration: none;
}

.accordion-section:last-child .accordion-section-title {
    border-bottom: none;
}

.accordion-section {
    /*dd*/
    /*display: none;
        overflow: hidden;
        padding: 0 18px;
        background-color: white;*/
}

.accordion-section-content {
    /*dd*/
    padding: 15px;
    display: none;
}

.accordion-section-content p {
    font: 1em/1.4 'Oxygen', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
    text-align: left !important;
}

.accordion-section-content h5 {
    font: 1.5em/2 'AgencyBold', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
    color: #d9d9d9;
}

.accordion-section-content ul {
    font: 1em/1.4 'Oxygen', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif !important;
    text-align: left;
    margin-left: 2em;
    color: hsl(0, 0%, 85%);
}

.accordion-closed {
    background: red;
}

.accordion-open {
    background: hsla(0, 0%, 10%, 0.65);
    border: 2px solid hsla(0, 0%, 65%, 0.75);
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

#footer {
    clear: both;
    position: absolute;
    bottom: 0;
    display: block;
    overflow: hidden;
    margin: 0 auto 0;
    /*adjust with footer-height */
    padding: 15px 0px 5px 0px;
    width: 100%;
    height: 150px;
    vertical-align: baseline;
    text-align: center;
    z-index: 9998;
    border-top: 7px solid hsla(0, 0%, 10%, 0.8);
    /*background:none repeat scroll 0 0 hsla(0, 0%, 10%, 0.6);*/
    color: hsla(0, 0%, 65%, 0.8);
    font-family: Agency, Arial, sans-serif;
    font-size: 85%;
    line-height: 1.5em;
    text-transform: uppercase;
    -moz-box-shadow: 0px -5px 2px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 0px -5px 2px rgba(0, 0, 0, 0.25);
    box-shadow: 0px -5px 2px rgba(0, 0, 0, 0.25);
}

#footer p {
    text-align: center;
}

#footer a {
    padding: 0px 10px;
    letter-spacing: 1px;
    color: #ddd;
    display: block;
    float: left;
}

#footer a:hover {
    color: #fff;
}

#footer ul {
    list-style-type: none;
}

#footer li {
    display: inline-block;
    margin-left: 0.25em;
    padding: 2px;
}

#footer ul.left {
    float: left;
    text-align: left;
}

#footer ul.right {
    float: right;
}

#footer ul.right a {
    float: none;
    display: inline;
}

#footer ul.bottom {
    vertical-align: text-bottom;
    margin-top: 85px;
}

#parallax-wrapper {
    overflow: hidden;
    position: relative;
    /* relative, absolute, fixed */
    width: 1000px;
    height: 500px;
    margin: 0px auto;
    margin-left: -375px;
    margin-top: -85px;
    zoom: -1;
    z-index: -9999;
}

.parallax-layer {
    position: absolute;
    background-repeat: no-repeat;
}

.footer-content {
    margin-top: -400px;
    min-height: 100px;
    z-index: 9999;
    /*text-shadow: 0px 0px 6px rgba(256,0,0,0.8);*/
    text-shadow: -1px -1px 6px rgba(100, 0, 0, 0.8), 1px -1px 6px rgba(100, 0, 0, 0.8), -1px 1px 6px rgba(100, 0, 0, 0.8), 1px 1px 6px rgba(100, 0, 0, 0.8);
}


/* ==========================================================================
   Pattern
   ========================================================================== */

.pattern-scanline {
    background: transparent url(../media/img/pattern_scanline-top.png) repeat-x top left;
    background-size: 2px 100px;
}

.pattern-halftone-bottom {
    background: transparent url(../media/img/pattern_halftone-bottom.png) repeat-x bottom left;
    background-size: 50px 150px;
    /*
        radial-gradient( circle, #000000 20%, transparent 0 ),
        radial-gradient( circle, #000000 25%, transparent 0 ),
        radial-gradient( circle, #000000 30%, transparent 0 ),
        radial-gradient( circle, #000000 35%, transparent 0 ),
        radial-gradient( circle, #000000 40%, transparent 0 ),
        radial-gradient( circle, #000000 45%, transparent 0 ),
        radial-gradient( circle, #000000 50%, transparent 0 ),
        radial-gradient( circle, #000000 55%, transparent 0 ),
        radial-gradient( circle, #000000 60%, transparent 0 ),
        radial-gradient( circle, #000000 65%, transparent 0 ),
        radial-gradient( circle, #000000 70%, transparent 0 ),
        radial-gradient( circle, #000000 75%, transparent 0 ),
        radial-gradient( circle, #000000 80%, transparent 0 ),
        radial-gradient( circle, #000000 85%, transparent 0 );
    background-size: 1em 1em;
    background-position:
    0 0,
    0 1em,
    0 2em,
    0 3em,
    0 4em,
    0 5em,
    0 6em,
    0 7em,
    0 8em,
    0 9em,
    0 10em,
    0 11em,
    0 12em,
    0 13em;
*/
}


/* ==========================================================================
   PAGE: Index (Language Gate)
   ========================================================================== */

.page-lang-gate {
    background-image: radial-gradient(circle, hsla(0, 0%, 45%, 1) 0%, hsla(0, 0%, 15%, 0) 35%);
    background-image: -webkit-gradient(circle at 0% 0%, hsla(0, 0%, 45%, 1) 0%, hsla(0, 0%, 15%, 0) 25%);
    background-image: -moz-radial-gradient(circle at 0% 0%, hsla(0, 0%, 45%, 1) 0%, hsla(0, 0%, 15%, 0) 25%);
    background-image: -o-radial-gradient(circle at 0% 0%, hsla(0, 0%, 45%, 1) 0%, hsla(0, 0%, 15%, 0) 25%);
    background-size: contain;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.85;
    -webkit-animation: ani_flicker 3s linear infinite;
    animation: ani_flicker 3s linear infinite;
}

@keyframes ani_flicker {
    from {
        opacity: 0.7;
    }
    4% {
        opacity: 0.7;
    }
    6% {
        opacity: 0.65;
    }
    8% {
        opacity: 0.75;
    }
    10% {
        opacity: 0.65;
    }
    11% {
        opacity: 0.7;
    }
    12% {
        opacity: 0.85;
    }
    14% {
        opacity: 0.75;
    }
    16% {
        opacity: 0.90;
    }
    17% {
        opacity: 0.75;
    }
    19% {
        opacity: 0.7;
    }
    20% {
        opacity: 0.69;
    }
    24% {
        opacity: 0.7;
    }
    26% {
        opacity: 0.89;
    }
    28% {
        opacity: 0.7;
    }
    38% {
        opacity: 0.65;
    }
    40% {
        opacity: 0.7;
    }
    42% {
        opacity: 0.8;
    }
    44% {
        opacity: 0.7;
    }
    46% {
        opacity: 0.69;
    }
    56% {
        opacity: 0.7;
    }
    58% {
        opacity: 0.95;
    }
    60% {
        opacity: 0.7;
    }
    68% {
        opacity: 0.7;
    }
    70% {
        opacity: .8;
        /*peak*/
    }
    72% {
        opacity: 0.7;
    }
    93% {
        opacity: 0.7;
    }
    95% {
        opacity: .8/*peak*/
    }
    97% {
        opacity: 0.7;
    }
    to {
        opacity: 0.7;
    }
}

video#bg-ani {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(polina.jpg) no-repeat;
    background-size: cover;
}

.lang-gate-box {
    display: block !important;
    margin: auto !important;
    ;
    left: 50% !important;
    top: 100% !important;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    /*
    min-height: 50px !important;
    min-width: 50px !important;
    height: 110px !important;
    width: 200px !important
    margin-left: -100px !important;
    margin-top: -55px !important;
    */
}


/* ==========================================================================
   PAGE: Profile
   ========================================================================== */

.page-profile {
    min-height: 100%;
    background-image: url(../media/vcr/soul-sign_bresecke-marko_skills-hard-thumb.svg), radial-gradient(circle at 0% 0%, hsla(0, 0%, 45%, 1) 0%, hsla(0, 0%, 15%, 0) 35%);
    background-size: 90% 90%, contain;
    background-image: url(../media/vcr/soul-sign_bresecke-marko_skills-hard-thumb.svg), -webkit-gradient(circle at 0% 0%, hsla(0, 0%, 45%, 1) 0%, hsla(0, 0%, 15%, 0) 25%);
    -webkit-background-size: 90% 90%, contain;
    background-image: url(../media/vcr/soul-sign_bresecke-marko_skills-hard-thumb.svg), -moz-radial-gradient(circle at 0% 0%, hsla(0, 0%, 45%, 1) 0%, hsla(0, 0%, 15%, 0) 25%);
    -moz-background-size: 90% 90%, contain;
    background-image: url(../media/vcr/soul-sign_bresecke-marko_skills-hard-thumb.svg), -o-radial-gradient(circle at 0% 0%, hsla(0, 0%, 45%, 1) 0%, hsla(0, 0%, 15%, 0) 25%);
    -o-background-size: 90% 90%, contain;
    /*filter: progid:DXImageTransform.Microsoft.gradient,*/
    background-repeat: no-repeat, no-repeat;
    background-position: 50% 50%, 50% 50%;
    animation: ani_bg_skills-hard-thumb 10s ease-in-out infinite alternate;
}

@keyframes ani_bg_skills-hard-thumb {
    from {
        background-size: 50% 50%, 100% 100%;
        /*transform:rotate(0deg, 0deg);*/
    }
    to {
        background-size: 75% 75%, 100% 100%;
        /*transform:rotate(-10deg, 0deg;*/
    }
}

.profile-avatar {
    position: relative;
    height: 200px;
    width: 200px;
    background: #fff;
    background: hsla(0, 0%, 100%, 0.2);
    border: 5px solid #fff;
    border: 5px solid hsla(0, 0%, 100%, 0.2);
    border-radius: 12px;
    box-shadow: 0 1px 1px hsla(0, 0%, 45%, 0.5);
}

.profile-avatar :hover {
    background: #fff;
    /*border: 5px solid #6e001a;
    border: 5px solid hsla(346, 100%, 43%, 0.5);*/
    box-shadow: 2px 2px 2px hsla(346, 100%, 43%, 0.5), -2px -2px 2px hsla(346, 100%, 43%, 0.5);
}

.profile-avatar-image {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 8px;
    /*
    border: 10px solid hsla(0, 0%, 100%, 0.25);
    -moz-background-clip: padding-box;
    background-clip: padding-box;
    */
}

.txt-skills-hard {
    margin-top: 2em;
    font-weight: 100;
    line-height: 150%;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px #000000;
    text-shadow: 2px 2px 4px hsla(0, 0%, 0%, 0.75);
}

.txt-highlight {
    /*text-transform: uppercase;*/
    color: hsla(346, 90%, 43%, 1);
    font-size: 200%;
    /*line-height: 250%;*/
    font-weight: 800;
}


/* ==========================================================================
   PAGE: Impressum
   ========================================================================== */

.page-impressum {
    min-height: 100%;
    position: relative;
    background-image: linear-gradient(to right, hsla(0, 0%, 5%, 0.8) 10%, transparent 20%, transparent 90%, hsla(0, 0%, 5%, 0.8) 98%, hsla(0, 0%, 5%, 0.8) 100%);
    background-size: 100% 100%;
    background-image: -webkit-linear-gradient(to right, hsla(0, 0%, 5%, 0.8) 10%, transparent 20%, transparent 90%, hsla(0, 0%, 5%, 0.8) 98%, hsla(0, 0%, 5%, 0.8) 100%);
    -webkit-background-size: 100% 100%;
    background-image: -moz-linear-gradient(to right, hsla(0, 0%, 5%, 0.8) 10%, transparent 20%, transparent 90%, hsla(0, 0%, 5%, 0.8) 98%, hsla(0, 0%, 5%, 0.8) 100%);
    -moz-background-size: 100% 100%;
    background-image: -o-linear-gradient(to right, hsla(0, 0%, 5%, 0.8) 10%, transparent 20%, transparent 90%, hsla(0, 0%, 5%, 0.8) 98%, hsla(0, 0%, 5%, 0.8) 100%);
    -o-background-size: 100% 100%;
}

.page-impressum #content {
    background-image: url(../media/img/pattern_fullfillment_speye_tile-brick-v.png);
    background-size: 128px 64px;
    background-repeat: repeat;
    background-blend-mode: lighten;
    /*opacity: 0.2;*/
}

main section {
    display: block;
    margin-top: 1em;
    margin-bottom: 3em;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 3em;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

main section aside {
    color: #888888;
}

main section p:first-letter {
    font-size: 150%;
    font-style: italic;
    color: #aa0000;
    color: hsla(3, 87%, 35%, 1);
    margin-right: 0.1em;
}

#map {
    min-height: 450px;
    margin-top: -0px;
    border-top: 3px solid hsl(0, 0%, 90%);
    border-bottom: 1px solid hsl(0, 0%, 10%);
    box-shadow: 0px 25px 10px 5px hsla(0, 0%, 0%, 0.1);
}

#sub-navi-anchor {
    position: fixed;
    width: 10em;
    margin-top: 5em;
    margin-left: 2.5em;
    padding: 0.5em;
    background-color: #333333;
    border: 1px solid #888888;
}

#sub-navi-anchor ul li {
    list-style: none;
}

main section .row-2 {
    display: flex;
    width: 20%;
    flex: 1 20%;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: center;
    align-content: center;
    align-self: center;
    margin-left: 40%;
}

main section .row-2:after {
    content: "";
    display: table;
    clear: both;
}

main section .col-2-0 {
    width: auto;
    flex: auto;
    margin-right: auto;
    margin-left: auto;
}

main section .col-2-1 {
    display: inline-block;
    float: right;
    width: 30%;
    flex: 3 1 0%;
    order: 1;
    margin-right: 0px;
    margin-left: auto;
}

main section .col-2-2 {
    display: inline-block;
    float: left;
    width: 70%;
    flex: 7 1 0%;
    order: 2;
    margin-right: auto;
    margin-left: 0px;
    overflow-y: hidden;
}


/* ==========================================================================
   SlideShow Ani
   ========================================================================== */

.bg-slideshow,
.bg-slideshow:after {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
    overflow-y: hidden;
}

.bg-slideshow:after {
    content: '';
    background: transparent url(../media/img/pattern_overlay-dot.png) repeat top left;
}

.bg-slideshow li {
    list-style: none;
}

.bg-slideshow li span {
    /* Slideshow-Images */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    -webkit-animation: imageAnimation 60s linear infinite 0s;
    -moz-animation: imageAnimation 60s linear infinite 0s;
    -o-animation: imageAnimation 60s linear infinite 0s;
    -ms-animation: imageAnimation 60s linear infinite 0s;
    animation: imageAnimation 60s linear infinite 0s;
}

.bg-slideshow li div {
    /* Slideshow-Ttile */
    z-index: 1000;
    position: absolute;
    bottom: 30px;
    left: 0px;
    width: 100%;
    text-align: center;
    opacity: 0;
    color: #222;
    -webkit-animation: titleAnimation 60s linear infinite 0s;
    -moz-animation: titleAnimation 60s linear infinite 0s;
    -o-animation: titleAnimation 60s linear infinite 0s;
    -ms-animation: titleAnimation 60s linear infinite 0s;
    animation: titleAnimation 60s linear infinite 0s;
}

.bg-slideshow li div h3 {
    padding: 0;
    font-family: 'BenguiatBold', 'Arial Narrow', Arial, sans-serif;
    font-size: 200px;
    /*240px*/
    line-height: 190px;
    /*200px*/
}


/*images*/

.bg-slideshow li:nth-child(1) span {
    background-image: url(../media/img/fav/mbr_fav01_leap-of-faith.jpg)
    /*
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    -ms-animation-delay: 0s;
    animation-delay: 0s;
    */
}

.bg-slideshow li:nth-child(2) span {
    background-image: url(../media/img/fav/mbr_fav02_jahrgang84.jpg);
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}

.bg-slideshow li:nth-child(3) span {
    background-image: url(../media/img/fav/mbr_fav03_faaccs.jpg);
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}

.bg-slideshow li:nth-child(4) span {
    background-image: url(../media/img/fav/mbr_fav04_crime-city-nights.jpg);
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}

.bg-slideshow li:nth-child(5) span {
    background-image: url(../media/img/fav/mbr_fav05_and-beyond.jpg);
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}

.bg-slideshow li:nth-child(6) span {
    background-image: url(../media/img/fav/mbr_fav06_character-clay-topology.jpg);
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}

.bg-slideshow li:nth-child(7) span {
    background-image: url(../media/img/fav/mbr_fav07_deepdreamai-bestofcomp-landarch.jpg);
    -webkit-animation-delay: 36s;
    -moz-animation-delay: 36s;
    -o-animation-delay: 36s;
    -ms-animation-delay: 36s;
    animation-delay: 36s;
}

.bg-slideshow li:nth-child(8) span {
    background-image: url(../media/img/fav/mbr_fav08_das-geisterschiff.jpg);
    -webkit-animation-delay: 42s;
    -moz-animation-delay: 42s;
    -o-animation-delay: 42s;
    -ms-animation-delay: 42s;
    animation-delay: 42s;
}

.bg-slideshow li:nth-child(9) span {
    background-image: url(../media/img/fav/mbr_fav09_speed-scribble.jpg);
    -webkit-animation-delay: 48s;
    -moz-animation-delay: 48s;
    -o-animation-delay: 48s;
    -ms-animation-delay: 48s;
    animation-delay: 48s;
}

.bg-slideshow li:nth-child(10) span {
    background-image: url(../media/img/fav/mbr_fav10_gonzo-venture.jpg);
    -webkit-animation-delay: 54s;
    -moz-animation-delay: 54s;
    -o-animation-delay: 54s;
    -ms-animation-delay: 54s;
    animation-delay: 54s;
}

.bg-slideshow li:nth-child(11) span {
    background-image: url(../media/img/fav/mbr_fav01_leap-of-faith.jpg);
    -webkit-animation-delay: 60s;
    -moz-animation-delay: 60s;
    -o-animation-delay: 60s;
    -ms-animation-delay: 60s;
    animation-delay: 60s;
}


/*titles*/

.bg-slideshow li:nth-child(1) div {
    -webkit-animation-delay: 0s;
    -moz-animation-delay: 0s;
    -o-animation-delay: 0s;
    -ms-animation-delay: 0s;
    animation-delay: 0s;
}

.bg-slideshow li:nth-child(2) div {
    -webkit-animation-delay: 6s;
    -moz-animation-delay: 6s;
    -o-animation-delay: 6s;
    -ms-animation-delay: 6s;
    animation-delay: 6s;
}

.bg-slideshow li:nth-child(3) div {
    -webkit-animation-delay: 12s;
    -moz-animation-delay: 12s;
    -o-animation-delay: 12s;
    -ms-animation-delay: 12s;
    animation-delay: 12s;
}

.bg-slideshow li:nth-child(4) div {
    -webkit-animation-delay: 18s;
    -moz-animation-delay: 18s;
    -o-animation-delay: 18s;
    -ms-animation-delay: 18s;
    animation-delay: 18s;
}

.bg-slideshow li:nth-child(5) div {
    -webkit-animation-delay: 24s;
    -moz-animation-delay: 24s;
    -o-animation-delay: 24s;
    -ms-animation-delay: 24s;
    animation-delay: 24s;
}

.bg-slideshow li:nth-child(6) div {
    -webkit-animation-delay: 30s;
    -moz-animation-delay: 30s;
    -o-animation-delay: 30s;
    -ms-animation-delay: 30s;
    animation-delay: 30s;
}

.bg-slideshow li:nth-child(7) div {
    -webkit-animation-delay: 36s;
    -moz-animation-delay: 36s;
    -o-animation-delay: 36s;
    -ms-animation-delay: 36s;
    animation-delay: 36s;
}

.bg-slideshow li:nth-child(8) div {
    -webkit-animation-delay: 42s;
    -moz-animation-delay: 42s;
    -o-animation-delay: 42s;
    -ms-animation-delay: 42s;
    animation-delay: 42s;
}

.bg-slideshow li:nth-child(9) div {
    -webkit-animation-delay: 48s;
    -moz-animation-delay: 48s;
    -o-animation-delay: 48s;
    -ms-animation-delay: 48s;
    animation-delay: 48s;
}

.bg-slideshow li:nth-child(10) div {
    -webkit-animation-delay: 54s;
    -moz-animation-delay: 54s;
    -o-animation-delay: 54s;
    -ms-animation-delay: 54s;
    animation-delay: 54s;
}


/* Animation for the slideshow images */

@-webkit-keyframes imageAnimation {
    0% {
        opacity: 0;
        -webkit-animation-timing-function: ease-in;
    }
    5% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -webkit-animation-timing-function: ease-out;
    }
    10% {
        opacity: 1;
        -webkit-transform: scale(1.1);
    }
    25% {
        opacity: 0;
        -webkit-transform: scale(1.1);
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes imageAnimation {
    0% {
        opacity: 0;
        -moz-animation-timing-function: ease-in;
    }
    5% {
        opacity: 1;
        -moz-transform: scale(1.05);
        -moz-animation-timing-function: ease-out;
    }
    10% {
        opacity: 1;
        -moz-transform: scale(1.1);
    }
    25% {
        opacity: 0;
        -moz-transform: scale(1.1);
    }
    100% {
        opacity: 0;
    }
}

@-o-keyframes imageAnimation {
    0% {
        opacity: 0;
        -o-animation-timing-function: ease-in;
    }
    5% {
        opacity: 1;
        -o-transform: scale(1.05);
        -o-animation-timing-function: ease-out;
    }
    10% {
        opacity: 1;
        -o-transform: scale(1.1);
    }
    25% {
        opacity: 0;
        -o-transform: scale(1.1);
    }
    100% {
        opacity: 0;
    }
}

@keyframes imageAnimation {
    0% {
        opacity: 0;
        animation-timing-function: ease-in;
    }
    5% {
        opacity: 1;
        transform: scale(1.05);
        animation-timing-function: ease-out;
    }
    10% {
        opacity: 1;
        transform: scale(1.1);
    }
    25% {
        opacity: 0;
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
    }
}


/* Animation for the title */

@-webkit-keyframes titleAnimation {
    0% {
        opacity: 0;
        -webkit-transform: translateY(12.5em);
    }
    /*200px*/
    5% {
        opacity: 1;
        -webkit-transform: translateY(-11.25em);
    }
    /*-180px*/
    10% {
        opacity: 1;
        -webkit-transform: translateY(-11.25em) scale(1);
    }
    15% {
        opacity: 0;
    }
    25% {
        opacity: 0;
        -webkit-transform: translateY(0em) scale(10);
    }
    100% {
        opacity: 0;
    }
}

@-moz-keyframes titleAnimation {
    0% {
        opacity: 0;
        -moz-transform: translateY(12.5em);
    }
    5% {
        opacity: 1;
        -moz-transform: translateY(-11.25em);
    }
    10% {
        opacity: 1;
        -moz-transform: translateY(-11.25em) scale(1);
    }
    15% {
        opacity: 0;
    }
    25% {
        opacity: 0;
        -moz-transform: translateY(0em) scale(10);
    }
    100% {
        opacity: 0;
    }
}

@-o-keyframes titleAnimation {
    0% {
        opacity: 0;
        -o-transform: translateY(12.5em);
    }
    5% {
        opacity: 1;
        -o-transform: translateY(-11.25em);
    }
    10% {
        opacity: 1;
        -o-transform: translateY(-11.25em) scale(1);
    }
    15% {
        opacity: 0;
    }
    25% {
        opacity: 0;
        -o-transform: translateY(0em) scale(10);
    }
    100% {
        opacity: 0;
    }
}

@keyframes titleAnimation {
    0% {
        opacity: 0;
        transform: translateY(12.5em);
    }
    5% {
        opacity: 1;
        transform: translateY(-11.25em);
    }
    10% {
        opacity: 1;
        transform: translateY(-11.25em) scale(1);
    }
    15% {
        opacity: 0;
    }
    25% {
        opacity: 0;
        transform: translateY(0em) scale(10);
    }
    100% {
        opacity: 0;
    }
}


/* Show at least something when animations not supported */

.no-cssanimations .bg-slideshow li span {
    opacity: 1;
}


/* ==========================================================================
   GRID COLUMN SETUP
   ========================================================================== */


/*  offset, nesting */

.row {
    padding-bottom: 0em;
}

.col {
    display: block;
    float: left;
    /*  width: 100%;
    margin: 1% 0 1% 1.6%; */
}

.col:first-child {
    margin-left: 0;
    /* all browsers except IE6 and lower */
}


/* ==========================================================================
   RESPONSIVE DESIGN / MEDIA QUERIES
   ========================================================================== */

@media ( min-width: 768px) {
    .span_1 {
        width: 8.33333333333%;
    }
    .span_2 {
        width: 16.6666666667%;
    }
    .span_3 {
        width: 25%;
    }
    .span_4 {
        width: 33.3333333333%;
    }
    .span_5 {
        width: 41.6666666667%;
    }
    .span_6 {
        width: 50%;
    }
    .span_7 {
        width: 58.3333333333%;
    }
    .span_8 {
        width: 66.6666666667%;
    }
    .span_9 {
        width: 75%;
    }
    .span_10 {
        width: 83.3333333333%;
    }
    .span_11 {
        width: 91.6666666667%;
    }
    .span_12 {
        width: 100%;
    }
    .gutters .span_1 {
        width: 6.5%;
    }
    .gutters .span_2 {
        width: 15.0%;
    }
    .gutters .span_3 {
        width: 23.5%;
    }
    .gutters .span_4 {
        width: 32.0%;
    }
    .gutters .span_5 {
        width: 40.5%;
    }
    .gutters .span_6 {
        width: 49.0%;
    }
    .gutters .span_7 {
        width: 57.5%;
    }
    .gutters .span_8 {
        width: 66.0%;
    }
    .gutters .span_9 {
        width: 74.5%;
    }
    .gutters .span_10 {
        width: 83.0%;
    }
    .gutters .span_11 {
        width: 91.5%;
    }
    .gutters .span_12 {
        width: 100%;
    }
}


/* check AspectRatio: Landscape => Portrait */

@media (orientation: portrait) {
    /* Formate für hochformatige Ausgabemedien */
}

@media (orientation: landscape) {
    /* Formate für hochformatige Ausgabemedien */
}

@media screen and (max-width: 1024px) {
    .bg-slideshow li div h3 {
        font-size: 80px;
        line-height: 65px;
    }
}

@media screen and (max-width: 767px) {
    .container>header {
        text-align: center;
        margin-top: -35px;
    }
    p.btn-link {
        position: relative;
        top: auto;
        left: auto;
    }
    #map {
        min-height: 220px;
        height: 220px;
    }
}

@media screen and (max-width: 600px) {
    .bg-slideshow li div h3 {
        font-size: 40px;
        line-height: 35px;
    }
    html {
        background: url(../media/vid/soul-sign_logo-3d-ani_poster.png) #000 no-repeat center center fixed;
    }
    video#bg-ani {
        display: none;
    }
    #bg-ani-control {
        display: none;
    }
    .lang-gate-box {
        transform: translate(-50%, -100%) !important;
    }
}


/* ==========================================================================
   CUSTOM OVERRIDES
   ========================================================================== */

#ccc-icon {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}