@charset "UTF-8";
/* CSS Document */



/* kaushan-script-regular - latin */
@font-face {
  font-family: 'Kaushan Script';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/kaushan-script-v8-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Kaushan Script'), local('KaushanScript-Regular'),
       url('../fonts/kaushan-script-v8-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/kaushan-script-v8-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/kaushan-script-v8-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/kaushan-script-v8-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/kaushan-script-v8-latin-regular.svg#KaushanScript') format('svg'); /* Legacy iOS */
}

/* roboto-300 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/roboto-v20-latin-300.eot'); /* IE9 Compat Modes */
  src: local('Roboto Light'), local('Roboto-Light'),
       url('../fonts/roboto-v20-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-300.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/roboto-v20-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('Roboto'), local('Roboto-Regular'),
       url('../fonts/roboto-v20-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
/* roboto-500 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/roboto-v20-latin-500.eot'); /* IE9 Compat Modes */
  src: local('Roboto Medium'), local('Roboto-Medium'),
       url('../fonts/roboto-v20-latin-500.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/roboto-v20-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/roboto-v20-latin-500.woff') format('woff'), /* Modern Browsers */
       url('../fonts/roboto-v20-latin-500.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/roboto-v20-latin-500.svg#Roboto') format('svg'); /* Legacy iOS */
}

input:not([type="radio"]):not([type="checkbox"]) textarea, select{
	-webkit-appearance:none;
	appearance:none;
}

select, option{
	-webkit-appearance:none;
	-o-appearance:none;
	-moz-appearance:none;
	-ms-appearance:none;
}

.btn{cursor:pointer;}

* {
	margin:0;
	padding:0;
	border:0;
	outline:none;
	-webkit-appaerance: none;
	-webkit-text-adjust: none;
	box-sizing:border-box;
}

::selection {
	background:#000;
	color:#fff;
}

::-moz-selection {
	background:#000;
	color:#fff;
}

html {
	background:#fff;
}

body {
	 width: 100%;
	height: 100%;
    color: #333;
    font: 16px/20px 'Roboto', sans-serif;
}

h1, .h1style {
    font: 500 50px/58px 'Roboto', sans-serif;
	color: #85143f;
	text-transform: uppercase;
}
h2, .h2style {
    font: 400 35px/43px 'Kaushan Script', sans-serif;
    margin: 0 0 20px;
    color: #484848;
	text-transform: uppercase;
}

h3, .h3style {
	font: 700 25px/33px 'Roboto', sans-serif;
    margin: 0;
    color: #454545;
	text-transform: uppercase;
}

p {
    margin: 0 0 20px 0;
    font: 300 16px/25px 'Roboto', sans-serif;
}
a {
    color: #454545;
    text-decoration: none;
    font: 500 16px/28px 'Roboto', sans-serif;
	text-transform: uppercase;
}

a:hover, a.selected {
	color: #85143f;
}
strong {
    font-weight: 900;
}
hr {
    width: 70%;
    border-top: 1px dashed #0096d7;
    border-bottom: none;
    border-left: none;
    border-right: none;
    margin: 25px auto;
}

hr.grau {
	border-top: 1px solid #ccc;
	width: 60%;
	margin: 15px auto;
}

hr.gruen {
	border-top: 1px solid #85143f;
	width: 40%;
	margin: 25px auto;
	position: relative;
	
}

hr.white {
	border-top: 1px solid #fff;
	width: 100%;
	margin: 15px auto;
	
}

hr.gruen:before {
	content: '4';
	background: #85143f;
	padding: 5px 10px;
	position: absolute;
	top: -15px;
	font-size: 12px;
	color: #fff;
	border-radius: 100px;
}

input:not([type="radio"]):not([type="checkbox"]), textarea, select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}
.centered {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}
.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack:  space-between;
    -ms-flex-pack:  space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.btn {
    background: #85143f;
    padding: 10px 25px;
    font: 400 16px/24px 'Roboto', sans-serif;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid #85143f;
    -webkit-transition: ease 300ms;
    transition: ease 300ms;
    display: inline-block;
}
.btn:hover {
    background: #fff;
    color: #85143f;
}

.block {
	width: 100%;
	height: auto;
	display: block;
	line-height: 0;
}

.hidden {
	display: none;
}

/*NAVIGATION*/

#logo {
	display: block;
	width: 100%;
	max-width: 50px;
	height: auto;
	padding: 15px 0;
}

nav {
	background: #454545;
	width: 100%;
	height: auto;
	position: fixed;
	z-index: 200;
	display: block;
	top: -150px;
	transition: 500ms;
}

nav.show {
	top: 0;
	transition: 500ms;
}

nav ul {
	list-style: none;
	margin: 0;
	position: relative;
	text-align: right;
}

nav ul li {
	display: inline-block;
}

nav ul li a {
	display: block;
	padding: 20px 15px;
	color: #fff;
}


.slider, .slider .eyecatcher {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
}

.slider {
	overflow: hidden;
	max-width: 1920px;
	margin: 0 auto;
}

.slider .eyecatcher button {
	display: none !important;
}

.slider .qlogo {
	position: absolute;
	top: 2%;
	left: 0;
	width: 100%;
	max-width: 180px;
	height: auto;
	margin: 0 auto;
	z-index: 103;
}

.slider .textbox {
	position: absolute;
	z-index: 101;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.slider .textbox p {
	position: absolute;
	z-index: 102;
	bottom: 8%;
	left: 0;
	right: 0;
	background: rgba(255,255,255,.75);
	padding: 25px;
	text-transform: uppercase;
	text-align: center;
	border-radius: 100px;
}

.slider .textbox p strong {
	display: block;
	font: 400 60px/68px 'Kaushan Script', sans-serif;
	text-transform: uppercase;
	color: #85143f;
}

.slider .textbox p span {
	font: 300 30px/38px 'Roboto', sans-serif;
}

.slider .textbox a {
	position: absolute;
	z-index: 102;
	bottom: 0;
	right: 0;
}


.stripe-headline {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	padding: 60px 0;
	background: #333;
	text-align: center;
}

.stripe-headline h2 {
	margin: 0;
	color: #fff;
}

.stripe-headline h3 {
	color: #ccc;
}

.intro, .outro  {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	padding: 100px 0;
	text-align: center;
}

.intro {
	background-image:url('../images/skizze.jpg');
	background-repeat: no-repeat;
	background-position: bottom -50px right -400px;
	background-size: 75%;
}

.intro .textbox, .intro .bildbox,
.outro .textbox, .outro .bildbox {
	width: 48%;
	text-align: left;
}

.intro .textbox, .intro .bildbox {
	padding: 60px 0 0;
}

.outro .flex {
	flex-direction: row-reverse;
}

.outro .bildbox {
	position: relative;
}

.outro .bildbox button {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 50px;
	height: 50px;
	overflow: hidden;
	text-indent: -9999px;
	z-index: 5;
	cursor: pointer;
	border-radius: 100%;
	background: rgba(200,200,200,.75);
	color: #fff;
	font-size: 30px;
	line-height: 40px;
	font-weight: 800;
	border: none;
}

.outro .bildbox button:after {
	content: "";
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	text-indent: 0;
	margin: -2px 0 0;
}

.outro .bildbox button.slick-prev::after {
    content: "‹";
}

.outro .bildbox button.slick-next::after {
    content: "›";
}

.outro .bildbox button.slick-next {
	right: 0;
}

.fakten {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	padding: 40px 0;
	background: #f3f2f3;
}


.fakten p {
	font: 700 30px/38px 'Roboto', sans-serif;
	text-transform: uppercase;
	text-align: center;
}

.fakten p span {
	display: block;
	color: #85143f;
	font-size: 40px;
	margin: 0 0 15px;
}

.fakten p strong {
	display: block;
	color: #85143f;
	font-size: 45px;
	padding: 10px 0 0;
}


.impressionen {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	padding: 40px 0 80px 0;
	background: #f6f6f6;
	text-align: center;
}

.impressionen hr.gruen::before {
	background: #f5f5f5;
}

.tabs {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
	padding: 60px 0 0;
}

.tabs .tab {
    display: none;
    order: 2;
    width: 100%;
    margin: 0 0 20px;
}

.tabs .tab.active, .tabs .tab.initactive {
    display: block;
}

.justified-gallery {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.tabnavi {
    display: flex !important;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    order: 1;
}

.tabnavi li {
	list-style: none;
    display: inline-block;
    padding-left: 0 !important;
    margin: 0 10px 0 0 !important;
}

.tabnavi li a {
    display: block;
    padding: 20px;
    text-align: center;
    color: #ffff;
    text-decoration: none;
    background: #85143f;
	border: 1px solid #85143f;
	transition: 300ms;
}

.tabnavi li a:hover,
.tabnavi li.active a {
	background: #f5f5f5;
	color: #85143f;
	border-radius: 100px;
}

.gallerie {
	padding: 40px 0 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.gallerie a {
	width: 100%;
	max-width: 390px;
	height: auto;
	margin: 10px 0;
}

.stripe {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	padding: 80px 0;
	background: #484848;
}

.stripe p {
	font: 700 30px/38px 'Roboto', sans-serif;
	color: #fff;
	margin: 0;
}

/*
.erd-red .stripe-headline {
	background: #a12648;
}

.erd-red .stripe-headline h3 {
	color: #ccc;
}*/

.wohneinheiten {
	width: 100%;
	height: auto;
	position: relative;
	padding: 100px 0;
	text-align: center;
}

.wohneinheiten .wohnung .wohnungstype {
	align-items: flex-end;
}

.wohneinheiten .wohnung .leftbox {
	width: 35%;
}

.wohneinheiten .wohnung .leftbox .h2style {
	border-top: 5px solid #a12648;
	border-bottom: 5px solid #a12648;
	padding: 15px 0;
	border-radius: 10px;
}

.wohneinheiten .wohnung .leftbox img {
	padding: 40px 0;
}

.wohneinheiten .wohnung .leftbox .beschreibung {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	padding: 25px;
	background: #a12648;
	text-align: left;
	color: #fff;
	border-radius: 10px;
}

.wohneinheiten .wohnung .leftbox .beschreibung .headline {
	font-size: 20px;
	text-transform: uppercase;
}

.wohneinheiten .wohnung .leftbox .beschreibung .gesamt {
	font-size: 16px;
	text-transform: uppercase;
	margin: 0;
}

.wohneinheiten .wohnung .rightbox {
	width: 55%;
}

.wohneinheiten .wohnung button {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    overflow: hidden;
    text-indent: -9999px;
    z-index: 5;
    cursor: pointer;
    border-radius: 100%;
    background: #ccc;
    color: #fff;
    font-size: 30px;
    line-height: 40px;
    font-weight: 800;
	border: none;
}

.wohneinheiten .wohnung button.slick-prev {
    left: -90px;
}

.wohneinheiten .wohnung button.slick-next {
    right: -90px;
}

.wohneinheiten .wohnung button::after {
    content: "";
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-indent: 0;
    margin: -2px 0 0;
}

.wohneinheiten .wohnung button.slick-prev::after {
    content: "‹";
}

.wohneinheiten .wohnung button.slick-next::after {
    content: "›";
}

.ober-gelb .stripe-headline {
	background: #f7a800;
}

.erstes-obergeschoss .wohneinheiten .wohnung .leftbox .h2style {
	border-top: 5px solid #f7a800;
	border-bottom: 5px solid #f7a800;
}

.erstes-obergeschoss .wohneinheiten .wohnung .leftbox .beschreibung {
	background: #f7a800;
}

.ober-gruen .stripe-headline {
	background: #85143f;
}

.zweites-obergeschoss .wohneinheiten .wohnung .leftbox .h2style {
	border-top: 5px solid #85143f;
	border-bottom: 5px solid #85143f;
}

.zweites-obergeschoss .wohneinheiten .wohnung .leftbox .beschreibung {
	background: #85143f;
}


.kontakt {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	padding: 100px 0;
	background: #f5f5f5;
}

.kontakt .flex {
	align-items: flex-start;
}

.kontakt .leftbox, .kontakt .rightbox {
	width: 50%;
}

.kontakt h3 strong {
	color: #85143f;
	text-transform: none;
}

.kontakt p strong {
	display: block;
}

.kontakt .kontaktdaten strong,
.kontakt p a:hover {
	color: #85143f;
}

.kontakt p a {
	font-weight: 300;
	text-transform: none;
}

.kontakt .rightbox input,
.kontakt .rightbox textarea {
	display: block;
	width: 100%;
	padding: 20px 15px;
	margin: 0 0 15px;
	border: none;
	background: #fff;
	font: 300 12px/22px 'Roboto', sans-serif;
}

.kontakt .rightbox .btn {
	display: block;
	background-color: #85143f;
	border: 1px solid #85143f;
	width: 100%;
	font: 400 16px/24px 'Roboto', sans-serif;
}

.kontakt .rightbox .btn:hover {
	background: #fff;
	color: #85143f;
	cursor: pointer;
}

.kontakt .rightbox .dsgvo {
	justify-content: flex-start;
	align-items: center;
}

.kontakt .rightbox .dsgvo input {
	width: 35px;
	margin: 0;
}*

footer {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
}

footer iframe {
	width: 100%;
	margin: 0;
	display: block;
	line-height: 0;
}

footer .bottom {
	background: #454545;
	width: 100%;
	height: auto;
	display: block;
	position: relative;
}

footer .bottom p {
	margin: 0;
	color: #fff;
}

footer .bottom ul {
	list-style: none;
	marign: 0;
}

footer .bottom ul li {
	display: inline-block;
}

footer .bottom ul li a {
	display: block;
	text-transform: uppercase;
	color: #fff;
	font-size: 14px;
	padding: 15px 10px;
	transition: 300ms;
}

footer .bottom ul li a:hover {
	color: #85143f; 
}

/************
BURGER MENU
***********/

.burger-icon {
	display: none;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 0;
	width: 45px;
	height: 45px;
	font-size: 0;
	text-indent: -9999px;
	appearance: none;
	box-shadow: none;
	border-radius:  none;
	border: none;
	cursor: pointer;
	transition: background 0.3s;
	right: 0;
	top: 5px;
	background-color: transparent;
}

.burger-icon span {
	display: block;
	position: absolute;
	top: 15px;
	left: 0;
	right: 0;
	height: 7px;
	background: #ccc;
}

.burger-icon span:before, .burger-icon span:after {
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	width: 100%;
	height: 7px;
	background: #ccc;
	content: '';
}

.burger-icon span:before {
	top: -15px;
}

.burger-icon span:after {
	bottom: -14px;
}

.burger-icon-x span {
	transition: background 0s 0.3s;
}

.burger-icon-x span:before, .burger-icon-x span:after {
	transition-duration: 0.3s, 0.3s;
	transition-delay: 0.3s, 0s;
}

.burger-icon-x span:before {
	transition-property: top, transform;
}

.burger-icon-x span:after {
	transition-property: bottom, transform;
}

.burger-icon-x.active span {
	background: none;
}

.burger-icon-x.active span:before {
	top: 0;
	transform: rotate(45deg);
}

.burger-icon-x.active span:after {
	bottom: 0;
	transform: rotate(-45deg);
}

.burger-icon-x.active span:before, .burger-icon-x.active span:after {
	transition-delay: 0s, 0.3s;
}

.wohneinheiten .wohnung .leftbox .btn.mobile {
	display: none;
}

@media only screen and (max-width:1200px) {
	.centered {
		padding: 0 10px;
	}
	
	.slider .textbox {
		left: 15px;
		right: 15px;
	}
	
	.slider .qlogo {
		max-width: 110px;
	}
	
	.intro{
		background-position: bottom 5% right -485px;
		background-size: 110%;
	}
	
	.outro {
		background-size: 160%;
		background-position: bottom left -155px;
	}
	
	.wohneinheiten .wohnung button.slick-next {
		position: absolute;
		top: unset;
		bottom: -70px;
		right: 0;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
	
	.wohneinheiten .wohnung button.slick-prev {
		left: 0;
		bottom: unset;
		top: unset;
		bottom: -70px;
	}
	
	.dsgvo .checkbox {
		font: 300 14px/25px 'Roboto', sans-serif;
	}
	
	nav ul li a {
		font: 500 14px/28px 'Roboto', sans-serif;
	}
	
	.gallerie a {
    	max-width: 320px;
	}
	
}

@media only screen and (max-width:1000px) {
	
	h1, .h1style {
    	font: 500 40px/48px 'Roboto', sans-serif;
	}
	
	h2, .h2style {
    	font: 400 30px/38px 'Roboto', sans-serif;
	}
	
	.burger-icon {
		display: block;
		padding: 10px;
	}
	
	.navi {
		display: block;
		position: absolute;
		z-index: -1;
		top: -450px;
		left: 0;
		right: 0;
		background: #484848;
		transition: 300ms;
	}
	
	.navi li {
		display: block;
		text-align: center;
	}
	
	.navi li a {
		padding: 10px 15px;
	}
	
	.navi.active {
		top: 70px;
	}
	
	.slider .btn.more, .wohneinheiten .wohnung .rightbox,
	.wohneinheiten .wohnung button {
		display: none !important;
	}
	
	.slider .textbox p strong {
		font: 400 40px/48px 'Kaushan Script', sans-serif;
	}
	
	.slider .textbox p span {
		font: 300 25px/33px 'Roboto', sans-serif;
	}
	
	.intro, .outro {
		padding: 50px 0;
		background: #fff;
	}
	
	.intro .flex, .outro .flex {
		flex-wrap: wrap;
	}
	
	.intro .textbox, .outro .textbox,
	.intro .bildbox, .outro .bildbox {
		width: 100%;
	}
	
	.intro .textbox {
		padding: 0 0 30px;
	}
	
	.fakten {
		padding: 40px 0;
	}
	
	.fakten p {
		font: 700 20px/28px 'Roboto', sans-serif;
		margin: 0;
	}
	
	.fakten p strong {
		font-size: 30px;
	}
	
	.stripe-headline {
		padding: 30px 0;
	}
	
	.wohneinheiten, .kontakt {
		padding: 50px 0;
	}
	
	.wohneinheiten .wohnung .leftbox, .kontakt .leftbox, .kontakt .rightbox {
		width: 75%;
		margin: 0 auto;
	}
	
	.wohneinheiten .wohnung .leftbox .btn.mobile {
		display: block;
		margin: 0 0 25px;
	}
	
	.erdgeschoss .wohneinheiten .wohnung .leftbox .btn.mobile {
		background: #a12648;
		border: 1px solid #a12648;
		color: #fff;
	}
	
	.erdgeschoss .wohneinheiten .wohnung .leftbox .btn.mobile:hover {
		background: #fff;
		color: #a12648;
	}
	
	.erstes-obergeschoss .wohneinheiten .wohnung .leftbox .btn.mobile {
		background: #f7a800;
		border: 1px solid #f7a800;
		color: #fff;
	}
	
	.erstes-obergeschoss .wohneinheiten .wohnung .leftbox .btn.mobile:hover {
		background: #fff;
		color: #f7a800;
	}
	
	.kontakt .leftbox {
		text-align: center;
		margin: 0 auto 25px;
	}
}

@media only screen and (max-width:720px) {
	
	h1, .h1style {
    	font: 500 35px/43px 'Roboto', sans-serif;
		margin: 0;
	}
	
	h2, .h2style {
    	font: 400 20px/28px 'Roboto', sans-serif;
	}
	
	hr.grau {
		width: 100%;
	}
	
	hr.gruen {
		width: 90%;
	}
	
	.slider .qlogo {
		display: none;
	}
	
	.slider .eyecatcher .sliderbox {
		height: 210px;
	}
	
	.slider .qlogo {
		top: -40px;
		left: -50px;
		width: 290px;
	}
	
	.slider .textbox {
		position: relative;
		background: #f5f5f5;
		left: 0;
    	right: 0;
	}
	
	.slider .textbox p {
		position: relative;
		text-align: center;
		background: transparent;
		font: 300 18px/26px 'Roboto', sans-serif;
		margin: 0;
	}
	
	.slider .textbox p strong {
		font: 500 30px/38px 'Roboto', sans-serif;
	}
	
	.slider .textbox p span {
		font: 300 18px/25px 'Roboto', sans-serif;
	}
	
	.intro, .outro {
		padding: 25px 0;
	}
	
	.intro .textbox, .outro .textbox {
		padding: 30px 0;
	}
	
	.fakten .flex, .kontakt .flex {
		flex-wrap: wrap;
	}
	
	.fakten, .impressionen {
		padding: 20px 0;
	}
	
	.fakten p {
		width: 100%;
		margin: 0 0 25px;
	}
	
	.fakten .faktenbox {
		padding: 0 0 40px;
		border-bottom: 1px solid #ccc;
	}
	
	.fakten p:last-of-type {
		padding: 0;
		border-bottom: none;
	}
	
	.wohneinheiten, .kontakt {
		padding: 25px 0;
	}
	
	.wohneinheiten .wohnung .leftbox, .kontakt .leftbox, .kontakt .rightbox {
		width: 100%;
	}
	
	.kontakt .rightbox .dsgvo {
		justify-content: space-between;
	}
	
	.dsgvo .checkbox {
		width: 90%;
	}
	
	.stripe {
		padding: 40px 0;
	}
	
	.stripe .flex {
		flex-wrap: wrap;
	}
	
	.stripe p {
		width: 100%;
		text-align: center;
		margin-bottom: 25px;
	}
	
	.stripe a {
		margin: 0 auto;
	}
	
	footer iframe {
		height: 300px;
	}
	
	footer .flex {
		flex-wrap: wrap;
	}
	
	footer .bottom {
		text-align: center;
		padding: 15px 0 0;
	}
	
	footer .bottom ul {
		margin: 0 auto;
	}
}
