/**
* Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/)
* http://cssreset.com
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}

/* apply a natural box layout model to all elements, but allowing components to change */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

img {
  max-width: 100%;
  height: auto;
}
form img {width: 100%;}

.pull-left   { float: left !important; }
.pull-right  { float: right !important; }
.align-center {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center !important;
}

/* ------------------------------------------------------------------ */
/* Grid
---------------------------------------------------------------------
  gutter = 20px.
/* ------------------------------------------------------------------ */

/* default
--------------------------------------------------------------- */
.row {
  width: 96%;
  max-width: 1020px;
  margin: 0 auto;
}
.narrow .row { max-width: 980px; }

.row .row { width: auto; max-width: none; /*margin: 0 -10px;*/ }

/* row clearing */
.row:before,
.row:after {
   content: " ";
   display: table;
}
.row:after {
   clear: both;
}
.column, .columns {
  position: relative;
  padding: 0 10px;
  min-height: 1px;
  float: left;
}
.column.centered, .columns.centered  {
  float: none;
  margin: 0 auto;
}
.row.centered {
  text-align: center;
}
/* removed gutters */
.row.collapsed > .column,
.row.collapsed > .columns,
.column.collapsed, .columns.collapsed  { padding: 0; }

[class*="column"] + [class*="column"]:last-child { float: right; }
[class*="column"] + [class*="column"].end { float: right; }

/* column widths */
.row .one    { width: 8.33333%; }
.row .two    { width: 16.66667%; }
.row .three    { width: 25%; }
.row .four    { width: 33.33333%; }
.row .five    { width: 41.66667%; }
.row .six    { width: 50%; }
.row .seven    { width: 58.33333%; }
.row .eight    { width: 66.66667%; }
.row .nine    { width: 75%; }
.row .ten    { width: 83.33333%; }
.row .eleven  { width: 91.66667%; }
.row .twelve  { width: 100%; }

/* Offsets */
.row .offset-1   { margin-left: 8.33333%; }
.row .offset-2   { margin-left: 16.66667%; }
.row .offset-3   { margin-left: 25%; }
.row .offset-4   { margin-left: 33.33333%; }
.row .offset-5   { margin-left: 41.66667%; }
.row .offset-6   { margin-left: 50%; }
.row .offset-7   { margin-left: 58.33333%; }
.row .offset-8   { margin-left: 66.66667%; }
.row .offset-9   { margin-left: 75%; }
.row .offset-10  { margin-left: 83.33333%; }
.row .offset-11  { margin-left: 91.66667%; }

/* Push/Pull */
.row .push-1  { left: 8.33333%; }
.row .pull-1  { right: 8.33333%; }
.row .push-2  { left: 16.66667%;   }
.row .pull-2  { right: 16.66667%; }
.row .push-3  { left: 25%; }
.row .pull-3  { right: 25%;  }
.row .push-4  { left: 33.33333%; }
.row .pull-4  { right: 33.33333%; }
.row .push-5  { left: 41.66667%; }
.row .pull-5  { right: 41.66667%; }
.row .push-6  { left: 50%; }
.row .pull-6  { right: 50%; }
.row .push-7  { left: 58.33333%; }
.row .pull-7  { right: 58.33333%; }
.row .push-8  { left: 66.66667%;   }
.row .pull-8  { right: 66.66667%; }
.row .push-9  { left: 75%; }
.row .pull-9  { right: 75%; }
.row .push-10  { left: 83.33333%; }
.row .pull-10  { right: 83.33333%; }
.row .push-11  { left: 91.66667%; }
.row .pull-11  { right: 91.66667%; }

/* block grids
--------------------------------------------------------------------- */
.bgrid-sixths [class*="column"]  { width: 16.66667%; }
.bgrid-quarters [class*="column"] { width: 25%; }
.bgrid-thirds [class*="column"]  { width: 33.33333%; }
.bgrid-halves [class*="column"]  { width: 50%; }

[class*="bgrid"] [class*="column"] + [class*="column"]:last-child { float: left; }

/* Left clearing for block grid columns - columns that changes width in
different screen sizes. Allows columns with different heights to align
properly.
--------------------------------------------------------------------- */
.first { clear: left; }  /* first column in default screen */
.s-first { clear: none; } /* first column in smaller screens */

/* smaller screens
--------------------------------------------------------------- */
@media only screen and (max-width: 900px) {

  /* block grids on small screens */
  .s-bgrid-sixths [class*="column"]  { width: 16.66667%; }
  .s-bgrid-quarters [class*="column"] { width: 25%; }
  .s-bgrid-thirds [class*="column"]  { width: 33.33333%; }
  .s-bgrid-halves [class*="column"]  { width: 50%; }

  /* block grids left clearing */
  .first { clear: none; }
  .s-first { clear: left; }
}

/* mobile wide/smaller tablets
--------------------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .row {
    width: 460px;
    margin: 0 auto;
    padding: 0;
  }
  .column, .columns {
    width: auto !important;
    float: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0 30px;
    margin-bottom: 20px;
  }
  .row .row { width: auto; max-width: none; /* margin: 0 -30px;*/ }
  .row .row .column,
  .row .row .columns { padding-left: 0; padding-right: 0;}
  [class*="column"] + [class*="column"]:last-child { float: none; }
  [class*="bgrid"] [class*="column"] + [class*="column"]:last-child { float: none; }
  /* Offsets */
  .row .offset-1   { margin-left: 0%; }
  .row .offset-2   { margin-left: 0%; }
  .row .offset-3   { margin-left: 0%; }
  .row .offset-4   { margin-left: 0%; }
  .row .offset-5   { margin-left: 0%; }
  .row .offset-6   { margin-left: 0%; }
  .row .offset-7   { margin-left: 0%; }
  .row .offset-8   { margin-left: 0%; }
  .row .offset-9   { margin-left: 0%; }
  .row .offset-10 { margin-left: 0%; }
  .row .offset-11 { margin-left: 0%; }

  /* .csc-textpic-imagewrap {float: none !important;} */
}
/* mobile narrow
--------------------------------------------------------------- */
@media only screen and (max-width: 460px) {
  .row { width: auto; }
}
/* larger screens
--------------------------------------------------------------- */
@media screen and (min-width: 1200px) {
  .wide .row { max-width: 1180px; }
}

/* ------------------------------------------------------------------ */
/* Forms
---------------------------------------------------------------------*/

form a {text-decoration :none;}
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  display: block;
  padding: 0 10px;
  margin: 0 0 24px 0;
  border: 1px solid #ccc;
  outline: none;
  vertical-align: middle;
  max-width: 100%;
  font-size: 16px;
  color: #333;
  background: #fff;
  height: 45px;
  /*line-height: 45px;*/
  width: 100%;
  border-radius: 5px;
box-shadow: inset 1px 1px 14px 0px rgba(50, 50, 50, 0.4);
font-family: inherit;
}
select.short,
input.short {
  max-width: 100px;
}
input[type="file"] {
  display: block;
  margin: 0 0 24px 0;
}
select {padding-right: 0;}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus {
  color: #333;
  background-color: #fff;
  height: 45px;
  /*line-height: 45px;*/
  border: 1px solid #000;
}

textarea { min-height: 120px; }

label,
legend {
  margin: 12px 0;
  color: #3d4145;
  display: block;
}
label span,
legend span {
  color: #8B9798;
}

input[type=checkbox],
input[type=radio] {
	-webkit-appearance:none;
	-moz-appearance: none;
	appearance: none;
	padding: 0 10px;
	border: 1px solid #ccc;
	outline: none;
	vertical-align: middle;
	max-width: 100%;
	font-size: 16px;
	color: #333;
	background: #fff;
	height: 25px;
	width: 25px;
	border-radius: 5px;
	box-shadow: inset 1px 1px 14px 0px rgba(50, 50, 50, 0.4);
	font-family: inherit;
	display: inline;

	float: left;
	margin: 0 10px 20px 0;
}
input[type=radio] {
	border-radius: 100%;
}
input[type=checkbox]:checked,
input[type=radio]:checked {
	background: url('../img/icon-checked.svg') no-repeat center center;
	background-size: 15px;
}
input[type=checkbox] + label,
input[type=radio] + label {
	overflow: hidden;
	margin: 0;
	margin-top: 5px;
	text-align: left;
}

textarea {line-height: 20px !important; padding-top: 15px;}

/*  Buttons  --------------------------------------------------------- */

.button,
.button:visited,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  font: 16px/30px 'Maven Pro', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0;
  color: #fff;
  padding: 8px 20px;
  margin-bottom: 18px;
  border: none;
  cursor: pointer;
  height: auto;
  border-radius: 3px;
  background: rgb(252,187,58); /* Old browsers */
  background: linear-gradient(to bottom,  rgba(252,187,58,1) 0%,rgba(255,80,0,1) 100%); /* W3C */
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
  background: rgb(249,142,59); /* Old browsers */
  background: linear-gradient(to bottom,  rgba(249,142,59,1) 0%,rgba(255,80,0,1) 100%); /* W3C */
  color: #fff;
}

.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
  background: #ff8000;
  color: #fff;
}

.button.full-width,
button.full-width,
input[type="submit"].full-width,
input[type="reset"].full-width,
input[type="button"].full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* styled fileuploads
--------------------------------------------------------------- */

.file-upload {
  position: relative;
}

span.file {
  font: 16px/30px 'Maven Pro', sans-serif;
  display: inline-block;
  text-decoration: none;
  padding: 8px 130px 8px 20px;
  margin-bottom: 18px;
  cursor: pointer;
  height: auto;
  width: 95%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
box-shadow:         inset 1px 1px 14px 0px rgba(50, 50, 50, 0.4);
}

span.file:before {
  content:'\e811';
  color: #ccc;
  font-family: 'icons';
  margin-right: 5px;
  display: inline-block;
  margin-bottom: -1px; /* fix: same height as button */
}
button.file {
  position: absolute;
  right: 10px;
  top: 0;
  width: 130px;
  padding-right: 0;
  padding-left: 0;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}


/* ------------------------------------------------------------------ */
/* General Styles
---------------------------------------------------------------------*/

body {font-family: 'Maven Pro'; color: #413E3D;}


/* layout: footer on bottom
--------------------------------------------------------------- */
/*body {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.middle {flex: 1;}
*/


/* header
--------------------------------------------------------------- */
header#top {border-bottom: 1px solid #ccc; text-align: center;
background: linear-gradient(to bottom,  rgba(221,221,221,0) 76%,rgba(221,221,221,0.65) 100%); /* W3C */
position: relative;
}
header#top .contact-link {position: absolute; bottom: 0; right: 0; background: url(../img/mail.png) no-repeat top; width: 62px; height: 30px; background-size: cover; font-size: 0;}
a.logo {display: inline-block; width: 370px; height: 80px; margin: 15px 0;}
a.su-logo {display: block; position: absolute; right: 0; top: 15px; max-width: 120px;}
@media (max-width: 767px) {
  a.su-logo {top: 120px; right: auto; left: 10px; z-index: 2;}  
}

/* nav
--------------------------------------------------------------- */

a.toggle-menu {display: none; font-size: 2em; font-family: 'icons'; float: right; cursor: pointer;}
a.toggle-menu:before {content:'\e81d';}
nav a {text-decoration: none;}

  nav {
  text-align: center;
  box-shadow: 0px 6px 6px 0px rgba(50, 50, 50, 0.4);
  position: relative;
  z-index: 1;
  }
  nav .columns {position: static;}
  nav .fb-link {position: absolute; left: 10px; top: 0; width: 50px; height: 50px; line-height: 50px; text-decoration: none;}
  nav .fb-link:before {font-family: 'icons'; content:'\e806'; color: #fff; background: #4c6eab; border-radius: 5px; height: 25px; width: 25px; display: inline-block; line-height:28px; text-align: center;}

  ul#menu {line-height: 50px;}
  ul#menu li {display: inline-block;}
  ul#menu > li > a {margin: 0 20px; font-size: 1.2em; text-transform: uppercase; font-weight: 700; display: inline-block; height: 100%;}
  ul#menu > li.current > a {border-bottom: 2px solid #ff8000; color: #ff8000;}
  ul#menu ul {display: none; position: absolute; left: 0; top: 50px; width: 100%; height: 100px; z-index: 2; background: #fff; box-shadow: 0px 6px 6px 0px rgba(50, 50, 50, 0.4);}
  ul#menu ul li {height: 100%; min-width: 100px; height: 100px; position: relative; text-align: center;}
  ul#menu ul li a {position: relative; min-width: 100px; height: 80px; line-height: 1em; display: inline-block; height: 100%; font-family: 'Bree Serif';}
  ul#menu ul li a i {display: block; position: absolute; top: 20px; left: 0; width: 100%; text-align: center; font-size: 2em;}
  ul#menu li.open ul {display: block;}

  ul#menu a {color: #333;}
  ul#menu ul li:hover i {font-size: 2.5em;}
  ul#menu > li:hover ul {height: 100px; display: block;}

@media only screen and (min-width: 768px) {
  ul#menu ul li a {margin: 0 5px; width: 100px;}
  ul#menu ul li .titleicon {display: block; height: 50px; width: 50px; overflow: hidden; position: absolute; width: 100%; top: 10px;}
  ul#menu ul li .titleicon img {max-width: 50px; display: block; margin: 0 auto;}
  ul#menu ul li .title {position: absolute; display: block; width: 100%; bottom: 1em; border-top: 1px solid #ccc; padding-top: 5px;}
}

@media only screen and (max-width: 767px) {

  a.logo {display: inline-block; width: 280px; height: 61px; margin-top: 15px;}
  nav ul, .contact-link, .fb-link {display: none;}
  a.toggle-menu {display: inline-block; height: 50px; line-height: 50px;}
  nav.open {height: 50px;}

  .overlay {overflow: hidden;}
  .overlay nav {position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: #333; z-index: 100; overflow-x: hidden; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .overlay nav:after {display: none;}
  .overlay .row, .overlay .columns {display: block; width: 100%;}
  .overlay a.logo {z-index: 500; position: fixed; left: -140px; margin-left: 50%;}
  .overlay nav ul,
  .overlay nav ul li {position: static !important; background: none !important; border: none !important;}
  .overlay nav i {display: none !important;}
  .overlay nav * {margin: 0 !important; padding: 0 !important; height: auto !important; box-shadow: none !important;}
  .overlay #menu  {margin-top: 100px !important;}
  .overlay ul#menu ul, ul#menu li {display: block;}
  .overlay a.toggle-menu:before {content:'\e81e'; color: #fff; position: fixed; top: 10px; right: 10px;}
  .overlay ul {display: block; text-align: center; line-height: 1.4em; width: 100%;}
  .overlay ul#menu a {color: #fff;}
  .overlay ul#menu ul a  {font-size: 1.3em;}
  .overlay ul#menu > li > a {border-bottom: 2px dashed #fff; padding: 0; line-height: 1.7em;}

  ul#menu ul li .titleicon {display: none;}
}

/*
ul#menu > li:nth-child(1) > a {
  color: #f43d05;
}
ul#menu > li:nth-child(2) > a {
  color: #c80a5f;
}
ul#menu > li:nth-child(3) > a {
  color: #c8a00a;
}
*/

/* submenu
--------------------------------------------------------------- */

.submenu {
  border-radius: 5px;
  box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.75);
  }
.submenu li {display: block; padding: 10px; border-bottom: 1px dashed #999;}
.submenu li:before {content: none !important; margin-left: 0 !important;}
.submenu li:last-child {border-bottom: 0;}
.submenu a {
  text-decoration: none;
  font-weight: 700;
  height: 100%;
  text-transform: uppercase;
}
.submenu li.current {
  background: rgb(252,187,58); /* Old browsers */
  background: linear-gradient(to bottom,  rgba(252,187,58,1) 0%,rgba(255,80,0,1) 100%); /* W3C */
}

.submenu li.current a {color: #fff !important;}

/* all sections
--------------------------------------------------------------- */

section { margin: 20px 0;}

/* elements
--------------------------------------------------------------- */

.sidebox {
  padding: 15px;
  box-shadow: 4px 10px 6px 0px rgba(145, 147, 147, 0.56);
  position: relative;
  margin-bottom: 10px;
  background: #fff;
  border: 1px solid #e4e4e4;
}
.sidebox:after {
  content:'';
  display: block;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -10px;
  height: 10px;
background:
  linear-gradient(-135deg, #fff 5px, transparent 0) 0 5px,
  linear-gradient(135deg, #fff 5px, transparent 0) 0 5px;
  background-color: transparent;
  background-position: bottom left;
  background-repeat: repeat-x;
  background-size: 10px 10px;
}
.sidebox input {
  display: block;
  max-width: 200px;
  margin: 0 auto;
  margin: 10px auto;
}
.sidebox h3 {
  font-size: 1.4em;
  margin-bottom: 0.5em;
  color: #ff8000;
  text-align: center;
}


/* slider section
--------------------------------------------------------------- */
#slider {margin-top: 0; z-index: -1;}

.slick-slide {
  position: relative;
}
.slick-slide img {
  margin: 0 auto;
}
.slick-slide .txt {
  font-family: 'Bree Serif';
  font-size: 2.2em;
  position: absolute;
  bottom: 0;
  left: 0;
}

.slick-slide  .txt span {
  display: inline-block;
  background: #ff8000;
  padding: 2px 4px;
  color: #fff;
}

.slick-prev,
.slick-next {
  width: 30px;
  height: 30px;
  background: #ff8000;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
  background: #ff8000;
}

.slick-prev:before,
.slick-next:before {
  font-family:'icons';
  opacity: 1;

}
.slick-next:before {
  content: '\e83e';
}
.slick-prev:before {
  content: '\e83f';
}

@media only screen and (max-width: 767px) {
  #slider .row {width: 100%;}
  #slider .columns {padding: 0;}
  .slick-slide .txt {font-size: 1em;}
  .slick-prev, .slick-next {display: none !important;}
}


/* news section
--------------------------------------------------------------- */

#news {
  overflow: hidden;
  max-height: 1000px;
  position: relative;
  padding-bottom: 40px;
  transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000); /* ease-out */
}
#news.fullheight {
  height: auto;
  max-height: 5000px;
}
#news .showmore {
  width: 100%;
  background: #fff;
  position: absolute;
  bottom: 0px;
  left: 0;
  text-align: center;
  display: block;
  height: 35px;
  line-height: 40px;
  cursor: pointer;
  border-top: 1px dotted #ccc;
}
#news .showmore:before {
  content:'mehr anzeigen';
}
#news .showmore:after {
  font-family: 'icons';
  content: '\e80e';
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -13px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 25px;
  background: #fff;
  color: #ff8000;
}

#news.fullheight .showmore:before {
  content:'weniger anzeigen';
}
#news.fullheight .showmore:after {
  font-family: 'icons';
  content: '\e825';

}

#news a.article {
  position: relative;
  text-decoration: none;
  overflow: hidden;
  display: block;
  margin-bottom: 20px;
  min-height: 120px;
}
#news .article > img {
  float: left;
}
#news .article > div {
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  width: 100%;
  padding-top: 20px;
  background: linear-gradient(to bottom,  rgba(0,0,0,0) 3%,rgba(0,0,0,0.65) 100%); /* W3C */
  transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000); /* ease-out */
}

#news .article > div p {
  color: #fff;
  font-size: 0.9em;
  padding:10px;
  transition: all 500ms cubic-bezier(0.000, 0.000, 0.580, 1.000); /* ease-out */
}

#news .article > div h3 {
  background: #fff;
  color: #333;
  display: inline-block;
  font-size: 1.4em;
  padding: 2px 4px;
  line-height: 1.4em;
}

#news .article:hover > div {
  background: none;
}

#news .article:hover > div p {
  background: #fff;
  color: #333;
}




/* map section
--------------------------------------------------------------- */

#map .google_map {
  height: 400px;
  background: #333;
}

/* coordinators & training section
--------------------------------------------------------------- */
#coordinators h2,
#training h2 {text-align: center;}

.fifth {
  width: 20%;
  float: left;
  text-align: center;
  padding: 10px;
}
.fifth .imageframe {
  width: 150px;
  height: 150px;
  border-radius: 150px;
  overflow: hidden;
  margin: 0 auto;
  border: 2px solid #ff6600;
  transition: all 500ms cubic-bezier(0.175, 0.885, 0.320, 1.275); /* easeOutBack */
  display: block;
  position: relative;
}

.fifth:hover .imageframe {
  border: 6px solid #ff6600;
}

@media (max-width: 900px) {
  .fifth .imageframe {
    width: 120px;
    height: 120px;
    border-radius: 120px;
  }
}

@media (max-width: 767px) {
  .fifth {
    width: 100%;
    float: none;
  }
  /* .fifth .imageframe {
    width: 200px;
    height: 200px;
    border-radius: 200px;
  } */
}

#coordinators a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #ff6600;
}

.fifth h3 {
  background: #ff8000;
  color: #fff;
  display: inline-block;
  margin: 0 auto;
  font-size: 1.4em;
  padding: 2px 4px;
  margin-top: -20px;
  position: relative;
}
.fifth strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.imageframe img {
  position: absolute;
  top: -9999px;
  bottom: -9999px;
  left: -9999px;
  right: -9999px;
  margin: auto;
  z-index: -1;
}

#training .imageframe img {
  max-width: 150%;
}

/* extras section
--------------------------------------------------------------- */

#extras .borderbox {
  border: 1px dashed #000;
  padding: 20px;
}

#extras .badge:before {
  content:'';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: red;
  border-radius: 100%;
  width: 100%;
  padding-bottom: 100%;
  z-index: -1;
  box-sizing: content-box;
  border: 8px double #fff;
}
#extras .badge {
  position: relative;
  height: 180px;
  max-width: 180px;
  max-height: 180px;
  margin: 0 auto;
  margin: 10px;
}

#extras .badge * {
  text-align: center;
  margin-left: 16px;
}

#extras .badge h2 {
  color: #fff;
  padding-top: 1.7em;
  font-size: 22px;
}

#extras .badge p {
  padding: 0 15px;
  height: 70%;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (min-width: 767px) and (max-width: 967px) {
  #extras .badge h2 {padding-top: 1.2em;}
  #extras .badge p {height: 45%;}
}


.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0; overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* footer
--------------------------------------------------------------- */

footer {
  background: #333;
  color: #fff;
  padding: 40px 0 40px;
  /*background:
  linear-gradient(-135deg, #fff 5px, transparent 0) 0 5px,
  linear-gradient(135deg, #fff 5px, #333 0) 0 5px;*/
  background-color: #333538;
  background-position: top left;
  background-repeat: repeat-x;
  background-size: 10px 10px;
}
footer a {color: #fff;}
footer a.smoothscroll {text-decoration: none;}
footer a.smoothscroll:before {font-family: 'icons'; content:'\e825';}

footer > .row:last-child {
  padding: 20px 0;
  margin-top: 20px;
  border-top: 2px solid #666;
}

footer h1 {
  font-size: 16px !important;
  margin-bottom: 0.5em !important;
  border-bottom: none !important;
}

footer * {color: #fff !important;}
/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5 {
  font-family: 'Bree Serif', serif;
  color: #ff8000;
  margin: 0.3em 0;
  font-weight: normal;
}

h1 {font-size: 2.5em; border-bottom: 2px solid #ff8000;}
h2 {font-size: 1.8em;}
h3 {font-size: 1.2em;}

b, strong {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 700;
}

/* alignments */
.text-left {text-align: left;}
.text-center {text-align: center;}
.text-right {text-align: right;}
.text-justify {text-align: justify;}

.ce-bodytext p {margin-bottom: 0.5em;}

.frame-default p,
.frame-default li {
  line-height: 1.2em;
  margin-bottom: 0.5em;
}

.frame-default ul:not(.ce-uploads) li {
  padding-left: 20px;
}
.frame-default ul:not(.ce-uploads) li:before {
  content:'\e843';
  font-family: 'icons';
  margin-left: -20px;
  display: inline-block;
  width: 20px;
  color: #ff8000;
}
.ce-uploads li a span,
a.download {
  padding-left: 20px;
}
.ce-uploads li a span:before,
a.download:before {
  content:'\e843';
  font-family: 'icons';
  margin-left: -20px;
  display: inline-block;
  width: 20px;
  color: #ff8000;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #ff8000;
}

a.button,
.button a {color: #fff;}

p.align-left {text-align: left;}
p.align-right {text-align: right;}

/* ==========================================================================
   Media Queries
   ========================================================================== */



/* ==========================================================================
   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;
}

/* typo3 fix */
/* figure.csc-textpic-image {display: block !important;}
.csc-textpic-imagewrap * {float: none !important;} */

@media (max-width: 767px) {
	.ce-left .ce-gallery, .ce-column {
		float: none;
	}
}


ul.csc-uploads span.csc-uploads-fileName {display: inline-block;}

/* ==========================================================================
   Print styles
   ========================================================================== */

@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    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) ")";
  }

  .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;
  }

  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;
  }
}

/* 5 col logos fix
--------------------------------------------------------------- */
#c641 .csc-textpic-imagecolumn {
  float: left !important;
}

/* fussballdesign
--------------------------------------------------------------- */
/* .middle {margin-bottom: 50px; margin-top: 30px;} */

hr { border: 0; height: 1px; background: #333; background-image: linear-gradient(to right, #ccc, #333, #ccc); }

#c589 .four.columns .sidebox {
  min-height: 270px;
}


/* pmk */
header#top {
  background: url('../img/school-header-2019-2.jpg') repeat-x bottom center;
}

@media (min-width: 1000px) {
  .fifth {position: relative;}
  /*.fifth .imageframe {z-index: -1;}*/
  .fifth:before {content: ''; position: absolute; background-repeat: no-repeat;}
}


/* body {
  background-image: url('../img/open-book.jpg')  ;
  background-repeat: no-repeat;
  background-position: bottom 380px right 0;
  background-size: 200px;
}

div.csc-textpic-center .csc-textpic-center-outer,
div.csc-textpic-center .csc-textpic-center-inner {
  float: none !important;
  right: auto !important;
}

.csc-textpic-imagerow {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.csc-textpic-imagecolumn .csc-textpic-image {
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

div.csc-textpic .csc-textpic-imagewrap .csc-textpic-image {
  margin-bottom: 0 !important;
} */

/* lighbox fix */
a.lightbox {
  position: static;
}

.tipp {
	border: 2px dashed #ccc;
	border-radius: 10px;
	padding: 1em;
}
.tipp.w1 {
	border-color: #0084cb;
	background-color: #e2f8ff;
}
.tipp.w1,
.tipp.w1 h2 {
	color: #0084cb;
}
.tipp.w2 {
	border-color: #5f2d91;
	background-color: #d9ceea;
}
.tipp.w2,
.tipp.w2 h2 {
	color: #5f2d91;
}
.tipp.w3 {
	border-color: #008b3b;
	background-color: #e3f2bd;
}
.tipp.w3,
.tipp.w3 h2 {
	color: #008b3b;
}
.tipp.w4 {
	border-color: #f26322;
	background-color: #ffe47e;
}
.tipp.w4,
.tipp.w4 h2 {
	color: #f26322;
}
.videos-w1,
.videos-w2,
.videos-w3,
.videos-w4 {
	padding: 2em 0 4em 0;
	background: no-repeat bottom center;
}
.videos-w1 {
	background-color: #e2f8ff;
	background-image: url('../img/bg-w1.jpg');
}
.videos-w2 {
	background-color: #E1D6F0;
	background-image: url('../img/bg-w2.jpg');
}
.videos-w3 {
	background-color: #e3f2bd;
	background-image: url('../img/bg-w3.jpg');
}
.videos-w4 {
	background-color:  #ffe47e;
	background-image: url('../img/bg-w4.jpg');
}

@media (min-width: 1600px) {
	.videos-w1,
	.videos-w2,
	.videos-w3,
	.videos-w4,
	.start-w1 {
		background-size: 100%;
	}
}

.start-w1 {
	padding: 2em 0 0 0;
	background: no-repeat bottom center;
	background-color: #e2f8ff;
	background-image: url('../img/bg-w1.jpg');
}

/* Gewinnspiel
--------------------------------------------------------------- */
.gewinnspiel-header {
	text-align: center;
	font-size: 1.5em;
	max-width: 800px;
	margin: 1.5em auto;
	line-height: 1.2em;
}
.gewinnspiel h2 {
	font-weight: normal;
	color: #000;
	padding: 0;
	font-size: 1.2em;
	margin-top: 1em;
}
.gewinnspiel .option {
	overflow: hidden; /* clears float*/
	position: relative;
}
.gewinnspiel .option > input[type=checkbox] {
	margin: 2px 10px 5px 0;
}
.gewinnspiel .choices h2 {
	margin-bottom: 0.5em;
}
.gewinnspiel .choices input[type=checkbox]:checked {
	box-shadow: none;
	background-color: #ff8000;
}
.gewinnspiel .choices input:checked + label {
	font-weight: bold !important;
}

.tx-gewinnspiel input[type=submit] {
	margin: 0 auto;
	display: block;
}
.tx-gewinnspiel .teilnahme-bedingungen {
	margin: 2em 0;
	font-size: 0.9em;
}
span.required {
	color: red;
}
.gray input,
.gray label {
	opacity: 0.5
}
.gray input:checked,
.gray input:checked + label {
	opacity: 1;
}
.gewinnspiel-danke {
	text-align: center;
	margin: 3em 0;
}
.gewinnspiel-danke p {
	font-size: 1.2em;
}