/*//////////////////////////////////////////////////////////////////////////////
//	1 BASE
//////////////////////////////////////////////////////////////////////////////*/
/*	GENERIC 
//////////////////////////////////////////////////////////////////////////////*/

body {
  margin: 0;
  /*background: url(../images/rauten-grau.png) no-repeat center center fixed;
-moz-background-size: cover;
background-size: cover;*/
}

#wrapper {
	max-width: 1264px !important;
	padding: 0 2vw;
	margin: 0 auto;
}

header {
	margin-bottom: 1rem;
	margin-top: 2rem;
}
.nav {
	/*float: right;*/
	padding-top: 4.5rem;
}
.nav a{
	color: #153A67;
}

.nav li{
	display: inline;
	padding-left: 2rem;
}

.clear-both {
	clear: both;
}

/* Laufband ticker */

.marquee {
width: 100%;
margin: 0 auto;
white-space: nowrap;
overflow: hidden;
box-sizing: border-box;
color: #153A67;
padding-top: 1em;
font-size: 1.3em;
}
.marquee span {
display: inline-block;
padding-left: 100%;
animation: marquee 25s linear infinite;
-webkit-animation: marquee 25s linear infinite;
-moz-animation: marquee 25s linear infinite;
}
@keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}
@-webkit-keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}
@-moz-keyframes marquee {
0% { transform: translate(0, 0); }
100% { transform: translate(-100%, 0); }
}

.col {
	width: 100%;
	float: left;
}

.col-inner {
	height: 100%;
	overflow: hidden;
}
.col1 {
	width: 75%;
	float: left;
}

.col1-inner {
	margin-right: 15px;
	overflow: hidden;
}	

.col1-inner img{
    width: 100%;
	height: 100%;
    object-fit: contain;
}

.col2 {
	width: 25%;
	float: right;
}

.col2 a {
	line-height: 1.3;
}	

.row_hintergrund {
	background-color: #E9E7E9;
}	

.txt_unten {
	vertical-align: bottom;
}
	
article, aside, footer, header, nav, section, figcaption, figure, main, details, menu {
  display: block;
}
/*	HEADER 
//////////////////////////////////////////////////////////////////////////////*/


.logo {
  padding-top: 2rem;
  float: left;
  font-size: 1.3em;
  font-weight: 400;
  color: #153A67;
}

.logo a{
	text-decoration: none;
	color: #153A67;
}	

.logo img {
    width: 50%;
}

/*	TYPOGRAPHY 
//////////////////////////////////////////////////////////////////////////////*/
html {
  font-size: 16px;
}

body {
  font-family: "helvetica neue", helvetica, arial, sans-serif;
  color: black;
}

.blau {
	color: #153A67;
}	



h1,
h2,
h3,
h4,
h5,
h6 {
  color: #153A67;
}


a {
  color: blue;
}

* {
  line-height: 1.25;
}

h1 {
  line-height: 1.1;
}

h2 {
	font-size: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
table,
form {
  margin-bottom: 1rem;
}

h1 + h2,
h2 + h3,
h3 + h4,
h4 + h5,
h5 + h6 {
  margin-top: -1rem;
}

h1 {
  font-weight: 400;
}


/*	LISTS 
//////////////////////////////////////////////////////////////////////////////*/
nav ul {
  list-style: none;
}

ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

/*	LINKS 
//////////////////////////////////////////////////////////////////////////////*/
a {
  text-decoration: underline;
  display: inline-block;
}
a:link {
  color: #153A67;
}
a:visited {
  color: black;
}
a:hover {
  color: #153A67;
  text-decoration: none
}
a:active {
  transform: translateY(1px);
}

.link {
  border: none;
  display: inline;
}
.link:hover {
  text-decoration: underline;
}
footer{position: fixed;
left:0;
bottom:0;
}


/*	SLIDER 
//////////////////////////////////////////////////////////////////////////////*/
.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  }

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  }

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
  }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  }


/* END SLIDER */

/*	MEDIA 
//////////////////////////////////////////////////////////////////////////////*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}


/*	LAYOUT 
//////////////////////////////////////////////////////////////////////////////*/

body {
  padding: 0;
}

.row {
    margin: 0 auto;
    position: relative;
}



/*	Mobile Version 
//////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 961px) {

  .nav a#nav-m,
  .nav a.close {
    display: none;
  }
}
  
@media screen and (max-width: 960px) {
	/*Formatierung Slider mobil*/
	.row_hintergrund {
		background-color: white;
	}
	
	.col1-inner {
		margin-right: 0px;
	}
  
	.col1 {
		width: 100%;
	}
	

	.col2 {
		width: 100%;
		float: left;
	}
	
  
  /*Formatierung Mobiles Menue*/
  .nav ul {
    top: 8em;
    position: absolute;
    background: #153A67;
    width: 50%;
    left: -100%;

    list-style-type:none;
    margin: .2em 0 0 1em;
    padding: 0;
	z-index: 10;

    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
  }

  .nav ul li{
    display: block;
	color: white;
    text-align: left;
    padding: 1em 0.5em;
    border-bottom: 1px solid #fff;
  }

  .nav ul li a {
    color: white;
    padding: 0em 0;
  }

  .nav ul.menu li a:hover {
    border-bottom: 0;
  }

  /*Hamburger-Icon*/
  .nav a#nav-m img,
  nav a.close img {
    width: 40px;
    height: auto;
  }

  .nav > .close,
  .nav a#nav-m:target {
    display: none;
  }

  .nav a:target ~ ul,
  .nav a:target ~ .close {
    display: inline-block;
  }

  .nav a:target ~ .close {
    position: absolute;
    margin-left: -40px;
  }

  .nav a:target ~ ul {
    left: 0;
  }
}

/* Tabelle definieren */

.table { 
   /*margin-left: auto;
   margin-right: auto;*/
   display: table;
}

.table-row {display: table-row; }
.table-cell {display: table-cell; padding-right: 5px;}
/*--------------------------------------*/