/*
	Theme Name: HTML5 Blank
	Theme URI: http://html5blank.com
	Description: HTML5 Blank WordPress Theme
	Version: 1.4.3
	Author: Todd Motto (@toddmotto)
	Author URI: http://toddmotto.com
	Tags: Blank, HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}
/* html element 62.5% font-size for REM use */
html {
	font-size:62.5%;
}
body {
	font:300 11px/1.4 'Helvetica Neue', Helvetica, Arial, sans-serif;
	 font-family: "Saira", sans-serif;
	  font-optical-sizing: auto;
	  font-weight: 400;
	  font-style: normal;
	  font-variation-settings:
		"wdth" 100;
	color: #111;
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a {
	color:#1c3b76;
	text-decoration:none;
}
a:hover {
	color:#ff2a1c;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	border:1px solid #04A4CC;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	font-size: clamp(21px, 1.2vw, 48px);
}

main {
	margin-top: 5.5em;
}

article, .article {
	width: 90%;
	max-width: 60em;
	margin: 0 auto;
}

.single-post .aktuell_content {
	max-width: 54em;
	font-size: 0.8em;
	margin: 0 auto;
	padding: 3em 0;
}

/* header */
.header {
	background-color: #fff;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0);
box-shadow: 0 0 15px 0 rgba(0,0,0,0);
	transition: all 0.5s;
}

.header_inner {
	display: flex;
	justify-content: space-between;
	position: relative;
	align-items: flex-end;
}

.scrld .header {
	-webkit-box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
box-shadow: 0 0 15px 0 rgba(0,0,0,0.3);
}

/* logo */
.logo {
	height: 5.5em;
	padding: 0.75em 0;
	transition: all 0.5s;
}
.logo-img {
	height: 100%;
	width: auto;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
	transition: all 0.5s;
}

.scrld .logo {
	height: 3.5em;
	padding: 0.5em 0;
}

.scrld .logo-img {
	clip-path: polygon(0% 0%, 42% 0%, 42% 100%, 0% 100%);
}

/* nav */
.nav {

}

.nav ul {
	list-style: none;
	display: flex;
	gap: 2em;
	font-weight: 700;
	font-size: 0.9em;
	font-style: italic;
	margin: 0;
	padding: 0;
	
}

.nav > ul > li {
	position: relative;
}

.nav > ul > li > a {
	padding: 0.3em 0.15em;
	display: inline-block;
	position: relative;
}

.nav .sub-menu {
	position: absolute;
	display: flex;
	flex-direction: column;
	background-color: rgba(255,255,255,0.9);
	gap: 0;
	border-top: 3px solid #ff2a1c;
	left: 50%;
	transform: translateX(-50%);
	display: none;
}

.nav li:hover .sub-menu {
	display: inherit;
}

.nav .sub-menu a {
	display: block;
	text-align: center;
	max-width: 16em;
	padding: 0.5em 0.7em;
	font-weight: 500;
}

.nav > ul > .current-menu-item > a {
	color: #ff2a1c;
}


.menu_ico_ct {
	display: none;
}




.menu_ico_ct {
	display: inline-block;
	position: relative;
	cursor: pointer;
	background-color: rgba(255,255,255,0);
	padding: 0px;
	z-index: 10;
	transition: all 0.5s;
	display: none;
}

.menuopen .menu_ico_ct {
	background-color: rgba(255,255,255,0);
}



.menu_icon {
	position: relative;
	width: 40px;
	display: flex;
	flex-direction: column;
	height: 40px;
}

.menu_icon_line {
	width: 100%;
	height: 4px;
	background-color: #1c3b76;
	opacity: 1;
	transform-origin: center center;
	position: absolute;
	display: inline-block;
	transition: all 0.5s;
}

.menuopen .menu_icon_line {
	background-color: #ff2a1c;
}

.menu_ico_ct:hover .menu_icon_line {
	background-color: #ff2a1c;
}

.menu_icon .line1 {
	top: 5px;
}

.menu_icon .line2 {
	top: 15px;
}

.menu_icon .line3 {
	top: 25px;
}

.menuopen .menu_icon .line1 {
	-moz-transform: rotate(45deg);
-webkit-transform: rotate(45deg);
-o-transform: rotate(45deg);
-ms-transform: rotate(45deg);
transform: rotate(45deg);
	top: 50%;
}

.menuopen .menu_icon .line2 {
	opacity: 0;
}

.menuopen .menu_icon .line3 {
	-moz-transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
transform: rotate(-45deg);
	top: 50%;
}


/* header meta */
.header_meta {
	position: absolute;
	display: flex;
	top: 1em;
	right: 0;
	gap: 1em;
	transition: all 0.5s;
}

.scrld .header_meta {
	top: 0.5em;
	font-size: 0.7em;
}


/* footer */
.footer {
	background-color: #1c3b76;
	color: #fff;
	font-style: italic;
}

.footer_inner {
	display: flex;
	align-items: center;
	height: 3.5em;
	width: 90%;
	max-width: 72em;
	margin: 0 auto;
}

.footer .footer_cols {
	display: flex;
	justify-content: space-between;
	font-size: 0.8em;
	font-weight: 450;
	width: 100%;
}

.footer .footer_col {
	display: flex;
	align-items: center;
}

.footer_col.col2 a {
	margin-left: 1em;
}





.footer_logo {
	height: 2.5em;
	width: auto;
	margin-right: 0.75em;
}

.footer a {
	color: #fff;
}

.footer a:hover {
	color: #e7372c;
}


/*------------------------------------*\
    PAGES
\*------------------------------------*/


/* Home */

section.intro_section {
	background-color: #e7ebf2;
	min-height: calc(100vh - 5.5em);
	margin-top: 5.5em;
}

body:not(.home):not(.aktuelles) main {
	padding-top: 3em;
	/*padding-bottom: 3em;*/
}



.home section.intro_section {
	background-image: url(/wp-content/uploads/2026/01/bg1b.jpg);
	background-repeat: no-repeat;
	background-position: 60% 55%;
	background-size: auto 120%;
	color: #fff;
	display: flex;
	align-items: center;
	text-shadow: 0 0 1em #000000;
	position: relative;
}

.home section.intro_section > div {
	width: 100%;
}

.home section.intro_section::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 75%;
	left: 0;
	top: 0;
	background: #000000;
background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
}

.home section.intro_section article {
	width: 100%;
	position: relative;
	z-index: 3;
}

.home section.intro_section article > div {
	max-width: 55%;
	padding-top: 1em;
	padding-bottom: 6em;
}


.home_begr {
	border-bottom: 1px solid #1c3b76;
	position: relative;
}

.home_begr_left {
	display: flex;
	align-items: flex-end;
	justify-content: center;
}


.home_begr_sym {
	position: absolute;
	bottom: 1em;
	left: -7em;
}

.home_begr_sym img {
	height: 21em;
	width: auto;
}

.home_begr_prt {
	position: relative;
	z-index: 3;
}

.home_begr_prt img {
	height:17em;
	width: auto;
	margin-left: 10em;
}

.home_begr_right {
	padding-bottom: 6em;
}



/* Jobs */

.job_item {
	border-top: 2px solid #1c3b76;
	padding: 0.6em 0;
}

.job_item .job_datum {
	font-size: 0.8em;
	opacity: 0.7;
	display: inline-block;
	width: 6em;
}

.jobs_list_wrapper .job_item:last-of-type {
	border-bottom: 2px solid #1c3b76;
}

.job_repol {
	font-weight: 800;
	font-style: italic;
	display: inline-block;
}

.job_item h3 {
	margin: 0;
}

.job_item h3:hover {
	color: #ff2a1c;
}

.job_item .dl_wrapper {
	display: flex;
	gap: 1em;
	align-items: center;
	height: 100%;
	flex-shrink: 0;
}

.job_item .is-style-outline a {
	font-size: 0.75em;
	font-weight: 500;
}

.job_item .row2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.job_item .text_wrapper {
	display: flex;
	align-items: flex-end;
	gap: 0.6em;
	font-size: 0.9em;
	padding-left: 5.6em;
}

.job_item .zusatz {
	font-weight: 500;
	font-size: 0.86em;
	font-style: italic;
	display: inline-block;
	padding-bottom: 0.15em;
	opacity: 0.6;
}



/* PRT boxen */


.prt_boxen {
	font-size: 0.8em;
	gap: 3em;
}

.prt_boxen img {
	border-radius: 1em;
}


/* Inline Kontakt */

.inl_kontakt .inl_name {
	color: #1c3b76;
	font-weight: 800;
}

.inl_kontakt_tel a {
	text-decoration: none;
	font-size: 0.8em;
	color: #111;
}

.inl_kontakt_tel strong {
	font-weight: 600 !important;
}

.inl_kontakt_tel a:hover {
	color: #ff2a1c;
}

.inl_kontakt_tel a::after {
	content: '';
	width: 1.2em;
	height: 1.2em;
	border: 3px solid #ff2a1c;
	border-radius: 100%;
	margin-left: 0.5em;
	position: relative;
	top: 0.2em;
	display: inline-block;
	background-image: url(/wp-content/uploads/2026/01/rp_ico_phone.svg);
	background-repeat: no-repeat;
	background-size: auto 60%;
	background-position: center center;
}

.inl_kontakt .inl_kontakt_mail {
	font-size: 0.8em;
}

.inl_kontakt .inl_kontakt_mail a {
	color: #111 !important;
}

.inl_kontakt .inl_kontakt_mail a:hover {
	color: #ff2a1c !important;
}


/* verbandsgeschichte */

#verbandsgeschichte h3 {
	margin-bottom: 0;
	border-bottom: 3px solid #ff2a1c;
}

#verbandsgeschichte p {
	font-size: 0.86em;
}

#verbandsgeschichte p em {
	color: #ff2a1c;
}



/* polizeistellen */

#map_repol #wasser {
	pointer-events: none;
}

#map_repol > g {
	cursor: pointer;
}

#map_repol > g:hover g *, #map_repol > g.active g * {
	fill: #ff2a1c;
}


.pzs_item {
	display: none;
}


.pzs_head {
	display: flex;
	gap: 2em;
	border-bottom: 3px solid #1c3b76;
	margin-bottom: 1em;
	
}


.polizeistelle-image {
	width: 45%;
	padding-top: 1em;
}

.polizeistelle-image img {
	width: 100%;
}

.pzs_kontakt {
	display: flex;
	flex-direction: column;
	width: 55%;
}

.pzs_kontakt h3 {
	margin: 0.5em 0;
}

.pzs_kontakt .arrow_link strong {
	font-weight: 700;
}

.pzs_kontakt .inl_kontakt_tel a {
	color: #1c3b76;
	font-weight: 700;
	font-size: 1em;
}

.pzs_kontakt .inl_kontakt_tel a:hover {
	color: #ff2a1c;
}

.pzs_adresse {
	font-size: 0.8em;
	display: block;
}

.polizeistelle-details {
	font-size: 0.8em;
}

.input_suche_wrapper {
	position: relative;
}

#suche_gemeinde {
	border: none !important;
	outline: none !important;
	border-radius: 1em;
	font-size: 0.8em;
	font-weight: 700;
	font-style: italic;
	padding: 0.25em 1em;
	width: 100%;
	max-width: 24em;
	margin-bottom: 0.5em;
}

.autocomplete-suggestions {
    position: absolute;
    border: 1px solid #ddd;
    border-top: none;
    background: #fff;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.autocomplete-suggestion {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.autocomplete-suggestion:hover,
.autocomplete-suggestion.active {
    background-color: #0073aa;
    color: #fff;
}



/* Aktuelles */


.aktuelles_wrapper {
	padding-top: 2em;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3em;
}

.aktuelles-image img {
	aspect-ratio: 1.5;
	width: 100%;
	object-fit: cover;
	object-position: center center;
}

.aktuelles-content {
	font-size: 0.8em;
}

.aktuelles-datum {
	padding-top: 0.5em;
	font-size: 0.9em;
	opacity: 0.7;
}

.aktuelles-title {
	margin: 0.15em 0;
	padding-bottom: 0.4em;
}

.aktuelles-mehr {
	text-align: right;
}


/*------------------------------------*\
    IMAGES
\*------------------------------------*/

.img_break img {
	height: 35vw;
	object-fit: cover;
	width: 100%;	
}

.img_break_head img {
	height: 25vw;
	object-fit: cover;
	width: 100%;	
}

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/


h1 {
	font-size: 2.8em;
	line-height: 1.15;
	font-style: italic;
	font-weight: 800;
	margin: 0.2em 0;
}

.home h1 {
	white-space: nowrap;
}

h2, h3 {
	font-style: italic;
}

h2 {
	font-size: 2.1em;
	color: #1c3b76;
	line-height: 1.2;
	font-weight: 800;
}

h2 em {
	color: #ff2a1c;
}

.notfall h2 {
	color: #fff;
}

.notfall h2 em {
	color: #1c3b76;
}

.notfall h2 strong {
	color: #1c3b76;
	text-transform: uppercase;
	font-size: 0.35em;
	font-weight: 500;
	letter-spacing: 0.07em;
}


.notfallnummern {
	margin-bottom: 0;
}

.notfallnummern h2 {
	margin: 0.5em 0;
}

h3 {
	font-size: 1.6em;
	color: #1c3b76;
	line-height: 1.2;
	font-weight: 800;
}

h3 em {
	color: #ff2a1c;
}

.notfall h3 {
	margin-bottom: 0em;
}


article p a {
	color: #ff2a1c;
	text-decoration: underline;
}

article p a:hover {
	color: #1c3b76;
}

.txt_small {
	font-size: 0.8em;
}

.btn_login {
	border: 3px solid #ff2a1c;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 1.5em;
	color: #ff2a1c;
	border-radius: 1em;
	padding: 0 1.6em;
	position: relative;
	transition: all 0.5s;
	overflow: hidden;
}

.btn_login:hover {
	color: #fff;
}

.btn_login::before {
	content: '';
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0;
	background-color: #ff2a1c;
	border-radius: 1em;
	transition: all 0.5s;
}

.btn_login:hover::before {
	width: 100%;
}

.btn_login span {
	font-size: 0.7em;
	font-weight: 700;
	font-style: italic;
	display: inline-block;
	line-height: 1;
	margin-bottom: -0.1em;
	position: relative;
	z-index: 2;
}



.wp-block-button {
	display: contents;
	position: relative;
}

.wp-block-button__link {
	border: 3px solid #ff2a1c;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 1.6em;
	color: #fff;
	background-color: transparent;
	border-radius: 1em;
	padding: 0.1em 1.4em;
	position: relative;
	transition: all 0.5s;
	overflow: hidden;
	text-shadow: none !important;
	font-style: italic;
	font-size: 0.9em;
	font-weight: 600;
	letter-spacing: 0.06em;
	z-index: 2;
}


.is-style-outline .wp-block-button__link {
	color: #ff2a1c;
}


.wp-block-button__link:hover {
	color: #ff2a1c;
}

.is-style-outline .wp-block-button__link:hover {
	color: #fff;
}


.wp-block-button__link::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: #ff2a1c;
	z-index: -2;
}

.is-style-outline .wp-block-button__link::before {
	background-color: #fff;
}

.wp-block-button__link::after {
	content: '';
	position: absolute;
	width: 0%;
	height: 100%;
	left: 0;
	background-color: #fff;
	border-radius: 1em;
	transition: all 0.5s;
	z-index: -1;
}

.is-style-outline .wp-block-button__link::after {
	background-color: #ff2a1c;
}

.wp-block-button__link:hover::after {
	width: 100%;
}












.arrow_link {
	display: inline-block;
	margin: 0;
}

.arrow_link a {
	position: relative;
	color: #ff2a1c;
	display: flex;
	transition: all 0.5s;
	text-decoration: none;
}

.arrow_link.inline a {
	color: #1c3b76;
}

.arrow_link a:hover {
	color: #1c3b76;
}

.arrow_link strong {
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.arrow_link .arrow_ico {
	display: flex;
	width: 1.2em;
	height: 1.2em;
	border-radius: 100%;
	border: 3px solid #ff2a1c;
	background-color: rgba(255, 42, 28, 0);
	margin-left: 0.4em;
	position: relative;
	top: 0.1em;
	justify-content: center;
	align-items: center;
	transform: translateX(0em);
	transition: all 0.5s;
}

.arrow_link a:hover .arrow_ico {
	background-color: rgba(255, 42, 28, 1);
	transform: translateX(0.4em);
}

.arrow_link .arrow_ico::before {
	content: '';
	position: absolute;
	width: 0.55em;
	height: 0.12em;
	background-color: #ff2a1c;
	transition: all 0.5s;
}

.arrow_link a:hover .arrow_ico::before {
	background-color: #fff;
}

.arrow_link .arrow_ico::after {
	content: '';
	position: absolute;
	width: 0.35em;
	height: 0.35em;
	border-right: 0.12em solid #ff2a1c;
	border-bottom: 0.12em solid #ff2a1c;
	transform: translateX(0.05em) rotate(-45deg);
	transition: all 0.5s;
}

.arrow_link a:hover .arrow_ico::after {
	border-right: 0.12em solid #fff;
	border-bottom: 0.12em solid #fff;
}






.ql_box {
	gap: 1.4em;
	font-size: 0.8em;
}

.ql_box h3 {
	margin: 0;
	
}






/* Formulare */


#wpcf7-f686-p708-o1 {
	font-size: 0.8em;
}

.rp_form_wrapper p {
	display: contents;
}

.rp_form_wrapper .li_row {
	display: grid;
	grid-template-columns: 1fr 3fr;
	align-items: center;
}

.rp_form_wrapper .li_row.input_flex_col {
	align-items: flex-start;
}

.f_row {
	padding: 0.5em 0;
}

.f_infobox {
	background-color: #f9f0e4;
	padding: 0.5em 1em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0.25em 1.5em 0.25em 0em;
}

.wpcf7-list-item.first {
	margin-top: 0;
}

.input_flex_col .wpcf7-form-control {
	display: flex;
	flex-direction: column;
}


.wpcf7-list-item-label::before {
	content: "";
	position: relative;
	width: 1em;
	height: 1em;
	border: 1px solid;
	display: inline-block;
	margin-right: 0.25em;
	margin-bottom: -0.1em;
}

.wpcf7-list-item input[type="checkbox"], .wpcf7-list-item input[type="radio"] {
	display: none;
}

input[type="checkbox"]:checked + .wpcf7-list-item-label::before, input[type="radio"]:checked + .wpcf7-list-item-label::before {
	background-image: url(/wp-content/uploads/2026/01/rpag_ico_check.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.rp_form_wrapper input[type="text"] {
	border: none;
	outline: none;
	background-color: rgba(231, 235, 242, 0.5);
	border-bottom: 1px solid #1c3b76;
	width: 100%;
	padding: 0.2em 0.5em;
}

.rp_form_wrapper input[type="text"]:focus {
	border-bottom: 1px solid #ff2a1c;
	background-color: rgba(231, 235, 242, 0);
}

.wpcf7-spinner {
	position: absolute;
}

.wpcf7 form.sent .wpcf7-response-output {
	background-color: #65ae6c;
	border: none;
	padding: 1em;
	color: #fff;
	font-weight: 700;
	margin: 0;
}

.wpcf7-not-valid-tip {
	font-size: 0.8em;
	font-weight: 500;
}

.wpcf7-submit {
	border: 3px solid #ff2a1c;
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
	color: #ff2a1c;
	border-radius: 1em;
	padding: 0 1.6em;
	position: relative;
	transition: all 0.5s;
	overflow: hidden;
	background-color: #fff;
	font-weight: 700;
	font-style: italic;
	outline: none !important;
	-webkit-appearance: none !important;
}

.wpcf7-submit:hover {
	border: 3px solid #1c3b76;
	background-color: #1c3b76;
	color: #fff;
}






/*------------------------------------*\
    PAGE ANI
\*------------------------------------*/


@media only screen and (min-width : 782px)  {
	
	.anim {
		transition: all 1s;
	}
	
	.delay1 {
		transition-delay: 0.1s;
	}
	.delay2 {
		transition-delay: 0.2s;
	}
	.delay3 {
		transition-delay: 0.3s;
	}
	.delay4 {
		transition-delay: 0.4s;
	}
	.delay5 {
		transition-delay: 0.5s;
	}
	.delay6 {
		transition-delay: 0.6s;
	}
	.delay7 {
		transition-delay: 0.7s;
	}
	.delay8 {
		transition-delay: 0.8s;
	}
	.delay9 {
		transition-delay: 0.9s;
	}
	.delay10 {
		transition-delay: 1s;
	}
	
	.anim.from_left {
		opacity: 0;
		transform: translateX(-10%);
	}	
	.anim.from_left.inview {
		opacity: 1;
		transform: translateX(0%);
	}
	
	.anim.from_right {
		opacity: 0;
		transform: translateX(10%);
	}	
	.anim.from_right.inview {
		opacity: 1;
		transform: translateX(0%);
	}
	
	.anim.zoom_in {
		opacity: 0;
		transform: scale(0.7);
	}	
	.anim.zoom_in.inview {
		opacity: 1;
		transform: scale(1);
	}
	
	
	
	
}




/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (max-width:1400px) {
	
	.home section.intro_section article {
		width: 95%;
	}
	
	.lap_no {
		display: none !important;
	}
	

	
}



@media only screen and (max-width:1200px) {
	
	.header_inner {
		width: 100%;
		padding: 0 2.5%;
		align-items: center;
	}
	
	.menu_ico_ct {
		display: flex;
	}
	
	.menu_ct_wrapper {
		position: absolute;
		width: 100%;
		height: calc(100vh - 5em);
		overflow-y: auto;
		left: 0;
		top: 100%;
		z-index: 3;
		background-color: #fff;
		display: flex;
		flex-direction: column;
		padding-bottom: 4em;
		pointer-events: none;
		opacity: 0;
		border-bottom: 3px solid #1c3b76;
		transform: translateX(50%);
		transition: all 0.5s;
	}
	
	.menuopen .menu_ct_wrapper {
		opacity: 1;
		pointer-events: auto;
		transform: translateX(0%);
	}
	
	.header_meta {
		position: relative;
		justify-content: flex-end;
		padding: 1em 2.5%;
	}
	
	.nav ul {
		flex-direction: column;
		padding: 0 2.5%;
	}
	
	
	.nav .sub-menu {
		position: relative;
		background-color: transparent;
		gap: 0;
		border-top: none;
		left: auto;
		transform: none;
		display: inherit;
	}
	
	.nav .sub-menu a {
		text-align: left;
		max-width: max-content;
	}
	
	.header_meta, .scrld .header_meta {
		top: auto;
		font-size: unset;
	}
	
	.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column.notfall_wrapper {
		flex-basis: auto !important;
		margin: 0 auto !important;
	}
	
	.notfallnummern {
		display: contents !important;
	}
	
	.job_item .row2 {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.job_item .dl_wrapper {
		height: auto;
		width: 100%;
		justify-content: flex-start;
		padding-left: 5em;
		flex-wrap: wrap;
		gap: 0.5em;
		padding-top: 1em;
		padding-bottom: 1em;
	}
	
	.job_item .text_wrapper {
		padding-top: 1em;
	}
	
	.pzs_head {
		flex-direction: column-reverse;
	}
	
	.pzs_kontakt {
		width: 100%;
	}
	
	
	
}

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

	
	.home main {
		background-size: auto 20em;
		background-position: 100% 0;
		text-shadow: none;
		color: #1c3b76;
	}
	
	.home main::before {
		display: none;
	}
	
	.home h1 {
		white-space: normal;
	}	
	

	.home_begr {
		flex-direction: column-reverse;
	}

	.tab_no {
		display: none !important;
	}
	
	.tab_row {
		flex-direction: column;
	}
	
	.ql_box_wrapper {
		flex-direction: column;
	}
	
	.ql_box > div:first-of-type {
		flex-basis: 10em !important;
	}
	
	.home_begr_right {
		padding-bottom: 3em;
	}
	
	.home_begr_prt img {
		margin-left: 0;
	}
	
	.home_begr_sym {
		transform: translateX(-25%);
		left: auto;
	}
	
}


@media only screen and (max-width: 780px) {
	
	.mob_no {
		display: none;
	}
	
	.mob_reverse {
		flex-direction: column-reverse;
	}
	
	h1 {
		font-size: 2.4em;
	}
	
	main {
		margin-top: 4.5em;
	}
	
	.footer .footer_cols {
		flex-direction: column-reverse;
	}
	
	.footer .footer_col {
		justify-content: center;
	}
	
	.footer_inner {
		display: flex;
		height: auto;
		padding-bottom: 3em;
		padding-top: 3em;
	}
	
	.footer_col.col2 {
		padding-bottom: 3em;
	}
	
	.logo {
		height: 4.5em;
	}
	
	.home section.intro_section {
		margin-top: 4.5em;
		min-height: unset;
		height: auto;
		background-color: #e7ebf2;
		background-position: right top;
		background-size: auto 20em;
		text-shadow: none;
		color: #1c3b76;
	}
	
	.home section.intro_section::before {
		display: none;
	}
	
	.home section.intro_section article {
		padding-top: 21em;
	}

	.home section.intro_section article > div {
		max-width:100%;
		padding-bottom: 3em;
	}
	
	.img_break img {
		height: 60vw;
	}
	
	 {
		flex-basis: auto !important;
	}
	
	.wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column.repol_map_col {
		flex-basis: auto !important;
		height: 25em;
	}
	
	.aktuelles_wrapper {
		grid-template-columns:  1fr;
		gap: 4em;
	}
	
	
	
}

@media only screen and (max-width: 600px) {
	
	
	h1 {
		font-size: 2.1em;
	}
	
	h2 {
		font-size: 1.8em;
	}
	
	h3 {
		font-size: 1.4em;
	}
	
	
	.logo {
		height: 5em;
	}
	
	main {
		margin-top: 5em;
	}
	
	.ql_box > div:first-of-type {
		flex-basis: 6em !important;
	}
	
	.job_row.row1 {
		display: flex;
		flex-direction: column;
	}
	
	.job_item .text_wrapper {
		padding-left: 0;
	}
	
	.job_item .dl_wrapper {
		padding-left: 0;
	}
	
	.job_repol {
		margin-top: 0.25em;
	}
	
	.job_item .text_wrapper {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.rp_form_wrapper .li_row {
		grid-template-columns: 1fr;
	}
	
	.home section.intro_section {
		background-position: 83% top;
	}
	
	.img_break_head img {
		height: 50vw;
	}
	
}


/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
.sticky {

}
.bypostauthor {

}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@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;
	}
}
