/* =============================================================================
 * preloader
 * ========================================================================== */

.premask {
	background-color:#FFF;
	width:100%;
	height:100%;
	position:fixed;
	z-index:100000;
}

#preloader {
	background:url(../gui/posertouristik-preloader-2023.svg) center center no-repeat;
	background-size: 150px 150px;
	height: 150px;
	width: 150px;
	left: 50%;
	top: 50%;
	position: absolute;
	margin: -75px 0 0 -75px;
}

/* =============================================================================
 * fonts
 * ========================================================================== */

 @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: url('../font/open-sans-400.woff2') format('woff2'),
		 url('../font/open-sans-400.woff') format('woff'),
		 url('../font/open-sans-400.ttf') format('truetype');
  }
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: url('../font/open-sans-600.woff2') format('woff2'),
		 url('../font/open-sans-600.woff') format('woff'),
		 url('../font/open-sans-600.ttf') format('truetype');
  }
  @font-face {
	font-family: 'Open Sans';
	font-style: normal;
	font-weight: 700;
	font-display: swap;
	src: url('../font/open-sans-700.woff2') format('woff2'),
		 url('../font/open-sans-700.woff') format('woff'),
		 url('../font/open-sans-700.ttf') format('truetype');
  }

/* =============================================================================
 * header
 * ========================================================================== */

#header {
	background: url(../gui/white-90.png) repeat;
	background: rgba(255,255,255,0.9);
	z-index: 5559;
	position: fixed;
	width: 100%;
	top: 0;
	margin-bottom: -100%;
	-moz-box-shadow: 0px 1px 3px 0px #ccc;
	-webkit-box-shadow:  0px 1px 3px 0px #ccc;
	box-shadow: 0px 1px 3px 0px #ccc;
	-moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
	-webkit-box-shadow:  0px 1px 3px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.2);
}

#header-sticky-wrapper {
	position: absolute;
}

.logo {
	height: 75px;
	margin-top: 12px;
	margin-bottom: 12px;
}

/*     navigation
------------------------------------------------- */

.navigation {
	font-family: 'Open Sans','Calibri',Verdana,Arial,sans-serif;
	font-size: 14px;
	font-weight: 400;
	font-style: normal;
	text-transform: uppercase;
	text-decoration: none;
}

.navigation ul {
	margin-top: 70px;
}

.navigation li {
	margin-left: 5.75%;
	float: left;
	position: relative;
	padding-bottom: 5px;
}

.navigation li a {
	color: #555;
}

.navigation li.active, .navigation li.trail {
	border-bottom: 5px solid #e2001a;
	padding-bottom: 5px;
}

.navigation li strong, .navigation li.trail, .navigation li.trail a.trail {
	color: #e2001a;
}

.navigation a:after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 5px;
	background: #555;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
	-moz-transition: opacity 0.3s ease, -moz-transform 0.3s ease;
	transition: opacity 0.3s ease, transform 0.3s ease;
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}

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

.navigation li.trail:hover a:after {
	-webkit-transform: translateY(10px);
	-moz-transform: translateY(10px);
	transform: translateY(10px);
}

.navigation li.active:hover, .navigation li.trail:hover {
	border-bottom: 5px solid #e2001a;
	cursor: default;
}
.navigation li.trail a.trail:hover{
	cursor: default;
}
.mobnav {
	display: none;
}

/*     socials
------------------------------------------------- */

.socials {
	right: 0;
	text-align: right;
	height: 35px;
	margin-bottom: -35px;
}

.suchicon, .facebookicon {
	position: relative;
	padding: 6px;
	-webkit-box-shadow: 0 0 2px #ccc;
	-moz-box-shadow: 0 0 2px #ccc;
	box-shadow: 0 0 2px #ccc;
	top: 5px;
	width: 32px;
	margin-right: 10px;
	color: #555;
	-webkit-transition: color .4s ease;
	-moz-transition: color .4s ease;
	-ms-transition: color .4s ease;
	-o-transition: color .4s ease;
	transition: color .4s ease;
	z-index: 555;
}

.suchicon:hover, .facebookicon:hover {
	color: #e2001a;
}

.suchicon:before {
	left: 2px;
	position: relative;
}

.facebookicon:before {
	position: relative;
	left: 2px;
}

.mod_changelanguage {
	position: relative;
	display: inline;
	top: 7px;
	padding: 8px 10px 4px;
	-webkit-box-shadow: 0 0 2px #ccc;
	-moz-box-shadow: 0 0 2px #ccc;
	box-shadow: 0 0 2px #ccc;
	margin-right: 2px;
	z-index: 555;
}

.mod_changelanguage a, .mod_changelanguage strong {
	display: inline-block;
	top: 5px;
}

.mod_changelanguage .lang-de{
	background: url(../gui/de.png) no-repeat;
	height: 16px;
	width: 24px;
}

.mod_changelanguage .lang-en{
	background: url(../gui/en.png) no-repeat;
	height: 16px;
	width: 24px;
}

.mod_changelanguage a {
	opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity .4s ease;
	-moz-transition: opacity .4s ease;
	-ms-transition: opacity .4s ease;
	-o-transition: opacity .4s ease;
	transition: opacity .4s ease;
}

.mod_changelanguage a:hover {
	opacity: .5;
	filter: alpha(opacity=50);
}

.selectnav {
	display: none;
}





/* =============================================================================
 * slider
 * ========================================================================== */

.slider {
	position: relative;
	height: 100%;
	width: 100%;
}

.slider .welcome-slider {
	position: relative;
}

.slider .scrollbutton {
	width: 70px;
	height: 70px;
	position: absolute;
	left: 50%;
	margin-left: -35px;
	top: 85%;
	background: url(../gui/scrollbutton.png) no-repeat;
	background-size: contain;
	opacity: .7;
	filter: alpha(opacity=70);
	-webkit-transition: opacity .5s ease;
	-moz-transition: opacity .5s ease;
	-ms-transition: opacity .5s ease;
	-o-transition: opacity .5s ease;
	transition: opacity .5s ease;
	animation: swing 1.2s 0s ease-in-out infinite;
	-webkit-animation: swing 1.2s 0s ease-in-out infinite;
	-moz-animation: swing 1.2s 0s ease-in-out infinite;
	-ms-animation: swing 1.2s 0s ease-in-out infinite;
}
@keyframes swing{0%{transform:translate(0,-10px)}50%{transform:translate(0,10px)}100%{transform:translate(0,-10px)}}@-webkit-keyframes swing{0%{-webkit-transform:translate(0,-10px)}50%{-webkit-transform:translate(0,10px)}100%{-webkit-transform:translate(0,-10px)}}@-moz-keyframes swing{0%{-moz-transform:translate(0,-10px)}50%{-moz-transform:translate(0,10px)}100%{-moz-transform:translate(0,-10px)}}@-o-keyframes swing{0%{-o-transform:translate(0,-10px)}50%{-o-transform:translate(0,10px)}100%{-o-transform:translate(0,-10px)}}@-ms-keyframes swing{0%{-ms-transform:translate(0,-10px)}50%{-ms-transform:translate(0,10px)}100%{-ms-transform:translate(0,-10px)}}





/* =============================================================================
 * content
 * ========================================================================== */

/*     general
------------------------------------------------- */

#container {
	padding-top: 70px;
}

.poser-grey {
	color: #555;
}

.poser-red {
	color: #e2001a;
}




/*     text
------------------------------------------------- */

* {
	font-family: 'Open Sans','Calibri',Verdana,Arial,sans-serif;
	font-style: normal;
	text-decoration: none;
}

h1, h2, h3, h4, h5, h6, span, p, label, a {
	font-family: 'Open Sans','Calibri',Verdana,Arial,sans-serif;
	font-weight: 400;
	font-style: normal;
	text-decoration: none;
}

h1 {
	font-weight: 600;
	font-size: 22px;
	color: #e2001a;
}

h2 {
	font-size: 14px;
	color: #555;
}

h2.subtitle {
	margin-top: -22px;
}

p {
	color: #333;
	font-size: 14px;
}

a {
	color: #e2001a;
	font-size: 14px;
	-webkit-transition: color .4s ease;
	-moz-transition: color .4s ease;
	-ms-transition: color .4s ease;
	-o-transition: color .4s ease;
	transition: color .4s ease;
}

a:hover {
	color: #555;
}



/*     startbox
------------------------------------------------- */

.startbox {
	text-align: center;
	padding: 30px;
	background: #f7f7f7;
	position: relative;
	height: 420px;
	margin-bottom: 30px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	-webkit-box-shadow: inset 0 0 0 rgba(0,0,0,0.0);
	-moz-box-shadow: inset 0 0 0 rgba(0,0,0,0.0);
	box-shadow: inset 0 0 0 rgba(0,0,0,0.0);
}

.startbox span {
	font-size: 130px;
	color: #ccc;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

.startbox h3 {
	color: #e2001a;
	font-size: 18px;
	font-weight: 700;
	margin-top: 80px;
	margin-bottom: 20px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.startbox .info {
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.startbox:hover {
	-webkit-box-shadow: inset 0 0px 4px rgba(0,0,0,0.25);
	-moz-box-shadow: inset 0 0px 4px rgba(0,0,0,0.25);
	box-shadow: inset 0 0px 4px rgba(0,0,0,0.25);
}

.startbox:hover h3 {
	margin-top: 0;
}

.startbox:hover span {
	color: #e2001a;
}

.startbox:hover .info {
	opacity: 1;
}






/* =============================================================================
 * sidebar
 * ========================================================================== */

.news-sidebar, .zeiten-sidebar {
	border: 1px solid #ccc;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-bottom: 0;
}
.news-sidebar {
	margin-top: 80px;
}
.zeiten-sidebar .inhalt, .news-sidebar .mod_newslist {
	padding: 15px;
}
#sidebar h2.headline {
	padding-top: 17px;
	padding-bottom: 22px;
	margin-top: 20px;
	margin-bottom: 0;
	background: url(../gui/bg-sidebar.jpg) repeat-x;
	text-align: center;
	font-weight: 700;
	color: #fff;
	font-size: 18px;
	text-shadow: 0px 1px 0px #333;
	filter: dropshadow(color=#333, offx=0, offy=1);
}
.zeiten-sidebar h3 {
	color: #e2001a;
	font-size: 18px;
	font-weight: 700;
	padding-top: 0;
}
.zeiten-sidebar p {
	line-height: 1.8;
}
.news-sidebar h3 {
	font-weight: 700;
	font-size: 16px;
	color: #e2001a;
	padding-top: 0;
	padding-bottom: 0;
}
.news-sidebar h2 {
	font-weight: 400;
	font-size: 16px;
	color: #e2001a;
	padding-top: 0;
	margin-bottom: 20px;
	line-height: 1.4;
}
.news-sidebar p {
	margin-bottom: 5px;
}
.news-sidebar p.more {
	margin-top: 15px;
}
.news-sidebar .mod_newslist .layout_latest.block {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #ddd;
}
.news-sidebar .mod_newslist .layout_latest.block:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
#sidebar .shadow {
	margin-bottom: 40px;
}
#sidebar .shadow img {
	vertical-align: top;
	width: 100%;
	height: auto;
}




/* =============================================================================
 * footer
 * ========================================================================== */
#footer .inside {
	padding-top: 0;
}
.footer-divider {
	height: 90px;
	border-bottom: 1px solid #e2001a;
	margin-bottom: 35px;
	margin-top: 20px;
	background: url(../gui/logo-libelle.jpg) no-repeat;
	background-position: bottom right;
	background-size: contain;
}
#footer .mod_customnav a{
	color: #555;
	padding-left: 10px;
	border-left: 1px solid #e2001a;
	margin-left: 10px;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
#footer .mod_customnav li {
	margin-bottom: 7px;
}
#footer .mod_customnav a:hover {
	color: #e2001a;
	border-left: 1px solid #555;
}
#footer .mod_customnav strong {
	padding-left: 10px;
	margin-left: 10px;
	color: #e2001a;
	border-left: 1px solid #555;
	font-size: 14px;
}
#footer p a {
	color: #555;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-ms-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}
#footer p a:hover {
	color: #e2001a;
}
#footer p {
	margin-bottom: 7px;
	color: #333;
}
#footer .zeiten {
	border-top: 1px solid #e5e5e5;
}
#footer .zeiten p {
	font-size: 12px;
	margin-top: 5px;
	font-weight: 600;
}
#footer .fb-box-small {
	display: none;
}

@media only screen and (min-width: 768px) {
	#footer .two_fifth.contactinfo {
		border-left: 1px solid #aaa;
		padding-left: 2%;
		margin-left: 2%;
	}
}



/* =============================================================================
* MEDIA QUERIES
* ========================================================================== */

/*     --tablets
------------------------------------------------- */
@media only screen and (max-width: 1200px) {
	.navigation li {
		margin-left: 4%;
	}
	#header .logo img {
		margin-top: 5px;
	}
}

@media only screen and (max-width: 1024px) {
	#footer .fb-box-small {
		display: inherit;
	}
	#footer .fb-box {
		display: none;
	}
	#header .logo {
		width: 18.5%;
	}
	.mobnav {
		display: block;
		text-align: right;
		margin-top: -35px;
	}
	.mobnav .nav-collapse {
		text-align: center;
	}
	.mobnav li.trail a.trail {
		color: #e2001a;
	}
	.navigation {
		display: none;
	}
	.nav-collapse {
		margin-top: 20px;
		border-top: 1px solid #ccc;
		padding-top: 15px;
		padding-bottom: 5px;
	}
	.nav-toggle {
		font-size: 16px;
	}
	.nav-collapse a, .nav-collapse strong {
		font-family: 'Open Sans','Calibri',Verdana,Arial,sans-serif;
		font-size: 16px;
		font-weight: 400;
		font-style: normal;
		text-transform: uppercase;
		text-decoration: none;
	}
	.nav-collapse li {
		margin-bottom: 5px;
	}
	.nav-collapse li a {
		color: #555;
	}
	.nav-collapse li a:hover {
		color: #e2001a;
	}
	.nav-collapse li strong {
		color: #e2001a;
	}
}

@media only screen and (max-width: 900px) {
	#header .logo {
		width: 21%;
	}
}

@media only screen and (max-width: 840px) {
	#header .logo {
		width: 22%;
	}
	.onlinereisebuero {
		display: none;
	}
}


/*     --phones
------------------------------------------------- */
@media only screen and (max-width: 767px) {
	#footer .fb-box-small {
		display: none;
	}
	#footer .fb-box {
		display: inherit;
	}
	#header .logo {
		height: auto;
		text-align: center;
		width: 30%;
	}
	.mobnav {
		margin-bottom: 0;
		text-align: right;
	}
	.mobnav .nav-collapse {
		text-align: center;
	}
	/* #footer #foot .two_third, #footer #foot .one_third {
		text-align: center;
		margin-bottom: 0;
	} */
	#footer #foot .mod_customnav a {
		margin-left: 0;
		padding-left: 0;
		border: none;
	}
	#footer #foot .mod_customnav {
		border-bottom: 1px solid #e5e5e5;
		padding-bottom: 10px;
		margin-bottom: 15px;
	}
	#footer #foot .zeiten {
		padding-top: 15px;
		border-bottom: 1px solid #e5e5e5;
		margin-bottom: 25px;
	}
	#footer #foot .zeiten .two_fifth {
		margin-bottom: 0;
	}
	#footer .mod_customnav strong {
		border-left: none;
		padding-left: 0;
		margin-left: 0;
	}
}

@media only screen and (max-width: 600px) {
	#header .logo {
		width: 40%;
	}
}

@media only screen and (max-width: 500px) {
	#header .logo {
		width: 50%;
	}
}

@media only screen and (max-width: 400px) {
	#footer .fb-box-small {
		display: inherit;
	}
	#footer .fb-box {
		display: none;
	}
}

@media only screen and (max-width: 350px) {
	.nav-toggle {
		font-size: 14px;
	}
	.suchicon, .facebookicon {
		display: none;
	}
}