/********************
*      Modules      *
********************/
section{
	position: relative;
	width:100%;
	/* margin-bottom:50px; */
}

.opacity_0{
	opacity: 0;
}

.display_none{
	display:none !important;
}

.rsUni, .rsUni .rsOverflow, .rsUni .rsSlide, .rsUni .rsVideoFrameHolder, .rsUni .rsThumbs{
	background:transparent !important;
}

.rsBullets{
	position:absolute !important;
	bottom:0 !important;
}

/* link / button */
.button{
	padding: 13px;
	cursor:pointer;
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

.button.primary{
	background-color:var(--primarbutton_background_color);
	color: var(--primarbutton_font_color);
}

.button.primary svg {
	fill: var(--primarbutton_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.button.primary:hover {
	background-color:var(--primarbutton_hover_background_color);
	color:var(--primarbutton_hover_font_color);
}

.button.primary:hover svg {
	fill: var(--primarbutton_hover_font_color);
}

.button.secondary{
	/* background-color:var(--sekundarbutton_background_color); */
	border: 2px solid var(--sekundarbutton_hover_background_color);
	color:var(--sekundarbutton_font_color);
}

.button.secondary svg {
	fill: var(--sekundarbutton_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.button.secondary:hover {
	background-color:var(--sekundarbutton_hover_background_color);
	color:var(--sekundarbutton_hover_font_color);
}

.button.secondary:hover svg {
	fill: var(--sekundarbutton_hover_font_color);
}

.button.secondary {
	display: inline-block;
}

.link * {
	cursor:pointer;
	-webkit-transition: color .4s, background .4s;
	-moz-transition: color .4s, background .4s;
	-ms-transition: color .4s, background .4s;
	-o-transition: color .4s, background .4s;
	transition: color .4s, background .4s;
}

.link {
	border-radius: none;
	padding: 0;
	background: transparent;
	font-weight: 700;
	position: relative;
}

.link:after {
	content: '';
	height: 2px;
	width: 0;
	position: absolute;
	left: 0;
	bottom: -6px;
	opacity: 0;
	transition: opacity .4s ease-in-out, width .4s ease-in-out;
}

.link.primary:after {
	background: var(--primarlink_font_color);
}

.link.secondary:after {
	background: var(--sekundarlink_font_color);
}

.link:hover:after {
	width: calc(100% - 2px);
	opacity: 1;
}

.link.primary * {
	color:var(--primarlink_font_color);
}

.link.primary svg {
	fill: #3f565f;
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.link.primary:hover * {
	color:var(--primarlink_hover_font_color);
}

.link.primary:hover svg {
	fill: var(--primarlink_hover_font_color);
}

.link.secondary{
	color:var(--sekundarlink_font_color);
}

.link.secondary svg {
	fill: var(--sekundarlink_font_color);
	-webkit-transition: fill .4s;
	-moz-transition: fill .4s;
	-ms-transition: fill .4s;
	-o-transition: fill .4s;
	transition: fill .4s;
}

.link.secondary:hover{
	color:var(--sekundarlink_hover_font_color);
}

.link.secondary:hover svg {
	fill: var(--sekundarlink_hover_font_color);
}
/* end link / button */



/* form */

.wpcf7 form .wpcf7-not-valid-tip{
	margin-top: 5px;
    position: relative;
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
    margin-bottom:0;
}

.wpcf7 form .wpcf7-response-output{
    position: relative;
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 5px;
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
    margin:0;
    margin-top:10px;
}

.wpcf7 form.sent .wpcf7-response-output{
	color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

.wpcf7-form{
	display:table;
	width:100%;
}

:-ms-input-placeholder,
::-ms-input-placeholder{
	color:gray;
}

.wpcf7-form *::placeholder{
	color:gray;
}

.form_item{
	display: flex;
    flex-direction: column;
    margin-bottom:20px;
}

.form_container{
	display:flex;
	gap:0 20px;
}

.form_item,
.wpcf7-form-control{
	width:100%;
}

.wpcf7-form-control{
	padding:5px 15px;
	border-radius: 5px;
	border: 1px solid #000;
}

.wpcf7-form-control.wpcf7-select{
	padding: 8.5px 15px;
}

.form_item [data-name="ihr_anliegen"] .wpcf7-not-valid-tip{
	margin-top:-5px;
}

.form_submit{
	position: relative;
}

.wpcf7-form .form_submit .wpcf7-spinner{
	    margin: 0;
    left: calc(50% - 12px);
	top: calc(50% - 12px);
    position: absolute;
}

.wpcf7-acceptance .wpcf7-list-item{
	margin:0;
}

.wpcf7-acceptance{
	padding:0;
	border:none;
}


@media screen and (max-width: 768px) {
	.form_container{
	    flex-direction: column;
	}
}

/* end form */




/************************************************************************************************************************************/

/********************
*       Fonts       *
********************/

@font-face {
	font-family: "Bristone";
	src: url("../fonts/Bristone.ttf") format("truetype"),
		 url("../fonts/Bristone.otf") format("opentype");
	font-weight: 400;
}

@font-face {
	font-family: "Bristone";
	src: url("../fonts/Bristone_Medium.ttf") format("truetype"),
		 url("../fonts/Bristone_Medium.otf") format("opentype");
	font-weight: 500;
}

@font-face {
	font-family: "Bristone";
	src: url("../fonts/Bristone_Bold.ttf") format("truetype"),
		 url("../fonts/Bristone_Bold.otf") format("opentype");
	font-weight: 700;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter_24pt-Light.ttf") format("truetype");
	font-weight: 300;
}

@font-face {
	font-family: "Inter";
	src: url("../fonts/Inter_24pt-Bold.ttf") format("truetype");
	font-weight: 700;
}

/************************************************************************************************************************************/

/****************************
*       Custom Styles       *
****************************/

html, body{
	font-family: "Inter", sans-serif;
	font-weight: 300;
	font-style: normal;
	font-size: var(--font_size);
	background-color: var(--background_color);
	overflow-x: hidden;
}

*{
	color:var(--font_color);
}

a, a:focus, a:hover, a:active, a:visited {
	color: inherit;
	text-decoration: none;
	outline: none;
}

h1 {
	font-family: "Bristone", sans-serif;
	font-weight: 500;
	font-style: normal;
}

h2,
h3,
h4,
h5,
h6 {
	font-family: "Bristone", sans-serif;
	font-weight: 500;
	font-style: normal;
}

h1,
h2 {
	font-size: 2.647rem;
	line-height: 1.3;
}

h3 {
	font-size: 2.059rem;
}

h4 {
	font-size: 1.3rem;
}

strong {
	font-weight: 700;
}

img,
svg {
	max-width: 100%;
	width:100%;
	height: auto;
}

img.fullwidth {
	width: 100%;
}

img.coverimg {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	font-family: 'object-fit: cover; object-position: center;';
}

.overflow_y_hidden{
	overflow-y: hidden !important;
}

.wpgmza-filter-widgets {
	display: none !important;
}

.hausregeln_hl {
	margin-top: 45px;
}

[data-innerer-abstand="innerer_abstand_oben_und_unten"]{
	padding-top:56px;
	padding-bottom:56px;
}

[data-innerer-abstand="innerer_abstand_nur_oben"]{
	padding-top:56px;
	padding-bottom:0;
}

[data-innerer-abstand="innerer_abstand_nur_unten"]{
	padding-top:0;
	padding-bottom:56px;
}

[data-auserer-abstand="auserer_abstand_oben_und_unten"]{
	margin-top:56px;
	margin-bottom:56px;
}

[data-auserer-abstand="auserer_abstand_nur_oben"]{
	margin-top:56px;
	margin-bottom:0;
}

[data-auserer-abstand="auserer_abstand_nur_unten"]{
	margin-top:0;
	margin-bottom:56px;
}

.container[data-ausrichtung="links"]{
	margin-left:0;
}

.container[data-ausrichtung="rechts"]{
	margin-right:0;
}

.container[data-ausrichtung="zentriert_ausfuellung_rechts"]{
	margin-right:0;
}

.container[data-ausrichtung="zentriert_ausfuellung_links"]{
	margin-left:0;
}

.container[data-container="container_full"] {
	max-width: 100%;
	padding-left:0;
	padding-right:0;
}

.container[data-container="container_full"] .row {
	margin-left:0;
	margin-right:0;
}

[data-appearance="fade"]{
	opacity:0;
}

.gt_float_switcher .gt_options a {
	color: #403759 !important;
	transition: color .4s, background .4s !important;
}

.gt_float_switcher .gt_options a:hover {
	background: #e682a0 !important;
	color: #fff !important;
}

.gtranslate_wrapper > #gt_float_wrapper {
	top: 0 !important;
	right: 19px !important;
}

.gtranslate_wrapper > #gt_float_wrapper * {
	font-size: 1rem !important;
}

.gt_float_switcher img {
	width: 25px !important;
}

.gt_float_switcher {
	border-radius: 0 0 10px 10px !important;
	/* box-shadow: 0px 5px 25px 5px rgba(0,0,0,0.2) !important; */
	box-shadow: none !important;
}

.VIpgJd-ZVi9od-aZ2wEe-wOHMyf.VIpgJd-ZVi9od-aZ2wEe-wOHMyf-ti6hGc {
	display: none !important;
}

.gtranslate_wrapper > #gt_float_wrapper {
	position: fixed !important;
	z-index: 99999999999 !important;
}

@media screen and (max-width: 991px) {
	h1,
	h2 {
		font-size: 1.347rem;
	}
	
	h3 {
		font-size: 1.159rem;
	}
	
	h4 {
		font-size: 1rem;
	}
	
	.bpFab {
		bottom: .5rem !important;
		right: .5rem !important;
	}
}

/* Footer */

footer {
	background: #093749;
	position: relative;
	padding: 45px 0 36px 0;
	border-radius: 10px 10px 0 0;
}

footer .footer_copyright_text,
footer .footer_copyright_text *,
footer .footer_copyright_text span,
footer .footer_copyright_text span *,
footer .footer_developed_by_text,
footer .footer_developed_by_text * {
	color: #fff;
	margin-bottom: 0;
}

footer .footer_developed_by_text a {
	text-decoration: underline;
	transition: text-decoration .4s;
}

footer .footer_developed_by_text a:hover {
	text-decoration: none;
}

footer nav ul {
	padding-left: 0;
	list-style: none;
	display: flex;
	justify-content: center;
	margin: 0;
}

footer nav ul .menu-item {
	position: relative;
	margin: 0 9px;
}

footer nav ul .menu-item a,
footer nav ul .menu-item a * {
	color: #fff;
	transition: color .4s;
}

footer nav ul .menu-item a:hover,
footer nav ul .menu-item a:hover * {
	color: #3f565f;
}

footer nav ul .menu-item:not(:last-child) {
	margin-right: 14px;
}

footer nav ul .menu-item:not(:last-child):after {
	content: "-";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -14px;
	color: #fff;
}

footer .footer_container_right {
	display: flex;
	justify-content: flex-end;
}

.footer_scroll_up {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 160px;
}

.footer_scroll_up .footer_scroll_up_button {
	width: 39px;
	height: 39px;
	position: relative;
	background: #fff;
	border-radius: 7px;
	transition: background .4s;
	cursor: pointer;
}

.footer_scroll_up .footer_scroll_up_button:hover {
	background: #d15d22;
}

.footer_scroll_up .footer_scroll_up_button svg {
	width: 9px;
	fill: #093749;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50% , -50%) rotate(180deg);
	transition: fill .4s;
}

.footer_scroll_up .footer_scroll_up_button:hover svg {
	fill: #fff;
}

footer .menu-item:first-child {
	margin-left: 0;
}

footer .menu-item.current-menu-item a {
	color: #d15d22;
}

@media screen and (max-width: 1730px) {
	.footer_scroll_up {
		right: 60px;
	}
}

@media screen and (max-width: 1530px) {
	.footer_scroll_up {
		right: 10px;
	}
}

@media screen and (max-width: 1240px) {
	footer > .container > .row {
		gap: 17px;
	}
	
	footer .footer_container_left,
	footer .footer_container_middle,
	footer .footer_container_right {
		width: 100%;
		display: flex;
		justify-content: flex-start;
	}
	
	footer .footer_container_middle {
		order: 1;
	}
	
	footer .footer_container_left {
		order: 2;
	}
	
	footer .footer_container_right {
		order: 3;
	}
	
	.footer_scroll_up {
		right: 30px;
		top: 42px;
		transform: unset;
	}
}

@media screen and (max-width: 575px) {
	footer .menu-footer-menue-container ul {
		flex-direction: column;
	}
	
	footer .menu-footer-menue-container ul li {
		margin: 0;
	}
	
	footer .menu-footer-menue-container ul li:after {
		display: none;
	}
}

/**********/