
/* RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent; }
body { line-height: 1; }
ol, ul { list-style: none; }
.clear { clear: both; }

/* RESET END */

/* BASICS */

/*
FONT LICENSE
Quicksand - Designed by Andrew Paglinawan
github.com/andrew-paglinawan/QuicksandFamily
These fonts are licensed under the Open Font License. 
https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL
*/

@font-face {
    font-family: 'quicksand';
    src: url('../fonts/quicksand.woff2') format('woff2'),
         url('../fonts/quicksand.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	}

@font-face {
    font-family: 'jost';
    src: url('../fonts/jost-regular.woff2') format('woff2'),
         url('../fonts/jost-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	}
@font-face {
    font-family: 'jost300';
    src: url('../fonts/jost-300.woff2') format('woff2'),
         url('../fonts/jost-300.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	}
@font-face {
    font-family: 'jost500';
    src: url('../fonts/jost-500.woff2') format('woff2'),
         url('../fonts/jost-500.woff') format('woff');
    font-weight: normal;
    font-style: normal;
	}

body {
	color: #0b0b0a;
	height: 100%;
	font-size: 110%;
/*	font-family:'', Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, Helvetica, Arial, sans-serif;	*/
	font-family:'jost300', Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, Helvetica, Arial, sans-serif;	
	line-height: 1.5em;
/*	background-color:#f7f9fb; */
background-color:#fff;
	overflow-y: scroll !important;
	}

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

/* ANIMATION	*/

    .star {
        visibility: hidden;
    }

    .fadeIn {
        -webkit-animation: animat_show 3s;
        animation: animat_show 3s;
        visibility: visible !important;
    }

    @-webkit-keyframes animat_show{
        0%{opacity:0}
        100%{opacity:1}
    }


/* make keyframes that tell the start state and the end state of our object */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fade-in.one {
  -webkit-animation-delay: 0.7s;
  -moz-animation-delay: 0.7s;
  animation-delay: 0.7s;
}

.fade-in.two {
  -webkit-animation-delay: 1.2s;
  -moz-animation-delay:1.2s;
  animation-delay: 1.2s;
}


/*	HEADER	*/

.header2 {
	margin: 0 auto;
	width: 100%;
	max-width:1280px;
	min-width: 260px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	background-image:url(../images/logo-irene-sperk-2025.svg);
	background-repeat:no-repeat;
	background-position:40px 30px;
	background-size:500px;
	padding: 20px 40px;
	padding-top:10px;
    box-sizing: border-box;
	height:130px;
	text-align:right;
	color:#252b5b;
	font-family:'quicksand', Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, Helvetica, Arial, sans-serif;
	font-size:0.9em;
	line-height:1.8em;
	}

.logohome { 
	width:100%;
	height:130px;
}


#header2 a:link, #header2 a:visited { color: #252b5b; text-decoration:none; }
#header2 a:hover, #header2 a:focus, #header2 a:active { color: #bc9979; }

#header2 i { 
	font-size:1em;
	width:20px;
	font-size:1.2em;
	align:right;
	color:#bc9979;
	margin-bottom:5px;
	margin-left:10px; 
	}
#header2 i:hover { 
	color:#252b5b; 
	}

#mobilesolo { display:none; }




/*	HEADER	*/

header {
	margin: 0 auto;
	width: 100%;
	max-width:1280px;
	min-width: 320px;
	height:44px;
	position:relative;
	padding-right: 30px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.logo { width: 450px; }


#subheader {
	width: 100%;
	position: relative;
}
#subheader img, #slider img {
	max-width: 100%;
}



/*	STICKY HEADER	*/

.top-container {
	max-width:1280px;
	margin: 0 auto;
  background-color: #fff;
  padding: 40px 30px;
  text-align:center;
  -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	}
.top-container img {
max-width: 100%}

.header {
  padding: 10px 0px;
  background: #252b5b;
  color: #f1f1f1;
  z-index:9999;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky + .content {
  padding-top: 102px;
}

@media screen and (max-height: 600px) {

.sticky {
  position:relative;
  top:auto;
  width: 100%;
}

}

@media screen and (max-width: 900px) {

.sticky {
  position:relative;
  top:auto;
  width: 100%;
}

}

/*	END STICKY HEADER	*/


.mobilebreak { display:inline; }




/* WRAPPER	*/

.wrapper0 {
	width:100%;
	padding:10px 30px 10px 30px;
    box-sizing: border-box;
	background-color:#fff;
}
.wrapper00 {
	width:100%;
	padding:30px 0px;
    box-sizing: border-box;
	background-color:#252b5b;
}
.wrappernav {
	width:100%;
	padding:20px 30px 20px 30px;
    box-sizing: border-box;
	background-color:#e5e6ec;
}
.wrapper1 {
	width:100%;
	padding:30px 30px 0px 30px;
    box-sizing: border-box;
	background-color:#f7f9fb;
}

.wrapper11 {
	width:100%;
	padding:30px 30px 60px 30px;
    box-sizing: border-box;
/*	background-image:url(../images/bg1.svg);
	background-repeat:no-repeat;
	background-position:top left;
	background-size:contain;
*/
	background-color:#f7f9fb;
}
.blue1 {
	background-color:#e5e6ec;
	padding-bottom:80px;
	padding-right:40px;
}
.borderblue1 {
	border-top:70px solid #e5e6ec;
	border-right:80px solid #e5e6ec;
}
.wrapper2 {
	width:100%;
	padding:60px 30px 80px 30px;
    box-sizing: border-box;
	background-color:#fff;
	background-image:url("../images/bg2-2025.jpg");
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.wrapper3 {
	width:100%;
	padding:60px 30px 80px 30px;
    box-sizing: border-box;
	background-color:#fff;
	background-image:url(../images/bg3.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.wrapper4 {
	width:100%;
	padding:60px 30px 80px 30px;
    box-sizing: border-box;
	background-color:#fff;
	background-image:url("../images/bg4-2025.jpg");
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.wrapper5 {
	width:100%;
	padding:60px 30px 80px 30px;
    box-sizing: border-box;
	background-color:#fff;
	background-image:url("../images/bg6-right.png");
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.wrapper6 {
	width:100%;
	padding:60px 30px 80px 30px;
    box-sizing: border-box;
	background-color:#fff;
	background-image:url(../images/bg6.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.wrapper7 {
	width:100%;
	padding:60px 30px 80px 30px;
    box-sizing: border-box;
	background-color:#fff;
	background-image:url("../images/bg7.jpg");
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.wrapper8 {
	width:100%;
	padding:60px 30px 80px 30px;
    box-sizing: border-box;
	background-color:#fff;
	background-image:url(../images/bg6-right.png);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;
}
.wrapper9 {
	width:100%;
	padding:60px 30px 80px 30px;
    box-sizing: border-box;
	background-color:#fff;
/*	background-image:url(../images/bg9.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;    */
}
.wrapper10 {
	width:100%;
	padding:60px 30px 80px 30px;
    box-sizing: border-box;
	background-color:#fff;
/*	background-image:url(../images/bg10.jpg);
	background-repeat:no-repeat;
	background-position:center;
	background-size:cover;    */
}

.wrapper12 {
	width:100%;
	padding:30px 30px 0px 30px;
    box-sizing: border-box;
	background-color:#fff;
}

.container {
	margin: 0 auto;
	width: 100%;
	max-width:1280px;
	min-width: 260px;
	height: auto;
	padding:0px 40px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* CONTENT	*/

h1, h2, h3, h4, h5, h6 { font-family:'quicksand'; font-weight:normal; text-transform:none; letter-spacing:0em;}
h1 { font-size:1.6em; line-height:1.2em; color:#252b5b; padding:0px; }
h2 { font-size:1.4em; line-height:1.2em; color:#252b5b; padding:10px 0px 0px 0px; }
h3 { font-size:1.2em; line-height:1.4em; color:#bc9979; padding:0px; margin:0px; margin-top:10px; }
h4 { font-size:1.2em; line-height:1.2em; color:#bc9979; padding:0px; margin:0px; margin-top:10px; }
h5 { font-size:1.2em; line-height:1.2em; color:#bc9979; padding:20px 0px; }
h6 { font-size:1.6em; line-height:1.2em; color:#bc9979; padding:20px 0px 0px 0px; }

#content img, video {
	max-width: 100%;
	}

strong, b { font-family:'jost'; font-weight:normal; }



#content a:link, #content a:visited { color: #252b5b; text-decoration:none; font-weight:bold; }
#content a:hover, #content a:focus, #content a:active { color: #bc9979; }

h3 a:link, h3 a:visited { color: #bc9979 !important; font-weight:normal !important; }
h3 a:hover, h3 a:focus, #content a:active { color: #99b3d3 !important; }

#content p { text-align:justify; font-size:1em; }

#content ul { list-style-image: url(../images/list.png); margin-left: 25px; margin-top: 0px; padding-bottom: 0px; }
#content li { padding-left: 5px; font-size:1em; margin-left: 10px;  }


#content i, #right i { 
	font-size:1.4em;
	margin-right:5px; 
	}
#content i:hover, #right i:hover { 
	color:#fff; 
	}

.medium { font-family:'quicksand', Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, Helvetica, Arial, sans-serif; }

.smallicon { font-size:1em !important; }

.liste { margin-left: 12px; padding:2px 0px; }
.listmargin { margin:15px 0px; }
.listmargin li {margin-top:20px;}
.listmarginfourth { margin:15px 0px; }
.morespace { margin-top:30px; }

.smallin1 { font-size:14px; }
.smallin2 { font-size:10px; }
.smallin3 { font-size:10px; }
.small { font-size:0.8em; line-height:0.8em; }
.text-center { text-align:center; }
.text-right { text-align:right !important; }
.icons-right { text-align:right; }

.mobileno, .mobileno2 { display:inline; }
.onlymobile, .onlymobilelogohome { display:none; }
.mobilebreak { display:none; }
.mobilebreak2 { display:inline; }
.tabletspacer { display:none; }
.lowercase { text-transform:lowercase !important; }

.pt-7 { padding-top: 7px !important; }
.pt-0 { padding-top: 0px; margin-top: 0px; }
.pr-0 { padding-right: 0px !important; }
.pb-0 { padding-bottom: 0px; margin-bottom: 0px; }
.pl-0 { padding-left: 0px !important; margin-left: 0px !important; }
.mt-0 {margin-top:0px; }
.mt-10 {margin-top:10px !important; }
.mt-15 {margin-top:15px !important; }
.mt-20 {margin-top:20px !important; }
.mt-30 {margin-top:30px !important; }
.mt-40 {margin-top:40px; }
.mt-50 {margin-top:50px; }
.mt-54 {margin-top:54px; }
.mt-60 {margin-top:60px; }
.mb-0 {margin-bottom:0px; }
.m-15 { margin:0px 15px; }
.m-30 { margin:0px 30px; }
.mb-15 {margin-bottom:15px !important; }
.mb-20 {margin-bottom:20px !important; }
.mb-30 {margin-bottom:30px !important; }
.mb-40 {margin-bottom:40px !important; }
.ml-20 {margin-left:20px; }
.mr-2 {margin-right:2px; }
.ml-0 {margin-left:0px !important; }
.ml-5 {margin-left:5px; }
.mr-5 {margin-right:5px; }
.mr-20 {margin-right:20px; }
.pl-20 {padding-left:20px; }
.pl-30 {padding-left:30px; }
.pb-40 {padding-bottom:40px; }
.pl-40 {padding-left:40px; }
.pr-80 {padding-right:80px !important; }
.mr-40 {margin-right:40px; }
.space10 { height:10px; }
.space5 { height:5px; }

.mp-30 { padding:0px; }
.language2 { display:inline; padding:0px 0px 0px 25px; }
.lh-0 { line-height:0px !important; }

.time10 { display: inline; margin-left: 10px; }
.time12 { display: inline; margin-left: 12px; }
.time15 { display: inline; margin-left: 15px; }
.time18 { display: inline; margin-left: 18px; }
.time20 { display: inline; margin-left: 20px; }

.w200 { width:200px !important; }

.highlight { color:#0b0b0a; border: 1px solid #bc9979; background-color: #f5ebe9; padding: 25px; margin: 10px 0px 30px 0px;}

.button {
	display:inline-flex;
	text-align:left;
	font-family:'jost', Calibri, "Gill Sans", "Gill Sans MT", "Myriad Pro", Myriad, Helvetica, Arial, sans-serif;
	text-transform:uppercase;
	letter-spacing:0.1em;	
	padding: 15px 25px;
	margin:5px 15px 5px 0px;
	background-color:#252b5b; 
	color:#fff;
}
.button:hover {
	background-color:#bc9979;
}
a.buttonlink {
	text-decoration:none !important;
	color:#fff !important;
	font-weight:normal !important;
}
a.buttonlink:hover {
	color:#fff !important;
}

.picright {
	float:right;
	margin:0px 0px 20px 20px;
	}

.picleft { 
	float:left;
	margin: 0px 20px 20px 0px;
	}

#right {
	float:right;
	text-align:right;
	width:250px;
	margin-left:50px;
	padding-right:30px;
	padding-top:30px;
	}


section, article {
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 0px;
	overflow:hidden;
	}

.full {
	width:100%;
	height: auto;
	line-height: 1.7em;
	padding: 0px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.half {
	width:50%;
	height: auto;
	float:left; 
	line-height: 1.7em;
	padding: 0px 60px 0px 0px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	overflow:hidden;
	}

.halflast {
	width:50%;
	height: auto;
	line-height: 1.7em;
	float:left; 
	padding: 0px 0px 0px 60px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	overflow:hidden;
	}

.innerhalf {
	width:50%;
	height: auto;
	float:left; 
	line-height: 1.7em;
	padding: 0px 20px 0px 0px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	overflow:hidden;
	}

.innerhalflast {
	width:50%;
	height: auto;
	line-height: 1.7em;
	float:left; 
	padding: 0px 0px 0px 20px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	overflow:hidden;
	}

.third  {
	width:33.3333%;
	height: auto;
	float:left; 
	padding: 0px 20px 0px 0px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	}

.third1  {
	width:34%;
	height: auto;
	float:left; 
	padding: 0px 20px 0px 0px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	}

.third2  {
	width:38%;
	height: auto;
	float:left; 
	padding: 0px 20px 0px 0px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	}

.third3  {
	width:28%;
	height: auto;
	float:left; 
	padding: 0px 20px 0px 0px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	}

.fourth  {
	width:25%;
	height: auto;
	float:left; 
	padding: 0px 0px 0px 30px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	}

.threefourth  {
	width:75%;
	height: auto;
	line-height: 1.7em;
	float:left; 
	padding: 0px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	}

.dividerline {
	width: 100%;
	margin: 30px 0px 20px 0px;
	border-top:1px solid #d9e7e9;
	}

.divider {
	width: 100%;
	margin: 30px 0px 20px 0px;
	}

.clearspace { clear: both; padding:10px 0px; }

footer {
	display:block;
	padding: 60px 0px 80px 0px;
	background: #e5e6ec;
	font-size:1.2em;
	line-height:1.6em;
	}

footer a:link, footer a:visited { color: #252b5b; text-decoration:none; }
footer a:hover, footer a:focus, footer a:active { color: #bc9979; text-decoration:none; }

footer h2 { margin-bottom:20px; }

.footercontainer {
	width: 100%;
	margin: 0 auto;
	padding: 0px 0px;
	max-width:1280px;
	min-width: 260px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
	}

.footerspace { margin-left:40px; }

#subfooter {
	display:block;
	padding: 60px 0px 60px 80px;
	background: #bc9979;;
/*	background-image:url(../images/grafik-irene-sperk.svg);
	background-repeat:no-repeat;
	background-position:20px 30px;
	background-size:80px;
*/
	color:#fff;
	text-align:center;
	line-height:1.7em;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	}

#subfooter a:link, #subfooter a:visited { color: #fff; text-decoration:none; }
#subfooter a:hover, #subfooter a:focus, #subfooter a:active { color: #fff; text-decoration:none; }

.footerbgwhite {
	background-color:#fff !important; 
}

/* END content	*/


/* RESPONSIVE STYLES */

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

#subfooter { background-position:50px 30px; }

}

@media screen and (max-width: 1020px) {
	

.wrapper11 {
	background-image:none;
}

.mobileno2 { display:none; }

.half, .halflast, .innerhalf, .innerhalflast, .fourth, .threefourth {
	width:100%;
	float:none;
	padding:0px; 
	}

#content p { text-align:left; }

.icons-right { text-align:left; }


.liste { margin-left: 5px; padding:2px 10px; }

.picright, .picleft {
	float:none;
	padding-left:0px;
	display:block;
	}
.text-right { text-align:left !important; }

.onlymobile { display:inline; }
.mp-30 { padding:30px; }
.mt-60 {margin-top:20px; }
.mt-54 {margin-top:20px; }
.mt-50 {margin-top:0px; }
.pt-0-mobile {padding-top: 0px;}     

.wrapper10, .wrapper9, .wrapper8, .wrapper7, .wrapper6, .wrapper4, .wrapper5, .wrapper3, .wrapper2 {
	background-image:none;
	padding:0px;

}
.container { padding:0px; }

.footerspace { margin-left:0px; }

footer {text-align:center; padding-top:20px; }
footer h2 { margin-top:50px; }

#subfooter { padding-bottom:20px; padding-left:20px; }

.footerbgwhite {
	background-color:#f7f9fb !important; 
}

}


@media screen and (max-width: 950px) {

.header2 {
	background-size:400px;
	}
}

@media screen and (max-width: 850px) {

.header2 {
	background-size:300px;
	}
}



@media screen and (max-width: 790px) {

    .fadeIn {
        -webkit-animation: animat_show 1s;
        animation: animat_show 1s;
    }


.wrapper0 {
	padding:0px 30px 0px 10px;
}

#mobilesolo { display:inline; }
.wrapper1 { border:none; }

#header { font-size:1.2em; }

#header2 a:link, #header2 a:visited { color: #fff; text-decoration:none; }
#header2 a:hover, #header2 a:focus, #header2 a:active { color: #fff; }

.header2 {
	background-size:280px;
	background-position:center;
	height:120px;
	padding:20px 0px 20px 0px;
	}
.onlymobilelogohome { display:inline; }
.logohome { 
	height:120px;
}

#header2 i { 
	color: #fff;
	font-size:1.6em;
	width:auto;
	margin-left:30px;
	height: 160px; 
	}
#header2 i:hover { 
	color:#fff; 
	}

.language2 { padding-left: 25px; }

.mobileno { display:none; }
.mobilebreak { display:inline; }
.mobilebreak2 { display:none; }

.container { padding:0px; }

#right {
	float:none;
	text-align:left;
	width:auto;
	margin-left:0px;
	margin-bottom:30px;
	margin-top:30px;
	}
.mr-40 {margin-right:30px; }

.third, .third1, .third2, .third3  {
	width:100%;
	float:none;
	padding:0px 20px; 
	}

#subfooter {
	background-position:15px 58px;
	background-size:50px;
	}

h1 { font-size:1.4em; }
h2 { font-size:1.2em; }

}

/* END Responsive Styles  */




/* NAVIGATION */
nav { 
	max-width: 1280px;
	float:right;
	margin: 0 auto;
	z-index:9998;
/*	display:table;	*/
}
.container {
    margin: 0px auto;
}
.toggleMenu {
    display:  none;
	text-transform:uppercase;
	text-align:center;
	font-size:1.4em;
    background: #252b5b;
    padding: 15px 30px;
    color: #fff;
}
.toggleMenu2 {
    display:  none;
	text-transform:uppercase;
	text-align:center;
	font-size:1.4em;
    background: #252b5b;
    padding: 15px 12px;
    color: #fff;
}

.navi {
	list-style: none;
	text-align:left;
     *zoom: 1;
     background:#252b5b;
}
.navi a, a.toggleMenu, a.toggleMenu2  {text-decoration: none;}
.navi:before,
.navi:after {
    content: " "; 
    display: table; 
}
.navi li a { 
	color:#0b0b0a;
	font-family:'jost';
	letter-spacing:0.1em;
	text-transform:uppercase;
	font-size:1.1em;
}

.navi li a:link, .navi li a:visited { color: #fff; }
.navi li a:hover, .navi li a:focus, .navi li a:active { color: #fff; }

.navi:after {
    clear: both;
}
.navi ul {
    list-style: none;
    width: auto;
}

.navi a {
    padding: 10px 5px 10px 25px;
    color:#fff;
}
.navi li {
    position: relative;
}
.navi > li {
    float: left;
	margin-left: 10px;
}
/*
.navi > li.hover {
	background-color:#e2f3ff;
}
*/
	
.navi > li > .parent {
    background-image: url("../images/arrow-down-white.png");
    background-repeat: no-repeat;
    background-position: right;
	padding-right:35px;
}
.navi > li.hover > .parent {
    background-image: url("../images/arrow-down-white.png");
    background-repeat: no-repeat;
    background-position: right;
}
.navi > li > a {
    display: block;
}
.navi li  ul {
    position: absolute;
    left: -9999px;

}
.navi > li.hover > ul {
    left: 0;
    top: 42px;
}
.navi li li.hover ul {
    left: 100%;
    top: 0;
}
.navi li li {
	min-width:300px;
}
.navi li li:first-child {
	padding-top:8px;	
}
.navi li li:first-child a {
    border-top: 1px solid #fff;
}

.navi li li a {
    display: block;
    padding: 15px 25px;
    background: #fff;
    position: relative;
    z-index:100;
    border-bottom: 1px solid #fff;

}

/*Hover state for top level links */
.navi li:hover a {
	color: #bc9979;
}  

/*Style for dropdown links*/
.navi li:hover ul a {
	background: #252b5b;
	color: #fff;
}

/*Hover state for dropdown links*/
.navi li:hover ul a:hover {
	background: #91d1d8;
	color: #fff;
}


.aktiv { 
		color: #bc9979 !important;

}

@media screen and (max-width: 1000px) {

.navi li a { 
	font-size:1em;
}

.navi a {
    padding-left: 20px;
}
}

@media screen and (max-width: 900px) {

.navi li a { 
	font-size:0.9em;
}

.navi a {
    padding-left: 15px;
}
}


@media screen and (max-width: 790px) {

.navi li a { 
	font-size:1.1em;
}

#content {
display:inline-block;
	}

.toggleMenu {
    padding-right: 10px;
}
a.toggleMenu, a.toggleMenu2 { display:inline-table !important; }
.navi {	text-align:left; }

.mobilebreak { display:inline; }


header {
	height:50px;
	padding-right: 0px;
}

#left {
	float:none;
	width:100%;
	text-align:center;
	}
#right {
display:none
}

#top-address {
display:block;
  padding: 10px 0px;
  background: #f0f0f0;
  color:#fff;
  text-align:center;
  line-height:1.7em;
  font-size:1.5em;
}
#top-address a:link, #top-address a:visited { color: #252b5b; text-decoration:none; }
#top-address a:hover, #top-address a:focus, #top-address a:active { color: #252b5b; text-decoration:none; }





nav { 
	width: 100%;
	background-color:#252b5b;
	position:relative;
	display:inherit;
}

.navi li a { 
	color:#fff;
}
.navi li a:link, .navi li a:visited { color: #fff; }
.navi li a:hover, .navi li a:focus, .navi li a:active { color: #fff; }

.navi a {
    background-color:#252b5b;
}
.navi li:hover a {
	color: #252b5b;
} 
.navi > li {
	margin-left:0px;
}
.navi > li.hover {
	border-radius:0px;
	-moz-border-radius:0px;
	-webkit-border-radius:0px;
}


.navi li:hover a {
	color: #f1f1f1;
	background-color:#252b5b;
} 
.navi li:first-child {
    border-top: 1px solid #252b5b;
}
.navi li li:first-child {
	padding-top:0px;
	border-top:none;
}
    .active {
        display: block;
    }
    .navi > li {
        float: none;
    }
    .navi > li > .parent {
       background-image: url("../images/arrow-down-white.png"); 
    }
    .navi > li:hover > .parent {
       background-image: url("../images/arrow-down-white.png"); 
    }	
.navi li:hover ul a {
	background: #91d1d8;
	color: #fff;
}

.navi > li.hover > .parent {
    background-image: url("../images/arrow-close-white.png");
}
.navititle {
    padding: 15px 30px;
}	
	.navi li a {
     padding: 18px 10px 18px 58px;
     border-bottom: 1px solid #fff;
 }
 	.navi li:last-child a {
     border-bottom: 0px;
 }
 	.navi li li:last-child a {
     border-bottom: 1px solid #fff;
 }
  	.navi li:first-child a {
     border-top: 1px solid #fff;
 }
   	.navi li li:first-child a {
     border-top: none;
 }
 	.navi li li a {
    padding: 18px 10px 18px 68px;
 	background: #91d1d8;
 	font-weight:normal;
 }
    .navi ul {
        display: block;
        width: 100%;
    }
   .navi > li.hover > ul , .navi li li.hover ul {
        position: static;
    }
.aktiv { 
		color: #bc9979 !important;

}

.pt-7 { padding-top: 10px !important; }

}

/* NAVIGATION END */



/* SCROLL TO TOP */

.back-to-top {
	position: fixed;
	bottom: 10px;
	right: 20px;
	opacity:0.8;
	text-decoration: none;
	color:#252b5b;
	font-size: 50px;
	padding: 10px 15px;
	display: none;
	}

.back-to-top:hover {
	opacity:0.4;
	}

@media screen and (max-width: 1480px) {

.back-to-top {
	right: 10px;
	}

}

@media screen and (max-width: 800px) {

.back-to-top {
	bottom: 20px;
	padding: 10px 10px;
	}

}

/* SCROLL TO TOP END */