:root {
	--blau: #255db8;
	--text: #111;
	--textvariante: #353747;
	--grau: #666;
	--border: #ddd;
	--bg: #fff;
}

html {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
	margin: 0;
	padding: 0;
}
body {
	line-height: 1.6;
	overflow-y: scroll;
	max-width: 100%;
	overflow-x: hidden;
	margin:0;
	padding: 0;
	height:100%;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	line-height:1.4em;
	letter-spacing: 0.2px;
	color: #111;
	font-family: 'Union', Arial, Helvetica Neue, Helvetica, sans-serif;
	transition: background 0.22s ease-in;
}
body.bg-f {
	background: #255db8;
	}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
a {
	text-decoration: none;
	color: inherit;
}
ul {
	list-style: none;
}
html {
	/*scrollbar-width: thin;
	*/
}
/* FONTS */
p, h1, h2, h3, h4 {
	margin: 0;
	font-weight: normal;
	margin-bottom: 1em;
}
@media (min-width: 768px) {
	body {
		font-size: 17.5px;
	}
}
p {
	font-family: 'Union', Arial, Helvetica Neue, Helvetica, sans-serif;
	font-size: 0.94em;
	line-height: 1.4em;
}
h1 {
	font-family: 'STKSaga', Times, Times New Roman, Georgia, serif;
	font-weight: 300;
	font-size: 2.1em;
	line-height: 1.05em;
	letter-spacing: 0.01em;
	text-shadow: 0px 0px 30px rgba(0,0,0,.15);
	margin-bottom: 2rem;
}
@media (min-width: 576px) {
	h1 {
		font-size: 2.5em;
	}
}
@media (min-width: 768px) {
	h1 {
		font-size: 2.8em;
	}
}
@media (min-width: 992px) {
	h1 {
		font-size: 3.0em;
	}
}
h2 {
	font-family: 'Union', Arial, Helvetica Neue, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 1.0em;
	line-height: 1.3em;
}
h3 {
	font-family: 'STKSaga', Times, Times New Roman, Georgia, serif;
	letter-spacing: 0px;
	font-size: 2.0em;
	line-height: 1.1em;
	font-weight: 200;
}
@media (min-width: 576px) {
	h3 {
		max-width: 71%;
	}
}
h4 {
	font-family: 'STKSaga', Times, Times New Roman, Georgia, serif;
	font-size: 1.06em;
	font-weight: 300;
	line-height: 1.3em;
}
@media (min-width: 768px) {
	.kompetenzen-list h4 {
		max-width: calc(100%)
}
}
.serif {
	font-family: 'STKSaga', Times, Times New Roman, Georgia, serif;
}
.sans {
	font-family: 'Union', Arial, Helvetica Neue, Helvetica, sans-serif;
}
/* FONTS END */
.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
img[loading="lazy"] {
	opacity: 0;
	transition: opacity 0.3s ease-in;
}
img[loading="lazy"]:not([src=""]) {
	opacity: 1;
}
/* QUERIES - LIST */
/* ≥ 480 px – small phones in landscape / budget devices */
@media (min-width: 480px) {
}
/* ≥ 640 px – large phones & tiny tablets (matches Tailwind sm) */
@media (min-width: 640px) {
}
/* ≥ 768 px – portrait tablets & folding phones (Bootstrap md / Tailwind md) */
@media (min-width: 768px) {
}
/* ≥ 1024 px – landscape tablets & 11-inch laptops (Tailwind lg) */
@media (min-width: 1024px) {
}
/* ≥ 1280 px – mainstream notebooks & small desktops (Tailwind xl) */
@media (min-width: 1280px) {
}
/* ≥ 1440 px – wide/ultra-wide laptops & standard desktop monitors */
@media (min-width: 1440px) {
}
/* ≥ 1920 px – Full-HD, 2K & 4K monitors */
@media (min-width: 1920px) {
}
nav ul li a,.hover-underline-par > span,.hover-underline {
	display: inline-block;
	position: relative;
}
nav ul li a::after,.hover-underline-par > span::after,.hover-underline::after {
	content: '';
	position: absolute;
	width: 100%;
	transform: scaleX(0);
	height: 2px;
	bottom: -0.1em;
	left: 0;
	background: #255db8;
	transition: transform 0.25s ease-out;
	transform-origin: bottom right;
}
nav ul li a:hover::after,.hover-underline-par:hover > span::after,.hover-underline:hover::after {
	transform: scaleX(1);
	transform-origin: bottom left;
}
.hover-underline-par:hover > span {
	color: #255db8 !important;
}
nav ul li a::after {
	bottom: -0.5em;
	background: #fff;
	background: rgba(255,255,255,0.8);
	opacity: 0;
	transition: transform 0.17s ease-out;
}
nav ul li a::after {
	opacity: 0;
}
nav ul li a:hover {
	opacity: 0.5;
}
nav ul li a.active:hover {
	opacity: 1;
}
/* ==========================================================================Utility & Button Classes========================================================================== */
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}
.button {
	display: inline-block;
	color: #fff;
	font-size: 1.35em;
	border: none;
	border: 1px solid #fff;
	border: 1px solid rgba(255,255,255,0.7);
	border-radius: 2em;
	cursor: pointer;
	transition: background 0.12s ease-out, color 0.12s ease-out;
	background: transparent;
	;
	background: rgba(250,250,250,0.1);
	backdrop-filter: blur(9px) saturate(1.3);
	background: white;
	color: initial;
	border: none;
	font-weight: 300;
}
.button:hover {
	transition: background 0.12s ease-in-out, color 0.12s ease-in-out;
}
.button-small {
	display: inline-block;
	background: transparent;
	border: 0.5px solid #255db8;
	padding: 0.4rem 0.8rem;
	font-size: 0.875rem;
	cursor: pointer;
	transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.button-small:hover {
	background: #255db8;
	color: #fff;
}
a.ico > svg, span.ico > svg {
	transform: translate(-0.2em, 0.33em);
	color: #255db8;
	max-width: 1.65rem;
	background: #ebf2fe;
	background: #fff;
	border-radius: 100%;
	padding: 0.22em;
	margin-bottom: -0.1em;
}
a.ico, span.ico {
	min-width: 1.55em;
	display: inline-block;
}
a.ico.mw6, span.ico.mw6 {
	min-width: 6.0em;
}
/* ==========================================================================1) HEADER========================================================================== */
header {
	background: #fff;
	width: 100%;
	overflow: hidden;
}

.blkr-logo {
	margin-right: auto;
}
.blkr-logo span {
	display: none;
}
.blkr-logo.anim {
	display: none;
}
.blkr-logo.old {
	display: block;
}
@media (min-width: 992px) {
	.blkr-logo.anim {
		display: flex;
	}
	.blkr-logo.old {
		display: none;
	}
	.blkr-logo span {
		display: inline-block;
		margin-left: 1.2em;
	}
}
/* Navigation */
nav {
	position: absolute;
	top: 41px;
	width: 100%;
	z-index: 9;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
}
nav a {
	color: inherit;
}
nav:before {
	content: ' ';
	position: fixed;
	top: -80px;
	width: 100%;
	height: 38.5px;
	background: transparent;
	left: 0;
}
nav {
	position: fixed;
	top: 0;
}
nav:before {
	transition: all 0.2s;
	top: 0;
	backdrop-filter: blur(17px) saturate(1.5);
	border-bottom: 0.5px solid #ddd;
}
nav.scrolled:before {
	background: rgba(255, 255, 255, 0.9);
}

nav a {
	color: inhreit;
}
nav ul {
	position: relative;
	display: flex;
	justify-content: flex-start;
	gap: 1.5rem;
	padding: 8px 18px 4px 18px;
	margin: auto;
	width: min-content;
	flex-wrap: nowrap;
	white-space: nowrap;
	width: 100%;
	animation: fadeIn .18s ease-in .01s 1;
	font-size: 0.89em;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
nav a {
	transition: color 0.2s ease-in-out;
}
nav ul li {
	flex: 0 0 auto;
}
.nav-indicator {
	position: absolute;
	bottom: 0px;
	height: 2px;
	background: #255db8;
	left: 0;
	width: 0;
	transition: left 0.2s ease, width 0.2s ease;
}
@media (min-width: 576px) {
	.nav-indicator {
		bottom: 4px;
	}
}
@media (min-width: 768px) {
	.nav-indicator {
		bottom: 0;
	}
}
nav ul li a.active {
	color: inherit;
	color: #255db8;
	padding-bottom: 4px;
	/* Abstand für Unterstreichung */
}
nav::-webkit-scrollbar {
	display: none;
}
nav {
	-ms-overflow-style: none;
	/* IE/Edge */
	scrollbar-width: none;
	/* Firefox */
}
nav ul li.last-nav-link {
	border: 0px solid transparent;
	border-width: 0 18px 0 0;
}
.lang-toggle {
	display: flex;
	padding-left: 0em;
	border-radius: 1.2em;
	
}
.lang-toggle > svg {
	fill: white;
	height: 1.8em;
	display: inline-block;
	transition: opacity 0.2 ease, color 0.2s, fill 0.2s, background 0.2s;
	display: none;
}
.lang-toggle > svg {
	fill: #255db8;
	transform: translate(0,0.05em);
	opacity: 0.5;
}
.lang-toggle > span.inactive {
	opacity: 0.35;	
}

.lang-toggle > span.inactive:before {
	display: block;
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	background: #ebf2fe;
	top: 0;
	left: 0;
	transform: scale(0);
	border-radius: 100%;
	transition: transform 0.15s ease;
	z-index: 1;
	mix-blend-mode: multiply;
}

.lang-toggle > span {
	position: relative;
	margin: 0;
	border-radius: 1em;
	overflow: hidden;
	height: 1.8em;
	width: 1.8em;
	text-align: center;
	padding: 0.1em;
	z-index: 3;
	transition: opacity 0.15s ease;
}
.lang-toggle:hover > svg {
	opacity: 1;
	}
.lang-toggle:hover > span {
	opacity: 0.35;
	}
.lang-toggle:hover {
	}
.lang-toggle:hover > span.inactive {
	color: #255db8;
	opacity: 1;
	}
.lang-toggle:hover > span.inactive:before {
	transform: scale(1);
	}
.lang-toggle:hover {
	opacity: 1;
	}
/* -------------------------2.2) Zweiteilige Bild-Section------------------------- */
.header-content {
	display: flex;
	width: 100%;
}

/* Jede Hälfte jeweils 50% Breite, 100% Höhe von .header-content */
.header-half {
	position: relative;
	height: 100%;
	overflow: hidden;
	padding: 1rem;
}
.left-half, .right-half {
	width: 50%;
}
/* Das Bild-Tag so skalieren, dass es die Hälfte komplett füllt */
.header-half img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	object-position: 50% 70%;
}
.header-half div:nth-child(1), .header-half div:nth-child(1) div {
	height: 100%;
}
.header-half.right-half {
	display: flex;
	flex-flow: column;
}
.header-half.right-half .overlay-text {
	order: 1;
	margin-top: 5em;
	padding: 0;
}
@media (min-width: 768px) {
	.header-half.right-half .overlay-text {
		margin-top: 12em;
	}
}
.header-half.right-half div:nth-child(1) {
	order: 2;
}
/* -------------------------2.3) Overlay-Text in der Mitte------------------------- */
.overlay-text {
	padding: 1rem 2rem;
	width: 85%;
}
@media (min-width: 768px) {
	.left-half .overlay-text {
	}
}
/* ========================================3) Responsive Anpassungen======================================== */
@media (max-width: 1024px) {
	/* Etwas niedrigere Höhe auf Tablets */
	#header, .header-content {
	}
	.overlay-text h1 {
	}
}
@media (max-width: 575px) {
	.nophone {
		display: none;
	}
}
@media (max-width: 767px) {
	.header-content {
		flex-direction: column;
		height: auto;
	}
	.left-half, .right-half {
		width: 100%;
	}
	.header-half {
		width: 100%;
	}
	.header-half.left-half {
		order: 2;
	}
	.header-half.right-half {
		order: 1;
	}
	.header-half.right-half img {
		max-height: 500px;
	}
	.header-half.left-half img {
		object-position: 50% 33%;
	}
	.header-half.left-half {
		display: flex;
		flex-direction: column;
		margin: 0;
	}
	.header-half.left-half img {
		order: 2;
		max-height: 200px;
	}
	.header-half.left-half div {
		order: 1;
		margin-bottom: 2rem;
	}
	.header-nav {
	}
	.header-nav .nav-links {
		gap: 1rem;
	}
}
@media (min-width:768px) and (max-width: 1024px) {
	/* Etwas niedrigere Höhe auf Tablets */
	#header, .header-content {
	}
}
/* Hero Section */
.hero {
	position: relative;
	width: 100%;
	display: flex;
}
.hero img {
	width: 100%;
	height: auto;
	object-fit: cover;
	max-height: 60vh;
}
.hero-text {
	top: 50%;
	left: 50%;
	text-align: center;
	color: #fff;
	background: rgba(0, 0, 0, 0.4);
	padding: 1.5rem 2rem;
}
/* ==========================================================================Sections (Common Styles)========================================================================== */
section, footer {
	padding: 40px 18px;
}
section h2, footer h2 {
	text-align: left;
}
section > div {
	max-width: 1000px;
}
section > div, nav ul {
	margin: auto;
	text-align: left;
}
/* ==========================================================================2) KANZLEI (ABOUT)========================================================================== */
#kanzlei {
	background: #fff;
	overflow: hidden;
}
#kanzlei > div {
	display: flex;
	flex-flow: column;
}
#kanzlei img {
	display: block;
	max-width: 300px;
	max-width: 100%;
	max-height: 450px; 	
	object-fit: cover;
}
@media (max-width: 575px) {
	#kanzlei img {
		transform: translateY(-2em);
	}
}
#kanzlei * {
	order: 3;
}
#kanzlei > div > h3 {
	max-width: 590px; 
	padding-bottom: 1em;
	order: 1;
	padding-right: 1em;
}
#kanzlei h2 {
	order: 2;
}
#kanzlei img {
	order: 3;
	margin-left: auto;
	margin-right: 0;
}
	#kanzlei > div > img {
		width: 50%;
	}

@media (min-width: 768px) {
#kanzlei > div > h3 {
	width: 69.5%;
		}
	#kanzlei {
	}
	#kanzlei > div {
		display: flex;
	flex-flow: row;
	}
	#kanzlei > div > * {
		max-width: 400px;
	}
	#kanzlei > div > img {
		width: 30.5%;
		margin-top: 6em;
	}
}
/* ==========================================================================3) KOMPETENZEN (COMPETENCIES)========================================================================== */
#kompetenzen {
	background: #fff;
}
#kompetenzen .kompetenzen-list {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	/* smooth inertial scrolling on iOS */
	gap: 0rem;
	padding: 1rem;
}
/* each LI becomes 80% of the viewport and snaps to start */
#kompetenzen .kompetenzen-list li {
	flex: 0 0 85%;
	/* width = 80% of viewport */
	scroll-snap-align: start;
	margin: 0;
	/* remove vertical spacing */
	border-bottom: none;
	/* optional: remove bottom border on mobile */
	padding: 1rem;
	display: flex;
}
#kompetenzen .kompetenzen-list li div {
	display: block;
	padding: 1.5rem;
	border: 0.5px solid #ddd;
	border-radius: 1rem;
}
/* give a little breathing room after the last slide */
#kompetenzen .kompetenzen-list li:last-child {
	margin-right: 1rem;
}
#kompetenzen .kompetenzen-list li:first-child {
	padding-left: 18px;
}
/* hide the scrollbar if you like */
#kompetenzen .kompetenzen-list::-webkit-scrollbar {
	display: none;
}
#kompetenzen .kompetenzen-list {
	-ms-overflow-style: none;
	/* IE/Edge */
	scrollbar-width: none;
	/* Firefox */
}
#kompetenzen .button-small {
	display: none;
}
#kompetenzen .left-half {
	padding: 0 18px
}
@media (max-width: 575px) {
	#kompetenzen .kompetenzen-list {
		margin-left: -18px;
		width: calc(100% + 36px);
		padding-top: 0;
	}
	#kompetenzen .kompetenzen-list p {
		hyphens: auto;
		min-width: 80%;
	}
	#kompetenzen .kompetenzen-list li:first-child {
		padding-left: 36px;
	}
	#kompetenzen .kompetenzen-list li {
		padding-top: 0px;
	}
	#kanzlei {
		padding-bottom: 0px;
		}
	#kompetenzen {
		padding-left: 0px;
		}
	#header .left-half {
		margin-top: 0 !IMPORTANT;
		}
	.header-half.left-half img {
        max-height: 280px;
    	}
}
@media (min-width: 576px) {
	#kompetenzen .left-half {
		width: 100%
}
	#kompetenzen {
	}
	#kompetenzen .left-half {
		padding: 0 0px
}
	#kompetenzen .kompetenzen-list {
		display: block;
		padding: 0;
	}
	#kompetenzen .kompetenzen-list li {
		padding: 0;
		border: none;
		border-radius: 0;
		border-bottom: 1px solid #ddd;
		margin-top: 1rem;
	}
	#kompetenzen .kompetenzen-list li:last-child {
		margin-right: 0;
	}
	#kompetenzen .kompetenzen-list li:first-child {
		padding-left: 0rem;
	}
	#kompetenzen .kompetenzen-list li div {
		display: block;
		padding: 0;
		border: none;
		border-radius: 0;
	}
	#kompetenzen .kompetenzen-list h3 {
	}
	#kompetenzen .kompetenzen-list p {
	}
	#kompetenzen .kompetenzen-list li p {
		max-height: 1px;
		overflow: hidden;
		padding-top: 0em;
		padding-bottom: 0em;
		padding-right: 0em;
		hyphens: auto;
		transition: height 0.2s ease, padding 0.4s ease, overflow 0.2s ease, opacity 0.2s ease;
		opacity: 0;
		transform: translateY(0.5em);
	}
	#kompetenzen .kompetenzen-list li.open p {
		opacity: 1;
		transition: height 0.4s ease, padding 0.4s ease, overflow 0.2s ease, opacity 0.4s ease;
		max-height: 1500px;
		transform: translateY(0em);
		padding-top: 0.8em;
	}
	#kompetenzen .button-small {
		display: inline-block;
		border-radius: 3rem;
		padding: 0.5rem 2.2rem 0.5rem 1rem;
		position: relative;
		transition: all 0.2s;
		width: 9.2em;
	}
	#kompetenzen .button-small:before,#kompetenzen .button-small:after {
		content: "";
		position: absolute;
		right: 0.7em;
		top: 51%;
		width: 1.25em;
		/* full width of icon */
		height: 0.15em;
		/* thickness of bar */
		background: #255db8;
		/* bar color */
		transform-origin: center;
		transition:transform 0.3s ease,opacity 0.2s ease,background 0.4s;
	}
	#kompetenzen .button-small:hover:before,#kompetenzen .button-small:hover:after {
		background: #fff;
	}
	#kompetenzen .button-small:before {
		transform: translateY(-50%) rotate(0deg);
	}
	#kompetenzen .button-small:after {
		transform: translateY(-50%) rotate(90deg);
	}
	#kompetenzen .open .button-small:after {
		content: '';
	}
	#kompetenzen .open .button-small::before {
		opacity: 0;
		transform: translateY(-50%) scaleX(0);
	}
	/* rotate the vertical into a horizontal */
	#kompetenzen .open .button-small::after {
		transform: translateY(-50%) rotate(0deg);
	}
}
#kompetenzen h3, #kompetenzen h2 {
	display: block;
	width: 100%;
}
@media (min-width: 768px) {
	nav {
		position: absolute;
		top: 41px;
	}
	nav a {
	}
	nav {
		position: fixed;
		top: 0;
	}
	nav:before {
		content: ' ';
		position: fixed;
		top: -80px;
		width: 100%;
		height: 44px;
		background: transparent;
		transition: all 0.1s;
		left: 0;
		top: 0;
		backdrop-filter: blur(17px) saturate(1.5);
		-webkit-backdrop-filter: blur(17px) saturate(1.5);
		border-bottom: 0.5px solid transparent;

	}
	nav.scrolled:before {
		background: rgba(255, 255, 255, 0.85);
		border-bottom: 0.5px solid #fafafa;
	}
	nav a {
		color: inherit;
	}
	.blkr-logo {
	}
	#kompetenzen {
	}
	#kompetenzen h3, #kompetenzen h2 {
		display: block;
		width: 100%;
	}
	#kompetenzen > div {
		gap: 2rem;
	}
	#kompetenzen li {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#kompetenzen .button-small {
		align-self: center;
		display: none;
	}
	#kompetenzen .button-small {
	}
}
/* ==========================================================================4) TEAM (OUR ATTORNEYS)========================================================================== */
#team {
	background: #fff;
}
.team-gallery {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
	margin: 0 auto;
}
.team-member {
	margin-bottom: 0.4em;
}
.team-member img {
	width: 100%;
	height: auto;
	object-fit: cover;
	aspect-ratio: 5 / 7;
}
.team-member p, .small-txt {
	font-weight: 300;
	line-height: 1.1em;
}
.small-txt {
	font-size: 0.8em;
}

@media (min-width: 768px) {

	.team-member p {
		font-size: 0.8em;
	}

}

.team-member p {
	margin-top: 0em;
	margin-bottom: 0.5em;
	padding-bottom: 0.5em;
}
.team-member p .ico {
	position: absolute;
	margin-top: -0.5em;
}
.team-member p .ico svg {
	background: #d4d3d3;
	background: #ebf2fe;
	paddings: 0;
	color: white;
	color: #255db8;
	width: 1.7em;
	transform: translate(-0.14em, 0.23em);
}
.team-member p a {
	padding-left: 2.2em;
}
.team-member p.person-name {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	font-weight: 300;
	font-family: 'STKSaga', Times, Times New Roman, Georgia, serif;
	font-size: 1.06em;
}
/* ==========================================================================5) KOSTEN (FEES)========================================================================== */
#kosten {
	background: #fff;
}
.kosten-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	margin: 0 auto;
}
.kosten-text {
	flex: 1;
}
.kosten-image {
	flex: 1;
	text-align: center;
}
.kosten-text > h4 {
	margin-top: 1em;
	margin-bottom: 0.5em;
}
/* ==========================================================================6) KONTAKT / FOOTER========================================================================== */
footer {
	/*background: #f1f1f1;
	background: #1d61c5;
	color: #fff;
	color: rgba(255,255,255,0.7);
	*/
	font-size: 14px;
	line-height: 1.33em;
	color: white;
}
footer a {
	color: inherit;
}
footer > div {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 1rem;
}
footer img {
	object-fit: cover;
}
.map {
	mix-blend-mode: multiply;
}
.kontakt-section {
	max-width: 1000px;
	margin: 0 auto 2rem 0;
}
.kontakt-section address {
	font-style: normal;
}
.kontakt-section address .serif {
	font-weight: 300;
	font-size: 1.06em;
}
.kontakt-section a {
	color: inherit;
}
.team-member a, a.op {
	color: #255db8;
	transition: opacity 0.2s;
}
.team-member a:hover, a.op:hover {
	opacity: 0.6;
}
.impressum-txt svg {
	width: 1em;
	fill: #fff;
	transform: translateY(0.25em);
}
.impressum-txt h4 {
	margin-bottom: 0.25em;
}
footer {
	padding: 1rem;
}
footer > div {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0rem;
}
footer > div > div {
	flex: 0 0 calc(100% - 0rem);
}
footer > div > div:nth-child(1) {
	order: 1;
}
footer > div > div:nth-child(1) img {
	max-width: 260px;
}
footer > div > div:nth-child(2) {
	order: 2;
}
.impressum {
	padding: 18px;
}
#kontakt {
	background: #f4f1ef;
	padding-top: 6rem !important;
}
@media (min-width: 768px) {
	#kontakt {
		padding: 3rem 0 ;
	}
	.kontakt-section {
		padding: 0 3rem;
		max-width: 100%;
	}
	.kontakt-section > div {
		max-width: 1000px;
		margin: auto;
	}
	.kontakt-section > div {
	}
	.kontakt-section > div > h2 {
		width: 100%;
	}
	.kontakt-section > div > div {
		flex: 1;
	}
	.kontakt-section > div > div:nth-child(2) {
		display: flex;
		flex-direction: row;
		align-items: start;
		flex-wrap: wrap;
		gap: 4em;
	}
	.kontakt-section > div > div > address,.kontakt-section > div > div > div {
		flex: 0 0 calc(40% - 2em);
	}
	.kontakt-section > div > div > div:nth-child(2),.kontakt-section > div > div > div:nth-child(3) {
		flex: 0 0 calc(60% - 2em);
	}
	.kontakt-section > div address {
		width: 100%;
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
	}
	.kontakt-section > div address > div {
		flex: 0 0 100%;
		margin-top: 0.5em;
	}
	.kontakt-section > div address > div:nth-child(1),.kontakt-section > div address > div:nth-child(4) {
		flex: 0 0 100%;
	}
	.impressum {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}
	.impressum > div:last-child {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 0rem 1rem;
	}
	.impressum > div:last-child > p {
		margin: 0;
	}
}
footer div.impressum-txt {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	/*margin-top: 6em;
	border-top: 0.5px solid #ddd;
	padding-top: 6em;
	*/
}
footer div.impressum-txt > div {
	flex: 0 0 calc(100% - 0.5rem);
	margin-bottom: 1rem;
	order: 2;
}
footer div.impressum-txt > div:last-child {
	order: 4;
}
/* ==========================================================================Responsive Breakpoints (Mobile-First)========================================================================== */
/* ≥576px (Small Devices) */
@media (min-width: 576px) {
	/* Navigation */
	.header-nav {
		padding: 0rem 1rem;
	}
	nav ul {
		gap: 2.075rem;
		padding: 8px 0;
		justify-content: end;
	}
	nav ul li.last-nav-link {
		border-width: 0 0rem 0 0;
	}
	section {
		padding: 1.5rem;
	}
	/* Kompetenzen grid: 2 columns */
	#kompetenzen .kompetenzen-list {
	}
	#kompetenzen .kompetenzen-list li h4 {
		margin-bottom: 0;
	}
	#kompetenzen .kompetenzen-list li p {
	}
	#kompetenzen .kompetenzen-list li div {
		display: flex;
		flex-flow: row;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#kompetenzen .kompetenzen-list li div > p {
		flex: 0 0 100%;
	}
	#kompetenzen .kompetenzen-list li div > a {
		align-self: baseline;
	}
	/* Team gallery: 2 columns */
	.team-gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}
footer div.impressum-txt a {
	display: block;
}
/* ≥768px (Medium Devices / Tablets) */

	#kontakt address > div:nth-child(2) {
		margin-top: 1.5em;
	}

@media (min-width: 768px) {
	footer div.impressum-txt > div {
		flex: 0 0 calc(50% - 1rem);
		margin-bottom: 0rem;
		order: 2;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
	}
	footer div.impressum-txt > div:nth-child(1) {
		margin-bottom: 0rem;
		order: 2;
		padding-right: 1em;
	}
	footer div.impressum-txt > div:last-child {
		margin-top: 1.25rem;
	}
	.impressum {
		padding: 0;
		padding-right: 0rem;
	}
	.impressum > div {
	}
	footer {
	}
	footer > div {
		flex-direction: row;
		flex-wrap: wrap;
		gap: 2rem;
		width: 100%;
	}
	footer > div > div {
		flex: 0 0 calc(100% - 0rem);
		align-content: end;
	}
	footer > div.impressum-txt > div {
		flex: 0 0 calc(25% - .75rem);
		margin-bottom: 0rem;
		order: 1;
	}
	footer > div.impressum-txt > div:last-child {
		text-align: right;
		order: 4;
		padding: 0;
	}
	footer > div > div:nth-child(1) img {
		margin-left: 0;
		margin-right: auto;
	}
	section {
		padding: 4.3rem 3rem;
	}
	section#team, section#kosten {
		padding-bottom: 2rem;
	}
	section#kosten {
		padding-bottom: 0rem;
	}
	/* Hero text adjustment */
	.hero-text h1 {
	}
	/* Kompetenzen grid: still 2 columns but more gap */
	#kompetenzen .kompetenzen-list {
		width: 100%;
		display: flex;
		gap: 3em;
		flex-flow: wrap;
		align-items: flex-start;
	}
	#kompetenzen .kompetenzen-list li {
		border-bottom: none;
		width: 100%;
		max-width: 100%;
		flex: 0 0 calc(50% - 2.1em);
	}
	#kompetenzen .kompetenzen-list li div > p {
		flex: 0 0 100%;
		max-height: initial;
		opacity: 1;
	}
	.header-nav {
		border: none;
		overflow: visible;
		padding: 0rem 1rem;
		transition: padding-right 0.18s;
	}
	.header-nav {
	}
	nav ul {
		margin: auto;
		justify-content: end;
		padding: 10px 0 6px 0;
		transition: max-width .1s ease-out;
	}
	nav ul .blkr-logo {
		margin-left: 0;
		transition: all 0.1s ease;
	}
	nav ul .blkr-logo {
		transform: translateX(0%);
	}
	/* Team gallery: 3 columns */
	.team-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
	.full-w-sec {
		padding: 6rem 0;
	}
	.full-w-sec > div {
		width: 100%;
		max-width: 1300px;
		margin: auto;
	}
	.full-w-sec > div > div {
		width: 100%;
		max-width: auto;
		margin: 0;
		margin-left: auto;
		width: min(100%, calc(50% + 450px + 1.5rem));
	}
	#team.full-w-sec > div > div {
		width: min(100%, calc(50% + 1000px));
	}
	#team.full-w-sec > div:nth-child(1) {
		padding-left: 3rem;
	}
	#team.full-w-sec > div:nth-child(2) {
		padding-right: 3rem;
	}
	#kosten.full-w-sec {
		padding-left: 3rem;
	}
	.full-w-sec > div:nth-child(2) > div {
		margin-left: 0;
		margin-right: auto;
	}
	/* Kosten content: side-by-side */
	.kosten-content {
		flex-direction: row;
		align-items: flex-start;
	}
	.kosten-text,.kosten-image {
		flex: 1;
	}
	.kosten-text {
		padding-right: 2rem;
	}
	.kosten-image {
		display: flex;
		flex-direction: column;
		align-items: end;
		max-width: 35%;
	}
	.kosten-image > img {
		max-width: 310px;
		width: 100%;
	}
	.kosten-text {
		display: flex;
		flex-wrap: wrap;
	}
	.kosten-text > * {
		width: 100%;
	}
}
/* ≥992px (Large Devices / Small Desktops) */
@media (min-width: 992px) {
	footer div.impressum-txt > div {
		flex: 0 0 calc(19% - 1rem);
	}
	footer div.impressum-txt > div:nth-child(1) {
		flex: 0 0 calc(32% - 1rem);
	}
	/* Constrain container widths */
	.container {
		max-width: 960px;
	}
	/* navigation padding */
	nav ul {
	}
	/* Kompetenzen: 3 columns if desired */
	#kompetenzen .kompetenzen-list {
	}
	#kompetenzen .kompetenzen-list li {
		border-bottom: none;
		width: 100%;
		max-width: 100%;
		flex: 0 0 calc(33.333% - 2.1em);
	}
	/* Team gallery: 4 columns */
	.team-gallery {
		grid-template-columns: repeat(3, 1fr);
	}
	.kosten-text > * {
		width: 50%;
	}
	.kosten-text > *:nth-child(1),.kosten-text > *:nth-child(2),.kosten-text > *:nth-child(3),.kosten-text > *:nth-child(4),.kosten-text > *:nth-child(9) {
		width: 100%;
	}
	.kosten-text > *:nth-child(1) {
		order: 1;
	}
	.kosten-text > *:nth-child(2) {
		order: 2;
	}
	.kosten-text > *:nth-child(3) {
		order: 3;
	}
	.kosten-text > *:nth-child(4) {
		order: 4;
	}
	.kosten-text > *:nth-child(5) {
		order: 5;
	}
	.kosten-text > *:nth-child(6) {
		order: 7;
	}
	.kosten-text > *:nth-child(7) {
		order: 6;
	}
	.kosten-text > *:nth-child(8) {
		order: 8;
	}
	.kosten-text > *:nth-child(9) {
		order: 9;
	}
	.kosten-text > *:nth-child(10) {
		order: 10;
	}
	.kosten-text > *:nth-child(11) {
		order: 11;
	}
	.kosten-text > *:nth-child(12) {
		order: 12;
	}
	.kosten-text > *:nth-child(13) {
		order: 13;
	}
	.kosten-text > *:nth-child(14) {
		order: 14;
	}
	.kosten-text > *:nth-child(15) {
		order: 15;
	}
	.kosten-text > *:nth-child(16) {
		order: 16;
	}
	.kosten-text > *:nth-child(17) {
		order: 17;
	}
	.kosten-text > *:nth-child(18) {
		order: 18;
	}
	.kosten-text > *:nth-child(6),.kosten-text > *:nth-child(10) {
		padding-right: 1.25em;
	}
}
/* ≥1200px (Extra Large Devices / Desktops) */
@media (min-width: 1200px) {
	.full-w-sec > div {
		width: 100%;
		max-width: 1500px;
		margin: auto;
	}
	.full-w-sec > div > div {
		width: 100%;
		max-width: auto;
		margin: 0;
		margin-left: auto;
		width: min(100%, calc(50% + 500px + 1.5rem));
	}
	#team.full-w-sec > div > div {
		width: min(100%, calc(50% + 1000px));
	}
	.team-gallery > div:first-child {
		padding-left: calc(150% - 0px - 31.75rem);
	}
}
/* ≥1400px (XXL Devices / Very Large Screens) */
@media (min-width: 1540px) {
	#team.full-w-sec > div:nth-child(1) {
		padding-right: 3rem;
	}
	.kontakt-section > div,section > div, footer > div, nav ul {
	}
	.full-w-sec > div > div {
		width: min(100%, calc(50% + 650px - 1.5rem));
	}
	.team-gallery {
		gap: 4.5rem;
	}
	#team > div {
	}
	#team.full-w-sec > div > div,#kosten.full-w-sec > div {
		max-width: 1000px;
		margin: auto;
	}
	.team-gallery > div:first-child {
	}
	#kosten.full-w-sec {
		padding: 3rem;
	}
	.kosten-image {
		margin-right: 0rem;
	}
}
/* aspect-ratios imgs */
.ar11 {
	aspect-ratio: 1 / 1;
}
.ar23 {
	aspect-ratio: 2 / 3;
}
.ar32 {
	aspect-ratio: 3 / 2;
}
.ar45 {
	aspect-ratio: 4 / 5;
}
.ar57 {
	aspect-ratio: 5 / 7;
}
.ar67 {
	aspect-ratio: 6 / 7;
}
.ar169 {
	aspect-ratio: 16 / 9;
}
.ar21 {
	aspect-ratio: 2 / 1;
}
#header .left-half img {
	height: calc(100vh - 12rem);
	margin-bottom: 1.75rem;
}
.right-half img {
	height: calc(100vh - 6rem);
}

@media (max-width: 575px) {
	.header-half.right-half img {
		object-position: 50% 40%;
		max-height: none;
		height: auto;
	}
}

#kanzlei {clearfix: all}
@media (min-width: 576px) and (max-width: 767px) {
	.header-half.right-half img {
		object-position: 50% 40%;
		height: calc(100vh - 6rem);
	}
}
@media (min-width: 768px) {
	.header-half.right-half img {
		object-position: 50% 60%;
		min-height: 540px;
	}
}
@media (min-width: 1501px) {
	.header-half.right-half img {
		object-position: 50% 50%;
		min-height: 640px;
	}
}
@media (min-width: 2101px) {
	.header-half.right-half img {
		object-position: 50% 40%;
		min-height: 740px;
	}
}

.left-half .overlay-text {
	padding: 0;
}
/* NEW */
.downloads-box svg {
	max-width: 26px;
}
.downloads-box svg {
	color: #255db8;
	max-width: 1.65rem;
	background: #ebf2fe;
	border-radius: 100%;
	padding: 0.22em;
	margin-bottom: 0.21em;
}
.p-1 {
	padding: 1rem
}
.p-15 {
	padding: 1.5rem
}
.p-2 {
	padding: 2rem
}
.p-25 {
	padding: 2.5rem
}
.p-3 {
	padding: 3rem
}
.p-35 {
	padding: 3.5rem
}
.box-bg {
	background: #f4f6fb;
	border-radius: 0.75rem;
}
.box-bg-2 {
	border-radius: 0.75rem;
	width: 100%;
	border: 0px solid #99b6ff;
	background: #fff;
}
@media (min-width: 768px) {
	#header .left-half {
		margin-top: 6rem;
	}
	.flexy-temp {
		display: flex;
	}
	.flexy-temp > div {
		width: 50%;
		hyphens: auto;
	}
	.flexy-temp > div:nth-child(1) {
		padding-right: 1rem;
	}
	.flexy-temp > div:nth-child(2) {
		padding-left: 1rem;
	}
}
.downloads-box > * {
	display: block;
}
.downloads-box {
	display: flex;
}

/* CONTACT FORM CSS */
.contact {
	background: #fff;
	max-width: 100%;
	margin: 0 auto;
	padding: 1.35em;
	border-radius: 6px;
	sbox-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
	.contact {
		max-width: 600px;
	}
}
form {
	display: grid;
	gap: 1em;
}
label > input,label > textarea,label > select {
	width: 100%;
}
label > .small-txt {
	width: 7em
}
label > select {
	border: solid 0.5px #aaa;
	padding: 0.5em;
	color: #666;
	border-radius: 0.2em;
}
@media (min-width: 768px) {
	label {
		display: flex;
		flex-direction: row;
		font-size: 0.9rem;
		justify-content: space-between;
	}
	label > input,label > textarea,label > select {
		width: calc(100% - 7em);
	}
	label > select {
		width: calc(100% - 7em - 0.55em);
	}
}
input, textarea {
	margin-top: 0.3em;
	padding: 0.4em 0.55em;
	border: 0px solid #ccc;
	border-radius: 0.5px;
	font: inherit;
	background: #f6f6f7;
	border-bottom: 0.5px solid #aaa;
}
.contact .small-txt {
	color: #255db8;
}
textarea::placeholder {
	color: #999;
}
textarea {
	resize: vertical;
}
button {
	padding: 0.7em 1.2em;
	font-size: 1rem;
	border: none;
	background: #007acc;
	color: #fff;
	border-radius: 4px;
	cursor: pointer;
}
button:hover {
	background: #005fa3;
}
.success {
	padding: 2.4em 0.8em 2.8em 0.8em;
	text-align: left;
	border-radius: 6px;
	margin-bottom: 0;
}
.error {
	background: #ffe0e0;
	padding: 0.8em;
	border: 1px solid #f88;
	border-radius: 4px;
}
input#file-upload {
	padding-left: 0;
}
#kosten {
	padding-bottom: 4.5rem !important;
}
.downloads-box a:link svg {
	transform: translateY(0.1em);
}
.downloads-box a:link h4 {
	border-bottom: 1px solid transparent;
	display: inline-block;
}
.downloads-box a:link,.downloads-box a:link svg,.downloads-box a:link h4,.downloads-box a:link p {
	position: relative;
	transition: all 0.2s;
}
.downloads-box a:hover svg {
	transform: translateY(-0.06em);
	transforms: translateY(-0.1em) scale(105%);
	scolor: #fff;
	background: #1d61c5;
	background: #d0dafc;
}
.downloads-box a:hover h4,.downloads-box a:hover p {
	color: #1d61c5;
}
.downloads-box a h4:after,.downloads-box a:link h4:after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	border-radius: 4px;
	background: #d0dafc;
	position: absolute;
	transform-origin: left;
	transform: scaleX(0);
	transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
	bottom: -1px;
	left: 0;
}
.downloads-box a:hover h4:after {
	transform-origin: left;
	transform: scaleX(1);
}
.downloads-box a:link h4,.downloads-box a:link p,.downloads-box a h4,.downloads-box a p {
	color: #1d61c5;
}
p {
	font-size: inherit;
	line-height: inherit;
}
/* BLKR Logo Animation */
.blkr-logo.anim {
	align-items:center;
	margin-top: 1.5em;
	margin-left: -0.35em;
}
.blkr-logo.anim .logo-link {
	display:flex;
	align-items:center;
	gap: 0.6rem;
	text-decoration:none;
	color:inherit;
}
.logo-svg {
	width: 54px;
	height: 54px;
	overflow: visible;
	transition: all .4s ease;
}
.grid-outline {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-dasharray: 364;
	stroke-dashoffset: 0;
	transition: stroke-dashoffset .7s ease, opacity .3s ease .1s;
}
.g-letter {
	font-family: inherit;
	font-weight: 400;
	font-size: 26px;
	dominant-baseline: middle;
	text-anchor: middle;
	transition: transform .6s cubic-bezier(.2,.8,.2,1);
	transform: translate(0,0);
}
.logo-wordmark {
	display:flex;
	align-items:baseline;
	white-space:nowrap;
	overflow:hidden;
	transition: margin-top .6s ease .025s, opacity .6s ease .25s;
}
.logo-blkr-inline {
	font-weight: 800;
	letter-spacing: 0.02em;
}
.logo-claim {
	opacity: 0.9;
	margin-left: 0 !important;
	font-size: 1.1em;
	transition: font-size .3s ease
}
.logo-sep {
	display:inline-block;
	width: 0.35rem;
}
nav.scrolled .logo-claim {
	font-size: inherit
}
nav.scrolled .grid-outline {
	stroke-dashoffset: -364;
	opacity: 0;
	transition: stroke-dashoffset .4s ease, opacity .3s ease .7s;
}
nav.scrolled .g-b {
	transform: translate(0px, -12px);
}
nav.scrolled .g-l {
	transform: translate(-11px, -12px);
}
nav.scrolled .g-k {
	transform: translate(41px, -45.5px);
}
nav.scrolled .g-r {
	transform: translate(32px, -45.5px);
}
nav.scrolled .logo-wordmark {
	opacity: 1;
	margin-top: -1.7em;
}
nav.scrolled .logo-svg {
	margin-left: -.8em;
}
@media (prefers-reduced-motion: reduce) {
	.grid-outline,.g-letter,.logo-wordmark,.logo-svg {
		transitions: none !important;
	}
}


#imprint {
	max-width: 620px;
	padding: 1.1rem;
	margin: auto;
	margin-top: 6rem;
	font-size: 0.85rem;
	line-height: 1.2em;
	}
	
#imprint h1 {
	margin-top: 2em;
	}
#imprint h4, #imprint h2, #imprint h3 {
	    font-size: inherit;
	    font-family: inherit;
		font-weight: 900;
	
	}