/* ==========================================================================
   HTML5 Boilerplate styles - h5bp.com (generated via initializr.com)
   ========================================================================== */

*{
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
}

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

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

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

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

img {
    vertical-align: middle;
    max-width: 100%;
}

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

textarea {
    resize: vertical;
}

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


/*KEYFRAMES*/


@-webkit-keyframes categories_opacity {
  0%   { opacity: 0; }
  50%   { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes categories_opacity {
  0%   { opacity: 0; }
  50%   { opacity: 0; }
  100% { opacity: 1; }
}
@-o-keyframes categories_opacity {
  0%   { opacity: 0; }
  50%   { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes categories_opacity {
  0%   { opacity: 0; }
  50%   { opacity: 0; }
  100% { opacity: 1; }
}

@-webkit-keyframes scroll_down {
  0%,100%   { bottom: 10px; }
  50% { bottom: 20px; }
}
@-moz-keyframes scroll_down {
  0%,100%   { bottom: 10px; }
  50% { bottom: 20px; }
}
@-o-keyframes scroll_down {
  0%,100%   { bottom: 10px; }
  50% { bottom: 20px; }
}
@keyframes scroll_down {
  0%,100%   { bottom: 10px; }
  50% { bottom: 20px; }
}

@-webkit-keyframes slide_out {
  0% {
    -webkit-transform: translate(0, 0) translateZ(0);
    -moz-transform: translate(0, 0) translateZ(0);
    -ms-transform: translate(0, 0) translateZ(0);
    -o-transform: translate(0, 0) translateZ(0);
    transform: translate(0, 0) translateZ(0);
    opacity: 1;
  }
  100%   {
    -webkit-transform: translate(-100%, 0) translateZ(0);
    -moz-transform: translate(-100%, 0) translateZ(0);
    -ms-transform: translate(-100%, 0) translateZ(0);
    -o-transform: translate(-100%, 0) translateZ(0);
    transform: translate(-100%, 0) translateZ(0);
    opacity: 0;
  }
}

@-webkit-keyframes slide_in {
  0%   {
    -webkit-transform: scale(0.2, 0.2) translateZ(0);
    -moz-transform: scale(0.2, 0.2) translateZ(0);
    -ms-transform: scale(0.2, 0.2) translateZ(0);
    -o-transform: scale(0.2, 0.2) translateZ(0);
    transform: scale(0.2, 0.2) translateZ(0);
    opacity: 0;
  }
  30%   {
    opacity: 1;
  }
  90% {
    -webkit-transform: scale(1.1, 1.1) translateZ(0);
    -moz-transform: scale(1.1, 1.1) translateZ(0);
    -ms-transform: scale(1.1, 1.1) translateZ(0);
    -o-transform: scale(1.1, 1.1) translateZ(0);
    transform: scale(1.1, 1.1) translateZ(0);
  }
  100% {
    -webkit-transform: scale(1, 1) translateZ(0);
    -moz-transform: scale(1, 1) translateZ(0);
    -ms-transform: scale(1, 1) translateZ(0);
    -o-transform: scale(1, 1) translateZ(0);
    transform: scale(1, 1) translateZ(0);
  }
}


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

/*
Typekit font-selectors
.tk-futura-pt
.tk-futura-pt-condensed
.tk-museo-sans
.tk-proxima-nova
Typekit font-names
futura-pt
futura-pt-condensed
museo-sans
proxima-nova
 */

body{
    font-family: "proxima-nova", sans-serif;
    color:#222;
    font-size: 100%;
    line-height: 1.587;
    /*-webkit-font-smoothing:antialiased;*/
}

.loading{
    position:absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.spinner {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 18px;
  height: 18px;
  background-color: #666;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

/* FLASH MESSAGES */

.alert-box{
    background:#666;
    width:100%;
    padding:5px;
    text-align: center;
    font-weight: bold;
    color:#fff;
    font-size: 14px;
}
.alert-box.info{
    background:#3276b1;
}
.alert-box.success{
    background:#5cb85c;
}

#arrow{
    width:100%;
    height:30px;
    margin-top:-30px;
    background:#e2007a;
    position: relative;
    background:url(../img/arrow.png) no-repeat center;
}

h1{
    font-weight: 300;
    font-size: 40px;
    font-size: 2.5rem;
    color:#e2007a;
    margin:1.3em 0 1.1em;
    font-family: "proxima-nova", sans-serif;
}

h1+p{
    font-weight: 300;
    font-size: 24px;
    font-size: 1.5rem;
    color:#222;
    margin:-1.3em 0 1.1em;
    font-family: "proxima-nova", sans-serif;
}

h1:first-child{
    margin-top:0;
}

h2{
    font-family: "proxima-nova", sans-serif;
    font-weight: 400;
    font-size: 26px;
    font-size: 2rem;
    margin: 1em 0 0.5em;
}

h2:first-child{
    margin-top:0;
}

h2+h3{
    margin: -1em 0 2.5em;
    color: #999;
    font-weight: 200;
    line-height: 1.3em;
}

h3{
    font-family: "proxima-nova", sans-serif;
    font-weight: 300;
    font-size: 25px;
    font-size: 1.4rem;
    margin:1em 0 0.3em;
    line-height: 1.2em;
}

h3:first-child{
    margin-top:0;
}

.contact h3+p{
    margin:-0.6em 0 1em;
}
h4{
    color:#666;
    font-weight: 600;
    text-transform: uppercase;
}

p{
    font-weight: 300;
    line-height: 1.6875;
    margin: 0.5em 0;
    color: #222;
}
p:first-child{
    margin:0 0 0.5em 0;
}

a, a:visited{
    color:#2eb2ef;
    text-decoration: none;
}

a:hover, a:active{
    color:#15B3FC;
    border-bottom: 1px dotted #15B3FC;
}

hr{
    margin: 20px 0;
    margin: 2.5rem 0;
}

ul.unstyled{
    list-style: none;
    padding: 0;
    margin: 0;
}

input,textarea{
    /*font-size: 14px;
    padding:3px 6px;
    border-bottom:1px solid #aaa;
    border-top:1px solid #ccc;
    border-left:1px solid #ccc;
    border-right:1px solid #aaa;*/

    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    height: 36px;
    padding: 0 8px;
    margin: 0;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    font-size: 14px;
    color: #404040;
    margin-bottom: 5px;
    outline: none;
}
textarea{
    height: auto;
    padding: 5px 8px;
    margin: 0;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-top: 1px solid #c0c0c0;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    font-size: 14px;
    color: #404040;
    margin-bottom: 5px;
    width:100%;
}
input:focus{
    border:1px solid #2eb2ef;
}

::-webkit-input-placeholder {
   color: #ccc;
   font-weight: 300;
   font-size: 14px;
}

:-moz-placeholder { /* Firefox 18- */
   color: #ccc;
   font-weight: 300;
   font-size: 14px;
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #ccc;
   font-weight: 300;
   font-size: 14px;
}

:-ms-input-placeholder {
   color: #ccc;
   font-weight: 300;
   font-size: 14px;
}





/*GRID*/

.container {
    margin: 0 5%;
}

.header{
    width:100%;
    background: #fff;
    background: rgba(255,255,255,0.97);
    top:0;
    z-index: 10;
    -webkit-transition: top 0.5s;
    -moz-transition: top 0.5s;
    -ms-transition: top 0.5s;
    -o-transition: top 0.5s;
    transition: top 0.5s;
}

.header.hide{
    top:-100px;
}

.header #logo{
    text-align: center;
    display: block;
    margin-top:15px;
}

.header .navigation{
    width:auto;
    overflow: hidden;
    display: none;
}

.navigation-switcher{
    display:none;
}

.header ul{
    padding:0;
    margin: 0;
    list-style: none;
}

.header .navigation li{
    display: block;
    margin: 0;
}

.header ul li a{
    text-align: center;
    padding:20px;
    display: block;
    text-decoration: none;
    color:#222;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 2px solid #fff;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.header ul li a:hover{
    text-decoration: none;
    color:#222;
    border-bottom: 2px solid #2eb2ef;
}

.header ul li.active a{
    color:#2eb2ef;
    border-bottom: 2px solid #2eb2ef;
}

.header .register{
    border-left:1px solid #ccc;
    border-right:1px solid #ccc;
}

.meta-nav{
    clear: both;
    overflow: hidden;
    position: fixed;
    z-index: 100;
    top:0;
    left:0;
    right:0;
    border-top: 2px solid #e2007a;

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.meta-nav.hide{
    top:-100px;
}

.meta-nav ul{
    background: #fff;
    padding:0;
    margin: 0;
    list-style: none;
    width:auto;
}

.meta-nav .meta-nav-root ul{
    display: none;
    float:left;

}
.meta-nav .meta-nav-root > a{
    display:block;
    float:left;
    background:#e2007a;
    background: rgba(226,0,122,0.7);
    color:#fff;

}

.meta-nav .meta-nav-root:hover ul{
    display: block;
}

.meta-nav li{
    display: block;
    margin: 0;
    float: left;
}

.meta-nav ul li a{
    padding:20px;
    display: inline-block;
    text-decoration: none;
    color:#999;
    font-size: 14px;
    font-weight: 500;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.meta-nav ul li a:hover{
    text-decoration: none;
    color:#222;
    border-bottom: 2px solid #2eb2ef;
}

.meta-nav ul li.active a{
    color:#2eb2ef;
    border-bottom: 2px solid #2eb2ef;
}


.meta-nav ul li.top a{
    background:#e2007a;
    background: rgba(226,0,122,0.7);
    color:#fff;
}

.footer{
    background-color:#f0f0f0;
    padding-top:50px;
    padding-bottom:50px;
    margin-top:50px;
}

.footer h4{
    margin-bottom: 0.5em;
}

.footer li{
    font-size: 14px;
}

.footer .link a{
    padding-bottom:.1em;
    padding-top:.1em;
    margin-bottom:.3em;
    display:inline-block;
    border-bottom:1px solid transparent;
}

.footer .link a:hover{
    border-bottom:1px dotted #2eb2ef;
}


.content{
    padding-top:100px;
    background: #fff;
    position: relative;
    clear: both;
}


.banner+.content{
    padding-top:50px;
}

.banner, .banner-halb{
    overflow: hidden;
    position: relative;
    overflow: auto;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    /*background-attachment: fixed;*/
    /*-webkit-box-shadow: inset 0 -1px 10px rgba(0,0,0,0.6);
    -moz-box-shadow: inset 0 -1px 10px rgba(0,0,0,0.6);
    box-shadow: inset 0 -1px 10px rgba(0,0,0,0.6);*/
    z-index: 0;
}
.banner{
    height:100%;
}
/*
.banner .entry, .banner-halb .entry{
    background: #fff;
    position: relative;
    width: 50%;
    margin-left:50%;
    margin-top:50%;
    padding: 1em 0;
}*/

.banner .entry, .banner-halb .entry{
    background: #e2007a;
    position: absolute;
    padding: 1em 0;
}


.banner .entry h1, .banner-halb .entry h1{
    padding:0 20px;
    opacity: 0;
    font-size: 2rem;
    line-height: 1.2em;
    margin-bottom: 0px;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    color:#fff;
}

.banner .entry.show h1,.banner-halb .entry.show h1{
    opacity: 1;
}
.banner .entry p, .banner-halb .entry p{
    opacity: 0;
    font-weight: 300;
    font-size: 1.2rem;
    padding:0 1em 10px;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    color:#FF98CF;
    margin:0 0 1.1em;
}
.banner .entry.show p, .banner-halb .entry.show p{
    opacity: 1;
}
.banner p span, .banner-halb p span{
    background:#000;
    line-height: 1.6em;
    padding:2px;
}

.banner .entry p+.button{
    margin-top: 0;
}

.banner .entry .button{
    margin: 0 0 2em 0;
    border: none;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
}

.scroll-down{
    position: absolute;
    bottom:20px;
    -webkit-animation: scroll_down 3s infinite forwards;
    -o-animation: scroll_down 3s infinite forwards;
    animation: scroll_down 3s infinite forwards;
    left:50%;
    margin-left:-10%;
    width:20%;
    color:#fff;
    text-align: center;
    font-size:1em;

    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
}
.scroll-down.hide{
    opacity: 0;
}
.scroll-down i{
    font-size:3em;
}
.scroll-down a:hover{
    text-decoration: none!important;
}

.teaser{
    padding-top:20px;
    margin-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

/*CONTENT*/

/*chronik*/

.chronicles .column.active{
    -webkit-animation: slide_in forwards ease 0.5s;
    -o-animation: slide_in forwards ease 0.5s;
    animation: slide_in forwards ease 0.5s;
}

.chronicles{
    /*margin:50px 0 0;*/
    padding:50px 0 0;
    /*border-top: 1px solid #eee;*/
    width:100%;
    display: block;
    position: relative;
    height:370px;
    overflow: hidden;
}
.chronicles .column{

    -webkit-animation: slide_out forwards 0.3s;
    -o-animation: slide_out forwards 0.3s;
    animation: slide_out forwards 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.5);
    margin: 25px 0;
    padding: 30px 25px;
}
.chronicles .column h3{
    font-size: 16px;
    margin: 0;
    font-weight: 400;
    text-align: center;
}
.chronicles .column h3 span{
    padding:5px 30px;
    margin:0 0 10px;
    display: inline-block;
    border-bottom: 1px solid #eee;
}
.chronicles .column h4{
    font-size: 24px;
    text-transform: uppercase;
    margin: 0 0 20px;
    color:#222;
    text-align: center;
}
.chronicles .column p{
    font-size: 18px;
    margin: 0;
    text-align: center;
}

.nav_chronicles{
    /*position: fixed;
    bottom: 0;
    left:0;
    right:0;*/
    overflow: hidden;
    background: #fff;
    z-index: 100;
}
.nav_chronicles ul{
    width:100%;
    margin: 0;
    padding: 0;
}
.nav_chronicles li{
    display: inline-block;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    position: relative;
    cursor: pointer;
    margin:10px;
    min-width: 50px;
}
.nav_chronicles li:hover{
    font-weight: 600;
}

.nav_chronicles li i{
    border-radius: 100%;
    width:10px;
    height: 10px;
    border:1px solid #999;
    position: relative;
    margin: 0 auto;
    display: block;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -ms-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.nav_chronicles li:hover i, .nav_chronicles li.active i{
    border:2px solid #999;
    background: #eee;
    -webkit-transform: translate(0px, -10px);
    -moz-transform: translate(0px, -10px);
    -ms-transform: translate(0px, -10px);
    -o-transform: translate(0px, -10px);
    transform: translate(0px, -10px);
    -webkit-transition: all 0.2s ease-in;
    -moz-transition: all 0.2s ease-in;
    -ms-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
}
.link a {
	padding: 8px 0;
}

.link a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 4px;
	background: rgba(0,0,0,0.1);
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	-moz-transition: opacity 0.3s, -moz-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}

.link a:hover::after,
.link a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

/*POSTS*/

.posts{
    position: relative;
    overflow: hidden;
    clear: both;
}

.posts .post{
    position: relative;
    overflow: hidden;
}
.posts .post a{
    text-decoration: none;
    display: block;
    overflow: hidden;
    border:none;
}

/*.posts .post img{
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.1);
}

.posts .post:hover img{
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}*/

.post-detail .gallery img{
    margin:3px;
    padding:1px;
}

.post-detail .gallery{
    display: none;
}

.gallery_icon{
    position: absolute;
    right: 10px;
    bottom:10px;
    display: block;
    z-index: 10;
}

.post-detail .gallery_mosaik .column:first-child a{
    height:400px;
}

.post-detail .gallery_mosaik a{
    width:100%;
    height:200px;
    background-size: cover;
    background-position: center top;
    border:none;
}

.post-detail .gallery_mosaik{
    padding-left: 1rem;
}

.post-detail .gallery_mosaik .column{
    padding: 0;
    margin: 0;
}

.fancybox{
    position: relative;
    display: inline-block;
}

.post .categories{
    color:#999;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
}

.post .categories a{
    display: inline-block;
    padding: 1px 5px;
    background: #EBEBEB;
    color: #aaa;
    font-size: 10px;
    border-radius: 3px;
    line-height: 14px;
}
.post .categories a:hover{
    background: #2eb2ef;
    text-decoration: none;
    color: #fff;
}
.post .categories+h3{
    margin-top: 0!important;
}

.post .categories .created_at{
    text-transform: none;
}

.posts .post h3{
    font-weight: 400;
    font-size: 20px;
    margin:10px 20px 10px;
    position: relative;
    bottom:0;
}
.posts .post h3 a{
    color:#222;
}


.posts .post p{
    display: none;
    font-size: 16px;
    margin:10px 20px 10px;
}

.post p a{
    border: 1px solid #2eb2ef;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    background: transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.post p a:hover{
    border: 1px solid #2eb2ef;
    background: #2eb2ef;
    color:#fff;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.posts .post .entry{
    /*-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    opacity: 0;
    background: #fff;
    background: rgba(255,255,255,0.9);
    position: absolute;
    bottom:0;
    top:0;
    left:0;
    right:0;*/
    border:1px solid #fff;
}

./*posts .post:hover .entry{
    opacity: 1;
    border:1px solid #2eb2ef;
}*/
.posts .post .entry .categories{
    margin:5px 20px;
    color:#222;
    font-size: 10px;
    opacity: 0;
}


.posts .post .entry:hover .categories{
    -webkit-animation: categories_opacity 1s alternate forwards;
    -o-animation: categories_opacity 1s alternate forwards;
    animation: categories_opacity 1s alternate forwards;
}

/*POSTS LIST*/
/*.posts_list .post{
    clear:both;
    margin:3em 0;
    overflow: hidden;
    opacity: 0;

    -webkit-transform: translate(0,20px) translateZ(0);
    -moz-transform: translate(0,20px) translateZ(0);
    -ms-transform: translate(0,20px) translateZ(0);
    -o-transform: translate(0,20px) translateZ(0);
    transform: translate(0,20px) translateZ(0);

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.posts_list .post.animate_trans{
    clear:both;
    margin:3em 0;
    overflow: hidden;
    opacity: 1;
    -webkit-transform: translate(0,0) translateZ(0);
    -moz-transform: translate(0,0) translateZ(0);
    -ms-transform: translate(0,0) translateZ(0);
    -o-transform: translate(0,0) translateZ(0);
    transform: translate(0,0) translateZ(0);
}*/

.posts_list .post{
    margin:3em 0;
}

.posts_list .post .thumb{
  -webkit-animation-duration: 0.4s;
}

/*DEPARTMENTS*/
.departments .department{
    margin-bottom: 1em;
    position: relative;
}
.departments .department img{
    display: block;
}

.departments .entry{
    position: absolute;
    bottom: 0px;
    right: 2rem;
    /*left: 1rem;*/
    text-align: right;
    padding: 10px 10px 4px;
    background: #e2007a;
    color: #fff;
}

/*PARTICIPANT*/
.participant{
    border-bottom:10px solid #e2007a;
}
.participant .inside{
    margin-top: 20px;
}

.participant .lead{
    border-left:3px solid #eee;
    padding:10px 20px;
    margin:20px 0;
}

.participant label{
    display: inline-block;
    width: 140px;
    text-align: right;
    margin-right: 10px;
}

.participant input[type="submit"]{
    margin-top: 20px;
    margin-left: 154px;
}

/*REFEREE*/
.referees h2{
    font-size: 19px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}
.referees{
    padding: 15px;
    border:1px solid #eee;
    margin:10px 0;
}
.referee{
    margin-bottom: 30px;
}
.referee .head{
    padding-bottom: 5px;
    margin-bottom: 10px;
}
.referee .thumbnail{
    margin-right: 10px;
}
.referee h3{
    font-size: 14px;
    font-weight: 400;
    margin-top: 4px;
    margin-bottom: 0;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.referee h3 small{
    font-size: 12px;
    font-weight: 400;
    display: block;
    text-transform: none;
    color:#777;
}

.referee p{
    font-size: 14px;
    font-weight: 400;
    display: block;
    text-transform: none;
    color:#777;
}

/*CONTACTS*/

[data-opentarget]{
    cursor: pointer;
}
.contacts_group{
    display:none;
}
.contacts_group:nth-child(2){
    display:block;
}
.contacts_group.active{
    display:block;
}

.contact{
    cursor: pointer;
    position: relative;
    border: 1px solid transparent;
    overflow: hidden;
}

.contact:hover{
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
}

.contact:hover .thumbnail{
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0.3;
}

.contact .mail-overlay{
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    width: 100%;
    height:100%;
    opacity: 0;
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: all 500ms cubic-bezier(0.720, -0.370, 0.210, 1.470);
    -moz-transition: all 500ms cubic-bezier(0.720, -0.370, 0.210, 1.470);
    -o-transition: all 500ms cubic-bezier(0.720, -0.370, 0.210, 1.470);
    transition: all 500ms cubic-bezier(0.720, -0.370, 0.210, 1.470);
    font-size: 80px;
    text-align: center;
    line-height: 280px;
    color: #e2007a;
}

.contact:hover .mail-overlay{
    display:block;
    opacity: 1;
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 500ms cubic-bezier(0.720, -0.370, 0.210, 1.470);
    -moz-transition: all 500ms cubic-bezier(0.720, -0.370, 0.210, 1.470);
    -o-transition: all 500ms cubic-bezier(0.720, -0.370, 0.210, 1.470);
    transition: all 500ms cubic-bezier(0.720, -0.370, 0.210, 1.470);
}
.mail-overlay i:hover{
    color:#f2409a;
    cursor: pointer;
}

/*LINKS*/

.links ul{
    padding:0;
    margin: 0;
    list-style: none;
}

/*ACADEMY*/

.academy{
    opacity: 0;
    margin:0 0 20px;

    -webkit-transform: translate(0,20px);
    -moz-transform: translate(0,20px);
    -ms-transform: translate(0,20px);
    -o-transform: translate(0,20px);
    transform: translate(0,20px);

    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.academy.animate_trans{
    opacity: 1;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}
.academy-detail .academy_body ul{
    list-style-image: url(../img/li_image.png);
    padding: 0 0 0 30px;
}

.academy-detail .daten td:last-child{
    text-align: right;
}
.academy-detail .daten table{
    width:100%;
}
.academy-detail .daten table td{
    vertical-align: top;
}
.academy-detail .anmelden{
    text-align: center;
    background: url(../img/stripe.png);
    padding: 10px 0;
    margin: 10px 0;
    border: 1px solid #eee;
}
#anzahl_teilnehmer_wrapper{
    background: #fff;
    margin: 10px 15px;
    padding: 2px;
    position: relative;
}
#proz.animate {
    width:0!important;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
#proz{
    background:#e2007a;
    height: 25px;
    -webkit-transition: all 0.8s;
    -moz-transition: all 0.8s;
    -ms-transition: all 0.8s;
    -o-transition: all 0.8s;
    transition: all 0.8s;
}
#text_teilnehmer{
    font-size: 12px;
    position: absolute;
    text-align: center;
    width:100%;
    line-height: 25px;
}

.action-bar{
    font-size: 14px;
}

.link-list{
    padding:4px 16px;
    background:#f0f0f0;
    border-bottom:1px solid #ccc;
    padding:0.2rem 1rem;
}
.link-list span{
    font-size: 12px;
    text-transform: uppercase;
    display:inline-block;
}
.link-list a{
    font-size: 12px;
    text-transform: uppercase;
    display:inline-block;
}
#map-frame {
    height: 600px;
    width:100%;
    margin: 0px;
    padding: 0px
}
#map-canvas {
    height: 100%;
    margin: 0px;
    padding: 0px
}
#map-canvas img { max-width: none; }
/*Seperators*/

/* Triangles */

.content::before{
    position: absolute;
    content: '';
    pointer-events: none;
}

.ss-style-triangles-top-outside::before{
    left: 50%;
    width: 30px;
    height: 30px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.ss-style-triangles-top-outside::before {
    top: -5px;
    background: #fff;
}
.content::before{
    position: absolute;
    content: '';
    pointer-events: none;
}
.ss-style-triangles-bottom-outside::after{
    position: absolute;
    content: '';
    pointer-events: none;
}

.ss-style-triangles-bottom-outside::after{
    left: 50%;
    width: 130px;
    height: 130px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.ss-style-triangles-bottom-outside::after {
    bottom: -5px;
    background: #fff;
}

/* buttons */

.button{

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

    display: inline-block;
    padding:5px 10px;
    padding: 0.2rem 0.9rem;
    color:#999;
    border:1px solid #ccc;
    text-decoration: none;
    margin:5px 0;
    font-weight: 300;
    font-size: 1rem;
    /*border-radius: 5px;*/
    cursor: pointer;
    font-size: 100%;
}
.btn-round{
    border: 1px solid #2eb2ef;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
    background: transparent;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.btn-round:hover{
    border: 1px solid #2eb2ef;
    background: #2eb2ef;
    color:#fff;
    text-decoration: none!important;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}
.btn-small{

    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;

    display: inline-block;
    padding:2px 5px;
    padding: 0.1rem 0.4rem;
    color:#999;
    border:1px solid #ccc;
    text-decoration: none;
    margin:5px 0;
    font-weight: 400;
    font-size: 0.8rem;
    /*border-radius: 5px;*/
    cursor: pointer;
    font-size: 100%;
}
.button:hover{
    color:#fff;
    background:#999;
    border:1px solid #999;
}
.button.active{
    color:#fff;
    background:#999;
    border:1px solid #999;
}

.btn-blue{
    color:#2eb2ef;
    border:1px solid #2eb2ef;
    background:#fff;
}

.btn-blue:hover{
    color:#fff;
    background: #2eb2ef;
    border:1px solid #2eb2ef;
}

.btn-blue.active{
    color:#fff;
    background: #2eb2ef;
    border:1px solid #2eb2ef;
}

.btn-white{
    color:#fff;
    border:1px solid #fff;
}

.btn-white:hover{
    color:#fff;
    background: #2eb2ef;
    border:1px solid #fff;
}

.close{
    position: absolute;
    padding: 0 10px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border:1px solid #eee;
    color:#333;
    top:10px;
    right: 10px;
    cursor: pointer;
    font-size: 12px;
    background: #fff;
}
.close:hover{
    color:#999;
}

.window{
    background:#fff;
    background:rgba(255,255,255,0.8);
    position: fixed;
    width:100%;
    height:100%;
    z-index:999;
    display: none;
    overflow: scroll;
    top:0;
    left:0;
    right:0;
    bottom:0;
}

.window .contact_form{
    position: relative;
    width:600px;
    margin:5% auto;
    background:#fff;
    box-shadow: 0px 2px 5px #999;
    padding:20px;
    overflow: auto;
    border-bottom: 4px solid #e2007a;
}

.window .contact_form h1{
    margin: 0 0 0;
}
.window .contact_form ul li{
    font-size: 0.9rem;
    line-height: 1.3rem;
    padding: 0;
    margin: 0;
}
.window .contact_form h1+p{
    font-size: 1.1rem;
    line-height: 1.4rem;
}
.window .contact_form .thumbnail{
    margin-right:20px;
}

.window .participant{
    position: relative;
    max-width:600px;
    margin:5% auto;
    background:#fff;
    box-shadow: 0px 2px 5px #999;
    padding:20px;
    overflow: auto;
}

.window .sended_wrapper{
    position: relative;
    max-width:400px;
    margin:5% auto;
    background:#fff;
    box-shadow: 0px 2px 5px #999;
    padding:20px;
    overflow: auto;
}


/* ==========================================================================
   Media Queries
   ========================================================================== */

@media (min-width: 35rem) {


    .header{
        width:100%;
        position: fixed;
        background: #fff;
        background: rgba(255,255,255,0.97);
        top:0;
        z-index: 10;
    }
    .container {
        margin: 0 auto;
        max-width: 71.25rem;
        width: 90%;
    }
    .column {
        float: left;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .column.full { width: 100%; }
    .column.two-thirds { width: 66.7%; }
    .column.half { width: 50%; }
    .column.third { width: 33.3%; }
    .column.fourth { width: 24.95%; }
    .column.third-fourths { width: 75.05%; }
    .column.flow-opposite { float: right; }

    .column.third:nth-of-type(3n+1){
        clear: both;
    }

    .row .row{
        margin-left:-1rem;
        margin-right:-1rem;
    }

    .row:before,
    .row:after {
    content: " ";
    display: table;
    }

    .row:after {
    clear: both;
    }

    .row {
    *zoom: 1;
    }

    .header #logo{
        float:left;
    }

    .left{
        float:left;
    }
    .right{
        float:right;
    }

    .center{
        text-align: center;
    }

    .banner .entry, .banner-halb .entry{
    background: #e2007a;
    position: absolute;
    width: 40%;
    padding: 1em 0;
    bottom: 0;
    right: 5%;
    }


    .banner .inside,  .banner-halb .inside{
        width:1140px;
        margin:0 auto;
        overflow: hidden;
    }
    .meta-nav{
        display: block;
    }

}

@media (max-width: 960px) {
    .header{
        min-height:64px;
    }
    .header #logo{
        margin-bottom:20px;
    }
    .header .navigation{
        position: fixed;
        transform: translateX(100%);
        z-index: 9999;
        border-right:2px solid #e2007a;
        background: #fff;
        width: 80vw;
        height: 100vh;
        margin-left: -5%;
        overflow: auto;
        top:0;
        box-shadow: 0 0 20px #000;
    }
    .header .navigation.animated{
        display:block;
    }
    .navigation li{
        display:block;
        float:none;
        padding:0;
        text-align: center;
        border-bottom:1px solid #eee;
    }
    .navigation ul:first-child{
        margin-top:100px;
    }
    .navigation ul li a{
        font-size: 20px;
        font-weight: 500;
    }
    .navigation ul li.active a{
        color:#fff;
        border-bottom: none;
        background: #e2007a;
    }

    .navigation-switcher{
        display:block;
        position: absolute;
        top: 12px;
        right: 12px;
        width:32px;
        height:32px;
    }
    .navigation-switcher svg{
        width:32px;
        height:32px;
    }

    .navigation-switcher .line{
        stroke:#e2007a;
    }

    .footer h4{
        text-align: center;
    }

    .footer ul li{
        text-align: center;
    }

    .footer ul li a{
        font-size: 18px;
        display:block;
    }
}

@media (min-width: 961px) {

    .header ul{
        padding:0;
        margin: 0;
        list-style: none;
    }

    .header .navigation{
        display:block;
        margin-left:32px;
        float:left;
    }


    .header .navigation li{
        display: block;
        margin: 0;
        float: left;
    }
    .header ul li a{
        padding:20px 10px;
        display: inline-block;
        text-decoration: none;
        color:#222;
        font-size: 14px;
        font-weight: 500;
        border-bottom: 2px solid #fff;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .header ul li a:hover{
        text-decoration: none;
        color:#222;
        border-bottom: 2px solid #2eb2ef;
    }

    .header ul li.active a{
        color:#2eb2ef;
        border-bottom: 2px solid #2eb2ef;
    }

    .header .register{
        border-left:1px solid #ccc;
        border-right:1px solid #ccc;
    }

    .meta-nav{
        clear: both;
        overflow: hidden;
        position: fixed;
        z-index: 1;
        top:0;
        left:0;
        right:0;
        border-top: 2px solid #e2007a;

        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        -ms-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

    .meta-nav.hide{
        top:-100px;
    }

    .meta-nav ul{
        background: #fff;
        padding:0;
        margin: 0;
        list-style: none;
        width:auto;
    }

    .meta-nav .meta-nav-root ul{
        display: none;
        float:left;

    }
    .meta-nav .meta-nav-root > a{
        display:block;
        float:left;
        background:#e2007a;
        background: rgba(226,0,122,0.7);
        color:#fff;

    }

    .meta-nav .meta-nav-root:hover ul{
        display: block;
    }

    .meta-nav li{
        display: block;
        margin: 0;
        float: left;
    }

    .meta-nav ul li a{
        padding:20px;
        display: inline-block;
        text-decoration: none;
        color:#999;
        font-size: 14px;
        font-weight: 500;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        -ms-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
    }

    .meta-nav ul li a:hover{
        text-decoration: none;
        color:#222;
        border-bottom: 2px solid #2eb2ef;
    }

    .meta-nav ul li.active a{
        color:#2eb2ef;
        border-bottom: 2px solid #2eb2ef;
    }


    .meta-nav ul li.top a{
        background:#e2007a;
        background: rgba(226,0,122,0.7);
        color:#fff;
    }

    .navigation-switcher{
        display:none;
    }
}

@media (max-width: 600px) {

    .banner{
        background-position: center bottom 100px;
        height:50vh!important;
    }

    .banner .entry  {
        background: #e2007a;
        position: absolute;
        bottom: 0;
        padding: 1em 0 3em;
        width: 100%;
    }
    .banner p{
        display:none;
    }
    .content {
        padding-top: 50px;
    }
}



@media print{
       (-o-min-device-pixel-ratio: 5/4),
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 120dpi) {}
}
.a-hidden { visibility: hidden; }
.animated { visibility: visible !important; }

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



.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    *text-indent: -9999px;
}

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

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

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

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

.invisible {
    visibility: hidden;
}

.clearfix:before,
.clearfix:after {
    content: " ";
    display: table;
}

.clearfix:after {
    clear: both;
}

.clearfix {
    *zoom: 1;
}

/* ==========================================================================
   Print styles
   ========================================================================== */

@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;
    }
}
