html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

.cwrap {
    margin: auto;
}

/* Horizontal Navigation */
nav.horizontal ul{list-style: none;margin:0;padding:0;}
nav.horizontal ul li{display:inline-block}
nav.horizontal ul li a{padding:2px 5px;margin:0 5px;}


/* header + main nav */

.header .logo a,
.header .logo img {
    display: block;
    width: 100%;
    height: auto;
    padding-left:20px;
}
.header .logo a{
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-size:30px;
    text-decoration: none;
}
.header .logo .blau {
    color:#565b7b;
    position: relative;
}
.header .logo .rot {
    color:#ef8286;
    position: relative;
}
.header .logo .rot:after{
    content: '';
    width: 150px;
    bottom: 0;
    left: 0;
    position: absolute;
    height: 2px;
    background: #ef8286;

}

.header .mainnav ul {
    display: block;
    padding: 0;
    list-style-type: none;
    font-size: 0;
    line-height: 0;
    margin: 0 -10px;
}

/* footer */

.footer {
    background: #333;
    color: #fff;
    padding-bottom: 40px;
}

/* content structure */

.content {
    
}

/* Table basics */

.tbl {
    display: table;
    table-layout: fixed;
    width: 100%
}

.tbl>div {
    display: table-row
}

.tbl .tcell {
    display: table-cell;
    vertical-align: top
}

/* Grid Cols */

.tbl .tcell.cols-1-1-l,
.tbl .tcell.cols-1-1-r {
    width: 50%
}

.tbl .tcell.cols-1-2-l,
.tbl .tcell.cols-2-1-r {
    width: 25%
}

.tbl .tcell.cols-1-2-r,
.tbl .tcell.cols-2-1-l {
    width: 75%
}

.tbl .tcell.cols-1-1-l,
.tbl .tcell.cols-1-2-l {
    padding-right: 10px;
}

.tbl .tcell.cols-1-1-r,
.tbl .tcell.cols-2-1-r {
    padding-left: 10px;
}
/*
.tbl .tcell.col1 {
    padding-right: 5px
}

.tbl .tcell.col2 {
    padding: 0 5px
}

.tbl .tcell.col3 {
    padding-left: 5px
}
*/

/* custom */

body {
	background: #C7C8CA;
	font-size: 14px;
	line-height: 1.4em;
	font-family: 'Frutiger LT Com 55 Roman';
	font-weight: normal;
  font-style: normal;
}

.pwrap {
	/* max-width: 1600px; */
	margin: 0 auto;
}

.header {
    position: relative;
}

.header .sticky-wrapper {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100px;
	background: #fff;
	box-shadow: 0 4px 10px 0 rgba(0,0,0,.1);
	z-index: 9999;
}

.header .sticky-wrapper.stickbottom {
	height: 100px;
	position: absolute;
	bottom: 0;
	top: auto;
}

.header .sticky-wrapper.stickbottom:before {
	transform-origin: left bottom;
	position: absolute;
	content: '';
  display: block;
	width: 100%;
	height: 80px;
	top: 0;
	left: 0;
	z-index: -1;
	transform: skewY(-2deg) translate3d(0,0,0);
  -ms-transform: skewY(-2deg) translate3d(0,0,0);
	background: #fff;
}

.header .navwrap {
	/* max-width: 1600px; */
	margin: 0 auto;
	background: #fff;
}

.header .navwrap .logo {
	float: left;
    width: 300px;
    padding: 35px 40px 35px 0;
}

.header .navwrap .mainnav {
    float: left;
    margin: 0;
}

.header .navwrap .mainnav li {
	display: inline-block;
	vertical-align: top;
	font-family: 'Frutiger LT Com 45';
	font-weight: 300;
	font-style: normal;
	font-size: 20px;
	line-height: 1.2em;
	margin: 0 10px;
	position: relative;
}

.header .navwrap .mainnav li.act,
.header .navwrap .mainnav li.cur {
    font-weight: 600;
    
}

.header .navwrap .mainnav li a {
    display: block;
    color: #000;
	text-align: center;
    text-transform: none;
    text-decoration: none;
    padding: 32px 0 34px;
    transition: font-weight 0.1s ease-in;
}

.header .navwrap .mainnav li a::after {
    display: block;
    content: attr(title);
    font-weight: bold;
    height: 1px;
    overflow: hidden;
    visibility: hidden;
}
.header .navwrap .mainnav li:hover > a {
    cursor: pointer;
    font-weight: 700;
}

/** zweite Ebene der Navigation **/

.header .mainnav ul.sub-2 {
    z-index: 200;
    margin: 0;
    display: none;
    position: absolute;
    width: 250px;
    left: -25px;
    box-shadow: 10px 10px 8px rgba(0,0,0,.1);
    padding-bottom: 20px;
    background-color: white;
    top: inherit;
    bottom: 70px;
    padding-top: 16px;
}

.pwrap .header .mainnav ul.sub-2.dropdown {
    bottom: inherit;
    padding-top: 0;
    top: 80px;
}

.header .mainnav ul.sub-2 a {
    text-align: left;
}

/*.header .mainnav li:hover ul.sub-2 {
    display: block;
}*/

.header .mainnav ul.sub-2 li {
    display: block;
    font-size: 16px;
    margin: 0;
}

.header .mainnav ul.sub-2 li a {
    
    padding: 8px 30px;
    border: none;
    text-transform: none;
    background: #fff;
    -webkit-transition: background-color 300ms ease-in, color 500ms ease-in;
    -moz-transition: background-color 300ms ease-in, color 500ms ease-in;
    -o-transition: background-color 300ms ease-in, color 500ms ease-in;
    -ms-transition: background-color 300ms ease-in, color 500ms ease-in;
    transition: background-color 300ms ease-in, color 500ms ease-in;
}

.header .mainnav ul.sub-2 li:hover > a {
    font-weight: bold;
}

div.slider .ce-imageslider {
	margin-bottom: -50px;
}

a {
	color: #00529c;
}

.ctype-textmedia.layout-3 .cwrap .ce-textpic header h1 {
	color: #000;
	font-family: 'Frutiger LT Com 45';
    font-style: normal;
	font-weight: 300;
	font-size: 36px;
    text-align: center;
    text-transform: uppercase;
    line-height: 43.2px;
}

.ctype-textmedia.layout-3 .cwrap .ce-textpic header h1:after {
	content: '';
	display: block;
	width: 220px;
	height: 1px;
	background: #000;
	margin: 0 auto;
	margin-top: 10px;
	margin-bottom: 50px;
}

.tx-ns-instagram{
    max-width:1200px;
    margin:auto;
}