/*-----------------------------------------------------------------------------------
	Dr. Schild und Kollegen
	About: Offizieller Webseite der Kanzlei Dr. Schild & Kollegen · Fachanwälte für Arbeitsrecht · Rechtsanwälte
	Author: D3K Michael Barnutz
	Version: 1.0
	Built with Blocs
-----------------------------------------------------------------------------------*/
body{
	margin:0;
	padding:0;
    background:var(--swatch-var-5734);
    overflow-x:hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.page-container{overflow: hidden;} /* Prevents unwanted scroll space when scroll FX used. */
a,button{transition: background .3s ease-in-out;outline: none!important;} /* Prevent blue selection glow on Chrome and Safari */
a:hover{text-decoration: none; cursor:pointer;}
.scroll-fx-lock-init{position:fixed!important;top: 0;bottom: 0;left: :0;right: 0;z-index:99999;} /* ScrollFX Lock */
.blocs-grid-container{display: grid!important;grid-template-columns: 1fr 1fr;grid-template-rows: auto auto;column-gap: 1.5rem;row-gap: 1.5rem;} /* CSS Grid */
nav .dropdown-menu .nav-link{color:rgba(0,0,0,0.6)!important;} /* Maintain Downdown Menu Link Color in Navigation */
[data-bs-theme="dark"] nav .dropdown-menu .nav-link{color:var(--bs-dropdown-link-color)!important;} /* Maintain Downdown Menu Link Color in Navigation in Darkmode */

/* = Web Fonts
-------------------------------------------------------------- */

@font-face {
	font-family:'JosefinSans-Regular';
	src: url('./fonts/JosefinSans-Regular/josefin-sans-regular-web-converted.woff2');
	src: url('./fonts/JosefinSans-Regular/josefin-sans-regular-web-converted.woff2') format('woff2'),
	url('./fonts/JosefinSans-Regular/josefin-sans-regular-web-converted.woff') format('woff'),
	url('./fonts/JosefinSans-Regular/josefin-sans-regular-web-converted.eot?#iefix') format('embedded-opentype'),
	url('./fonts/JosefinSans-Regular/josefin-sans-regular-web-converted.ttf') format('truetype'),
	url('./fonts/JosefinSans-Regular/josefin-sans-regular-web-converted.svg#JosefinSans-Regular') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'JosefinSans-Light';
	src: url('./fonts/JosefinSans-Light/josefin-sans-light-web-converted.woff2');
	src: url('./fonts/JosefinSans-Light/josefin-sans-light-web-converted.woff2') format('woff2'),
	url('./fonts/JosefinSans-Light/josefin-sans-light-web-converted.woff') format('woff'),
	url('./fonts/JosefinSans-Light/josefin-sans-light-web-converted.eot?#iefix') format('embedded-opentype'),
	url('./fonts/JosefinSans-Light/josefin-sans-light-web-converted.ttf') format('truetype'),
	url('./fonts/JosefinSans-Light/josefin-sans-light-web-converted.svg#JosefinSans-Light') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'JosefinSans-Medium';
	src: url('./fonts/JosefinSans-Medium/josefin-sans-medium-web-converted.woff2');
	src: url('./fonts/JosefinSans-Medium/josefin-sans-medium-web-converted.woff2') format('woff2'),
	url('./fonts/JosefinSans-Medium/josefin-sans-medium-web-converted.woff') format('woff'),
	url('./fonts/JosefinSans-Medium/josefin-sans-medium-web-converted.eot?#iefix') format('embedded-opentype'),
	url('./fonts/JosefinSans-Medium/josefin-sans-medium-web-converted.ttf') format('truetype'),
	url('./fonts/JosefinSans-Medium/josefin-sans-medium-web-converted.svg#JosefinSans-Medium') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

@font-face {
	font-family:'JosefinSans-SemiBold';
	src: url('./fonts/JosefinSans-SemiBold/josefin-sans-semibold-web-converted.woff2');
	src: url('./fonts/JosefinSans-SemiBold/josefin-sans-semibold-web-converted.woff2') format('woff2'),
	url('./fonts/JosefinSans-SemiBold/josefin-sans-semibold-web-converted.woff') format('woff'),
	url('./fonts/JosefinSans-SemiBold/josefin-sans-semibold-web-converted.eot?#iefix') format('embedded-opentype'),
	url('./fonts/JosefinSans-SemiBold/josefin-sans-semibold-web-converted.ttf') format('truetype'),
	url('./fonts/JosefinSans-SemiBold/josefin-sans-semibold-web-converted.svg#JosefinSans-SemiBold') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display:swap;
}

/* = Blocs
-------------------------------------------------------------- */

.bloc{
	width:100%;
	clear:both;
	background: 50% 50% no-repeat;
	padding:0 20px;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	position:relative;
	display:flex;
}
.bloc .container{
	padding-left:0;
	padding-right:0;
	position:relative;
}

/* = Full Screen Blocs 
-------------------------------------------------------------- */

.bloc-fill-screen{
	min-height:100vh;
	display: flex;
	flex-direction: column;
	padding-top:20px;
	padding-bottom:20px;
}
.bloc-fill-screen > .container{
	align-self: flex-middle;
	flex-grow: 1;
	display: flex;
	flex-wrap: wrap;
}
.bloc-fill-screen > .container > .row{
	flex-grow: 1;
	align-self: center;
	width:100%;
}
.bloc-fill-screen .fill-bloc-top-edge, .bloc-fill-screen .fill-bloc-bottom-edge{
	flex-grow: 0;
}
.bloc-fill-screen .fill-bloc-top-edge{
	align-self: flex-start;
}
.bloc-fill-screen .fill-bloc-bottom-edge{
	align-self: flex-end;
}

/* = Full Width Blocs 
-------------------------------------------------------------- */

.full-width-bloc{
	padding-left:0;
	padding-right:0;
}
.full-width-bloc .row{
	margin-left:0;
	margin-right:0;
}
.full-width-bloc .container{
	width:100%;
	max-width:100%!important;
}
.full-width-bloc .carousel img{
	width:100%;
	height:auto;
}


/* Edge Dividers */

.bloc-shape-divider{
	position: absolute;
	width:100%;
	text-align:center;
	left:0;
	right:0;
	z-index: 0;
	display: flex;
	pointer-events: none;
}
.svg-divider{
	width:100%;
	height:100px;
	fill:#000000;
}
.bloc-divider-top{
	top:-1px;
	align-items: flex-start;
}
.bloc-divider-bottom{
	bottom:-1px;
	align-items: flex-end;
}


/* Flip Edge Divider */

.bloc-divider-flip-x svg{
	transform:scale(-1,1);
}
.bloc-divider-flip-y svg{
	transform:scale(1,-1);
}
.bloc-divider-flip-x.bloc-divider-flip-y svg{
	transform:scale(-1,-1);
}


/* Background Effects */

.parallax__container {
	clip: rect(0, auto, auto, 0);
	height: 100%;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	z-index:-1;
}
.parallax {
	position: fixed;
	top: 0;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Dark theme */

.d-bloc{
	color:rgba(255,255,255,.7);
}
.d-bloc button:hover{
	color:rgba(255,255,255,.9);
}
.d-bloc .icon-round,.d-bloc .icon-square,.d-bloc .icon-rounded,.d-bloc .icon-semi-rounded-a,.d-bloc .icon-semi-rounded-b{
	border-color:rgba(255,255,255,.9);
}
.d-bloc .divider-h span{
	border-color:rgba(255,255,255,.2);
}
.d-bloc .a-btn,.d-bloc .navbar a, .d-bloc a .icon-sm, .d-bloc a .icon-md, .d-bloc a .icon-lg, .d-bloc a .icon-xl, .d-bloc h1 a, .d-bloc h2 a, .d-bloc h3 a, .d-bloc h4 a, .d-bloc h5 a, .d-bloc h6 a, .d-bloc p a{
	color:rgba(255,255,255,.6);
}
.d-bloc .a-btn:hover,.d-bloc .navbar a:hover,.d-bloc a:hover .icon-sm, .d-bloc a:hover .icon-md, .d-bloc a:hover .icon-lg, .d-bloc a:hover .icon-xl, .d-bloc h1 a:hover, .d-bloc h2 a:hover, .d-bloc h3 a:hover, .d-bloc h4 a:hover, .d-bloc h5 a:hover, .d-bloc h6 a:hover, .d-bloc p a:hover{
	color:rgba(255,255,255,1);
}
.d-bloc .navbar-toggle .icon-bar{
	background:rgba(255,255,255,1);
}
.d-bloc .btn-wire,.d-bloc .btn-wire:hover{
	color:rgba(255,255,255,1);
	border-color:rgba(255,255,255,1);
}
.d-bloc .card{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover{
	color:rgba(0,0,0,.7);
}
.d-bloc .card icon{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover{
	color:rgba(0,0,0,1);
}
.d-bloc .card .btn-wire, .d-bloc .card .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* Light theme */

.d-bloc .card,.l-bloc{
	color:rgba(0,0,0,.5);
}
.d-bloc .card button:hover,.l-bloc button:hover{
	color:rgba(0,0,0,.7);
}
.l-bloc .icon-round,.l-bloc .icon-square,.l-bloc .icon-rounded,.l-bloc .icon-semi-rounded-a,.l-bloc .icon-semi-rounded-b{
	border-color:rgba(0,0,0,.7);
}
.d-bloc .card .divider-h span,.l-bloc .divider-h span{
	border-color:rgba(0,0,0,.1);
}
.d-bloc .card .a-btn,.l-bloc .a-btn,.l-bloc .navbar a,.l-bloc a .icon-sm, .l-bloc a .icon-md, .l-bloc a .icon-lg, .l-bloc a .icon-xl, .l-bloc h1 a, .l-bloc h2 a, .l-bloc h3 a, .l-bloc h4 a, .l-bloc h5 a, .l-bloc h6 a, .l-bloc p a{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .a-btn:hover,.l-bloc .a-btn:hover,.l-bloc .navbar a:hover, .l-bloc a:hover .icon-sm, .l-bloc a:hover .icon-md, .l-bloc a:hover .icon-lg, .l-bloc a:hover .icon-xl, .l-bloc h1 a:hover, .l-bloc h2 a:hover, .l-bloc h3 a:hover, .l-bloc h4 a:hover, .l-bloc h5 a:hover, .l-bloc h6 a:hover, .l-bloc p a:hover{
	color:rgba(0,0,0,1);
}
.l-bloc .navbar-toggle .icon-bar{
	color:rgba(0,0,0,.6);
}
.d-bloc .card .btn-wire,.d-bloc .card .btn-wire:hover,.l-bloc .btn-wire,.l-bloc .btn-wire:hover{
	color:rgba(0,0,0,.7);
	border-color:rgba(0,0,0,.3);
}


/* = NavBar
-------------------------------------------------------------- */

/* Navbar Icon */
.svg-menu-icon{
	fill: none;
	stroke: rgba(0,0,0,0.5);
	stroke-width: 2px;
	fill-rule: evenodd;
}
.navbar-dark .svg-menu-icon{
	stroke: rgba(255,255,255,0.5);
}
.menu-icon-thin-bars{
	stroke-width: 1px;
}
.menu-icon-thick-bars{
	stroke-width: 5px;
}
.menu-icon-rounded-bars{
	stroke-width: 3px;
	stroke-linecap: round;
}
.menu-icon-filled{
	fill: rgba(0,0,0,0.5);
	stroke-width: 0px;
}
.navbar-dark .menu-icon-filled{
	fill: rgba(255,255,255,0.5);
}
.navbar-toggler-icon{
	background: none!important;
	pointer-events: none;
	width: 33px;
	height: 33px;
}
/* Handle Multi Level Navigation */
.dropdown-menu .dropdown-menu{
	border:none}
@media (min-width:576px){
	
.navbar-expand-sm .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-sm .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:768px){
	.navbar-expand-md .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-md .dropdown-menu .submenu-left{
	right:100%;
	left:auto}}@media (min-width:992px){
	.navbar-expand-lg .dropdown-menu .dropdown-menu{
	border:1px solid rgba(0,0,0,.15);
	position:absolute;
	left:100%;
	top:-7px}.navbar-expand-lg .dropdown-menu .submenu-left{
	right:100%;
	left:auto}
}

/* = Buttons
-------------------------------------------------------------- */

.btn-d,.btn-d:hover,.btn-d:focus{
	color:#FFF;
	background:rgba(0,0,0,.3);
}

/* Prevent ugly blue glow on chrome and safari */
button{
	outline: none!important;
}

.btn-sq{
	border-radius: 0px;
}
.btn-style-none,.btn-style-none:hover,.btn-style-none:active,.btn-style-none:focus{
	background:none;
	box-shadow: none;
	padding:0;
}





.card-sq, .card-sq .card-header, .card-sq .card-footer{
	border-radius:0;
}
.card-rd{
	border-radius:30px;
}
.card-rd .card-header{
	border-radius:29px 29px 0 0;
}
.card-rd .card-footer{
	border-radius:0 0 29px 29px;
}
/* = Masonary
-------------------------------------------------------------- */
.card-columns .card {
	margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
	.card-columns {
	-webkit-column-count: 3;
	-moz-column-count: 3;
	column-count: 3;
	-webkit-column-gap: 1.25rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	orphans: 1;
	widows: 1;
}
.card-columns .card {
	display: inline-block;
	width: 100%;
}
}
/* = Classic Dividers
-------------------------------------------------------------- */
.divider-h{
	min-height: 1px;
	background-color:rgba(0,0,0,.2);
	margin: 20px 0;
}
.divider-half{
	width: 50%;
}
.dropdown-menu .divider-h{
	margin:0;
}



/* ScrollToTop button */

.scrollToTop{
	width:36px;
	height:36px;
	padding:5px;
	position:fixed;
	bottom:20px;
	right:20px;
	opacity:0;
	z-index:999;
	transition: all .3s ease-in-out;
	pointer-events:none;
}
.showScrollTop{
	opacity: 1;
	pointer-events:all;
}
.scroll-to-top-btn-icon{
	fill: none;
	stroke: #fff;
	stroke-width: 2px;
	fill-rule: evenodd;
	stroke-linecap:round;
}

/* = Custom Styling
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6,p,label,.btn,a{
	font-family:"JosefinSans-Regular";
	color:var(--swatch-var-3475)!important;
}
.container{
	max-width:1400px;
}
.header-height{
	height:750px;
	margin-top:-70px;
}
.bloc-divider-b-fill{
	fill:#EEEDEB;
	height:100px;
}
.set-mainnav-back{
	padding-bottom:20px;
}
.set-header-back{
	padding-top:190px;
	padding-bottom:250px;
	margin-top:-100px;
}
h1{
	color:#F3EDE4!important;
	font-family:"JosefinSans-Medium";
}
h2{
	color:#282828!important;
	font-size:60px;
	line-height:72px;
	font-family:"JosefinSans-Regular";
}
.set-content-back{
	padding-top:100px;
	padding-bottom:100px;
	background-color:var(--swatch-var-622);
}
.set-divider-1{
	width:15%;
	height:5px;
	background-color:#282828;
	margin-left:auto;
	margin-right:auto;
	border-radius:100px 100px 100px 100px;
}
p{
	font-size:28px;
	line-height:44px;
	color:var(--swatch-var-3475)!important;
	font-family:"JosefinSans-Light";
}
h3{
	color:#4B4B4B!important;
	font-family:"JosefinSans-Regular";
}
.set-btn-gruen{
	background-repeat:no-repeat;
	background-position:left center;
	padding:15px 30px 12px 50px;
	background-image:url("img/symbol-pfeil-nach-rechts-weiss.webp");
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-5146);
	font-size:22px;
	line-height:32px;
	font-family:"JosefinSans-Regular";
}
.set-btn-gruen:hover{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	background-image:url("img/symbol-pfeil-nach-rechts-weiss.webp");
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-5146);
}
.set-btn-gruen:active{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-5146);
}
.set-btn-gruen:focus{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-5146);
}
.set-btn-gruen:visited{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-5146);
}
.set-btn-graublau{
	background-repeat:no-repeat;
	background-position:left center;
	padding:15px 30px 12px 50px;
	background-image:url("img/symbol-pfeil-nach-rechts-weiss.webp");
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-6229);
	font-size:22px;
	line-height:32px;
}
.set-btn-graublau:hover{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	background-image:url("img/symbol-pfeil-nach-rechts-weiss.webp");
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-6229);
}
.set-btn-graublau:active{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-6229);
}
.set-btn-graublau:focus{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-6229);
}
.set-btn-graublau:visited{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-6229);
}
.set-btn-rose{
	background-repeat:no-repeat;
	background-position:left center;
	padding:15px 30px 12px 50px;
	background-image:url("img/symbol-pfeil-nach-rechts-weiss.webp");
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-4022);
	font-size:22px;
	line-height:32px;
}
.set-btn-rose:hover{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	background-image:url("img/symbol-pfeil-nach-rechts-weiss.webp");
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-4022);
}
.set-btn-rose:active{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-4022);
}
.set-btn-rose:focus{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-4022);
}
.set-btn-rose:visited{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-4022);
}
.bloc-divider-t-fill{
	fill:#EEEDEB;
	height:75px;
}
.set-zitate-back{
	padding-top:200px;
	padding-bottom:125px;
}
.set-zitate-text{
	font-size:36px;
	line-height:48px;
	font-family:"JosefinSans-Regular";
}
.set-zitate-symbol{
	margin-bottom:25px;
}
.set-footer-top{
	background-color:#F3EDE4;
	background-image:url("img/trenner-farbige-elemente.webp");
	background-size:100% 18px;
	background-repeat:no-repeat;
	background-position:left top;
	padding-bottom:50px;
	padding-top:75px;
}
.set-footer-headlines{
	font-size:48px;
	line-height:52px;
}
.set-divider-2{
	height:5px;
	width:20%;
	background-color:#282828;
	border-radius:100px 100px 100px 100px;
	margin-left:auto;
	margin-right:auto;
}
.set-footer-text-1{
	font-size:20px;
	line-height:34px;
}
.set-footer-text-2{
	font-size:18px;
	line-height:24px;
	margin-top:0px;
	margin-bottom:0px;
	padding-top:0px;
	padding-bottom:0px;
	color:#4B4B4B!important;
}
.set-footer{
	margin-top:50px;
	margin-bottom:50px;
}
.set-btn-footer-nav{
	color:#4B4B4B!important;
	margin-top:0px;
	margin-bottom:0px;
	padding-top:0px;
	padding-bottom:0px;
}
.set-btn-footer-nav:hover{
	color:#4B4B4B!important;
}
.set-btn-footer-nav:active{
	color:#4B4B4B!important;
}
.set-btn-footer-nav:focus{
	color:#4B4B4B!important;
}
.set-btn-footer-nav:visited{
	color:#4B4B4B!important;
	font-size:18px;
	line-height:24px;
}
.set-header-headline{
	text-shadow:0.00px -0.00px 50px #000000;
}
.navbar-nav li a{
	font-size:22px;
	color:var(--swatch-var-3475)!important;
	font-family:"JosefinSans-Regular";
}
.set-header-schatten{
	padding-top:50px;
	padding-bottom:50px;
	background-image:url("img/header-text-schatten.webp");
	background-size:100% 100%;
	background-repeat:no-repeat;
}
.scroll-qoute-container{
	width:100%;
}
.quote-text{
	font-size:26px;
	font-style:italic;
}
.blocs-card-width{
	width:25%;
}
.img-style{
	width:320px;
}
.img-bloc-2-style{
	width:320px;
	opacity:1.0;
}
.img-4-style{
	width:320px;
}
.navbar-brand img{
	width:372px;
	height:212px;
}
.p-style{
	font-size:14px;
}
.set-header-schatten-dunkler{
	padding-top:50px;
	padding-bottom:50px;
	background-image:url("img/header-text-schatten-dunkler.webp");
	background-size:100% 100%;
	background-repeat:no-repeat;
}
.set-h3-60px{
	font-size:60px;
}
.set-p-liste{
	font-size:28px;
	margin-top:13px;
	line-height:36px;
	text-align:left;
}
.set-liste{
	padding-left:25px;
	padding-right:25px;
}
.set-btn-hellesbeige{
	background-repeat:no-repeat;
	background-position:left center;
	padding:15px 30px 12px 50px;
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-381);
	font-size:20px;
	line-height:34px;
}
.set-btn-hellesbeige:hover{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-381);
}
.set-btn-hellesbeige:active{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-381);
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
}
.set-btn-hellesbeige:focus{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-381);
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
}
.set-btn-hellesbeige:visited{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-381);
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
}
.set-btn-weiss{
	background-repeat:no-repeat;
	background-position:left center;
	padding:15px 30px 12px 50px;
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-5734);
	font-size:20px;
	line-height:34px;
}
.set-btn-weiss:hover{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-5734);
}
.set-btn-weiss:active{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-5734);
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
}
.set-btn-weiss:focus{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-5734);
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
}
.set-btn-weiss:visited{
	padding:15px 30px 12px 50px;
	background-position:left center;
	background-repeat:no-repeat;
	color:var(--swatch-var-3475)!important;
	background-color:var(--swatch-var-5734);
	background-image:url("img/symbol-pfeil-nach-rechts-grau.webp");
}
a{
	font-family:"JosefinSans-Regular";
	color:var(--swatch-var-3475)!important;
}
.set-divider-1-weiss{
	width:15%;
	height:5px;
	background-color:var(--swatch-var-5734);
	margin-left:auto;
	margin-right:auto;
	border-radius:100px 100px 100px 100px;
}
.p-bloc-3-style{
	font-size:28px;
	line-height:44px;
}
.set-p-22px{
	font-size:22px;
	line-height:32px;
}
.h1-style{
	font-size:120px;
	line-height:110px;
}
.h1-anwälte-style{
	font-size:130px;
	line-height:110px;
	text-transform:uppercase;
}
.p-bloc-1-style{
	font-size:36px;
	line-height:46px;
	font-family:"JosefinSans-Regular";
	text-transform:uppercase;
}
.p-5-style{
	font-size:36px;
	line-height:46px;
	font-family:"JosefinSans-Regular";
}
label{
	font-family:"JosefinSans-Regular";
	color:var(--swatch-var-3475)!important;
}
.navbar-brand{
	font-family:"JosefinSans-Regular";
	color:var(--swatch-var-5734)!important;
}
h4{
	font-family:"JosefinSans-Regular";
	color:var(--swatch-var-3475)!important;
}
h5{
	font-family:"JosefinSans-Regular";
	color:var(--swatch-var-3475)!important;
}
h6{
	font-family:"JosefinSans-Regular";
	color:var(--swatch-var-3475)!important;
}
.h1-fachgebiete-style{
	font-size:120px;
	line-height:100px;
}
.p-15-style{
	font-size:36px;
	line-height:46px;
	font-family:"JosefinSans-Regular";
}
.set-footer-top:hover{
	background-image:url("img/trenner-farbige-elemente.webp");
}
.set-footer-top:active{
	background-image:url("img/trenner-farbige-elemente.webp");
}
.set-footer-top:focus{
	background-image:url("img/trenner-farbige-elemente.webp");
}
.set-footer-top:visited{
	background-image:url("img/trenner-farbige-elemente.webp");
}
.p-131-style{
	font-size:16px;
	line-height:26px;
}
.set-txt-gruen-semibold{
	color:var(--swatch-var-711)!important;
	font-family:"JosefinSans-SemiBold";
}
.set-text-rose-semibold{
	color:var(--swatch-var-4022)!important;
	font-family:"JosefinSans-SemiBold";
}
.set-txt-blue-semibold{
	color:var(--swatch-var-6229)!important;
	font-family:"JosefinSans-SemiBold";
}
.set-txt-rose-semibold{
	font-family:"JosefinSans-SemiBold";
	color:var(--swatch-var-4022)!important;
}
.set-txt-semibold{
	font-family:"JosefinSans-SemiBold";
}
.set-karte-back{
	padding-top:350px;
	padding-bottom:350px;
	background-image:url("img/karte-openstreetmap-contributors-tiles-courtesy-of-humanitarian-opensteetpmap-team.webp");
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}
.set-karte-btn{
	background-size:length;
	position:relative;
	top:-110px;
	left:10px;
}
.set-karte-bloc{
	margin-top:0px;
}
.set-karte-container{
	margin-top:-110px;
	margin-left:10px;
}
.set-logo{
	background-size:auto auto;
	margin-top:-135px;
	position:relative;
	z-index:100;
}
.set-mainnav{
	margin-top:-60px;
}
.set-hamburger-desktop{
	background-image:url("img/symbol-menu-dunkelgrau.webp");
	background-size:40px 27px;
	background-repeat:no-repeat;
	background-position:left center;
	width:40px;
	margin-right:25px;
}
.set-mainnav-space{
	margin-left:0px;
	margin-right:15px;
	padding-bottom:0px;
	background-size:auto auto;
}
.set-hamburger-desktop-space{
	margin-right:10px;
}
.set-typecolor-white{
	color:var(--swatch-var-5734)!important;
	text-transform:none;
}
.set-btn-mainnav{
	margin-right:25px;
	font-size:22px;
	line-height:100px;
	margin-top:35px;
	color:var(--swatch-var-5219)!important;
}
.set-btn-mainnav:hover{
	margin-right:25px;
	margin-top:35px;
	color:var(--swatch-var-711)!important;
}
.set-btn-mainnav:active{
	margin-right:25px;
	margin-top:35px;
}
.set-btn-mainnav:focus{
	margin-right:25px;
	margin-top:35px;
}
.set-btn-mainnav:visited{
	margin-top:35px;
	margin-right:25px;
}
.set-btn-hamburger{
	margin-right:30px;
	background-image:url("img/symbol-menu-dunkelgrau.webp");
	background-size:auto auto;
	width:40px;
	background-repeat:no-repeat;
	background-position:center center;
	height:27px;
	padding:20px 20px 20px 20px;
	margin-top:30px;
	color:var(--swatch-var-5734)!important;
}
.set-btn-mainnav-first{
	margin-left:60px;
}
.menu-icon-stroke{
	stroke:var(--swatch-var-711)!important;
	fill:var(--swatch-var-711)!important;
}
.set-div-logo{
	z-index:1000;
	top:70px;
}
.set-btn-hamburger:hover{
	background-image:url("img/symbol-pfeil-nach-rechts-gruen.webp");
	background-position:center center;
	background-repeat:no-repeat;
	margin-top:30px;
	margin-right:30px;
	padding:20px 20px 20px 20px;
}
.set-btn-hamburger:active{
	background-position:center center;
	background-repeat:no-repeat;
	margin-top:30px;
	margin-right:30px;
	padding:20px 20px 20px 20px;
}
.set-btn-hamburger:focus{
	background-position:center center;
	background-repeat:no-repeat;
	margin-top:30px;
	margin-right:30px;
	padding:20px 20px 20px 20px;
}
.set-btn-hamburger:visited{
	background-position:center center;
	background-repeat:no-repeat;
	margin-top:30px;
	margin-right:30px;
	padding:20px 20px 20px 20px;
}
.set-navpage-back{
	background-color:var(--swatch-var-3475);
	position:fixed;
	z-index:1000000;
}
.set-navpage-btn-main{
	color:var(--swatch-var-5734)!important;
	font-size:60px;
	line-height:80px;
	text-decoration:none;
	text-transform:none;
	font-family:"JosefinSans-Light";
}
.set-navpage-btn-main:hover{
	color:var(--swatch-var-5146)!important;
}
.set-nav-back{
	height:230px;
}
.set-logo-size{
	width:372px;
	height:212px;
}
.set-fullback-1{
	background-image:url("img/impressum-hintergrund.webp");
	background-size:cover;
	background-repeat:no-repeat;
	background-attachment:fixed;
}
.set-impressum-back{
	padding-bottom:100px;
	background-image:url("img/impressum-hintergrund.webp");
	background-repeat:no-repeat;
	background-attachment:fixed;
}
.set-divider-3-gruen{
	height:5px;
	width:10%;
	border-radius:20px 20px 20px 20px;
	background-color:var(--swatch-var-5146);
}
.h1-impressum-style{
	font-size:60px;
	line-height:72px;
}
.h2-style{
	font-size:40px;
	line-height:50px;
}
.h2-bloc-21-style{
	font-size:40px;
	line-height:50px;
}
.h2-10-style{
	font-size:40px;
	line-height:50px;
}
.h2-11-style{
	font-size:40px;
	line-height:50px;
}
.h2-12-style{
	font-size:40px;
	line-height:50px;
}
.h2-13-style{
	font-size:40px;
	line-height:50px;
}
.h2-14-style{
	font-size:40px;
	line-height:50px;
}
.h2-15-style{
	font-size:40px;
	line-height:50px;
}
.set-navpage-btn-sub{
	font-family:"JosefinSans-Light";
	color:var(--swatch-var-4598)!important;
	font-size:28px;
	line-height:44px;
}
.set-navpage-btn-sub:hover{
	color:var(--swatch-var-5734)!important;
}
.set-navpage-txt{
	font-size:20px;
	line-height:36px;
	color:var(--swatch-var-4598)!important;
}
.set-symbol-close{
	font-size:1px;
	background-image:url("img/symbol-close-weiss.webp");
	width:50px;
	height:50px;
	background-size:cover;
	margin-top:30px;
	background-repeat:no-repeat;
}
.set-symbol-close:hover{
	background-image:url("img/symbol-close-gruen.webp");
	margin-top:30px;
	width:50px;
	height:50px;
	background-size:cover;
	background-repeat:no-repeat;
}
.set-btn-home{
	margin-right:30px;
	background-size:35px auto;
	background-repeat:no-repeat;
	background-position:center center;
	padding:20px 20px 20px 20px;
	margin-top:30px;
	color:var(--swatch-var-5734)!important;
	height:45px;
	background-image:url("img/symbol-home-gruen.webp");
	font-size:1px;
	width:40px;
}
.set-btn-home:hover{
	background-position:center center;
	background-repeat:no-repeat;
	margin-top:30px;
	margin-right:30px;
	padding:20px 20px 20px 20px;
	background-image:url("img/symbol-home-gruen.webp");
	background-size:35px auto;
}
.set-btn-home:active{
	background-position:center center;
	background-repeat:no-repeat;
	margin-top:30px;
	margin-right:30px;
	padding:20px 20px 20px 20px;
}
.set-btn-home:focus{
	background-position:center center;
	background-repeat:no-repeat;
	margin-top:30px;
	margin-right:30px;
	padding:20px 20px 20px 20px;
}
.set-btn-home:visited{
	background-position:center center;
	background-repeat:no-repeat;
	margin-top:30px;
	margin-right:30px;
	padding:20px 20px 20px 20px;
}
.set-btn-phone-kontaktseite{
	background-color:var(--swatch-var-5146);
	background-image:url("img/symbol-sprechblase-weiss.webp");
	background-size:53px 30px;
	background-repeat:no-repeat;
	background-position:left center;
	padding:20px 25px 10px 70px;
	color:var(--swatch-var-5734)!important;
	margin-right:30px;
	font-size:22px;
	margin-top:-34px;
}
.set-btn-phone-kontaktseite:hover{
	margin-top:-34px;
	margin-right:30px;
	color:var(--swatch-var-5734)!important;
	padding:20px 25px 10px 70px;
	background-color:var(--swatch-var-5146);
	background-size:53px 30px;
	background-position:left center;
	background-repeat:no-repeat;
	background-image:url("img/symbol-sprechblase-weiss.webp");
}
.set-btn-phone-kontaktseite:active{
	margin-top:-34px;
	margin-right:30px;
	color:var(--swatch-var-5734)!important;
	padding:20px 25px 10px 70px;
	background-color:var(--swatch-var-5146);
	background-size:53px 30px;
	background-repeat:no-repeat;
	background-position:left center;
	background-image:url("img/symbol-sprechblase-weiss.webp");
}
.set-btn-phone-kontaktseite:focus{
	margin-top:-34px;
	margin-right:30px;
	color:var(--swatch-var-5734)!important;
	padding:20px 25px 10px 70px;
	background-color:var(--swatch-var-5146);
	background-size:53px 30px;
	background-position:left center;
	background-repeat:no-repeat;
	background-image:url("img/symbol-sprechblase-weiss.webp");
}
.set-btn-phone-kontaktseite:visited{
	margin-top:-34px;
	margin-right:30px;
	color:var(--swatch-var-5734)!important;
	padding:20px 25px 10px 70px;
	background-color:var(--swatch-var-5146);
	background-size:53px 30px;
	background-position:left center;
	background-repeat:no-repeat;
	background-image:url("img/symbol-sprechblase-weiss.webp");
}
.set-img-kontakt{
	padding-right:20px;
}
.set-btn-mainnav-phone{
	font-size:22px;
	line-height:22px;
	color:var(--swatch-var-5734)!important;
	background-color:var(--swatch-var-5146);
	background-image:url("img/symbol-sprechblase-weiss.webp");
	background-repeat:no-repeat;
	background-position:left center;
	background-size:auto auto;
	padding:20px 25px 15px 75px;
	border-radius:0px 0px 0px 0px;
	z-index:50000;
	position:sticky;
	margin-top:-120px;
	margin-left:-20px;
}
.set-btn-mainnav-phone:hover{
	margin-top:-120px;
	color:var(--swatch-var-5734)!important;
	margin-left:-20px;
	padding:20px 25px 15px 75px;
	background-color:var(--swatch-var-5146);
	background-image:url("img/symbol-sprechblase-weiss.webp");
	background-position:left center;
	background-repeat:no-repeat;
	font-size:22px;
	line-height:22px;
}
.set-btn-mainnav-phone:active{
	margin-top:-120px;
	margin-left:-20px;
	padding:20px 25px 15px 75px;
	background-color:var(--swatch-var-5146);
	background-image:url("img/symbol-sprechblase-weiss.webp");
	background-position:left center;
	background-repeat:no-repeat;
	font-size:22px;
	color:var(--swatch-var-5734)!important;
	line-height:22px;
	border-bottom-right-radius:20px;
}
.set-btn-mainnav-phone:focus{
	margin-top:-120px;
	margin-left:-20px;
	padding:20px 25px 15px 75px;
	background-color:var(--swatch-var-5146);
	background-image:url("img/symbol-sprechblase-weiss.webp");
	background-position:left center;
	background-repeat:no-repeat;
	font-size:22px;
	color:var(--swatch-var-5734)!important;
	line-height:22px;
	border-bottom-right-radius:20px;
}
.set-btn-mainnav-phone:visited{
	margin-top:-120px;
	margin-left:-20px;
	padding:20px 25px 15px 75px;
	background-color:var(--swatch-var-5146);
	background-image:url("img/symbol-sprechblase-weiss.webp");
	background-position:left center;
	background-repeat:no-repeat;
	font-size:22px;
	color:var(--swatch-var-5734)!important;
	line-height:22px;
	border-bottom-right-radius:20px;
}
.h2-bloc-3-style{
	font-size:40px;
	line-height:50px;
}
.set-datenschutz-back{
	padding-bottom:100px;
	background-image:url("img/impressum-hintergrund.webp");
	background-repeat:no-repeat;
	background-attachment:fixed;
}
.set-space{
	margin-bottom:100px;
}
.l-bloc{
	color:var(--swatch-var-5734)!important;
}
.h1-datenschutz-style{
	font-size:60px;
	line-height:72px;
	color:var(--swatch-var-5734)!important;
}
.p-108-style{
	opacity:0.8;
}
.h2-16-style{
	font-size:40px;
	line-height:50px;
}
.h2-17-style{
	font-size:40px;
	line-height:50px;
}
.h2-sicherheit-style{
	font-size:40px;
	line-height:50px;
}
.h2-19-style{
	font-size:40px;
	line-height:50px;
}
.h2-20-style{
	font-size:40px;
	line-height:50px;
}
.set-zitate-back-willkommen{
	padding-top:150px;
	padding-bottom:125px;
}

/* = Colour
-------------------------------------------------------------- */

/* Swatch Variables */
:root{
	
	--swatch-var-483:rgba(243,237,228,1.00);
	
	--swatch-var-5734:rgba(255,255,255,1.00);
	
	--swatch-var-5146:rgba(165,196,80,1.00);
	
	--swatch-var-4022:rgba(197,130,141,1.00);
	
	--swatch-var-6229:rgba(124,156,180,1.00);
	
	--swatch-var-7343:rgba(249,246,238,1.00);
	
	--swatch-var-381:rgba(243,237,228,1.00);
	
	--swatch-var-3475:rgba(75,75,75,1.00);
	
	--swatch-var-4598:rgba(167,167,167,1.00);
	
	--swatch-var-622:rgba(238,237,235,1.00);
	
	--swatch-var-711:rgba(126,154,50,1.00);
	
	--swatch-var-5219:rgba(40,40,40,1.00);
	
}


/* Background colour styles */

.bgc-4598{
	background-color:var(--swatch-var-4598);
}
.bgc-622{
	background-color:var(--swatch-var-622);
}
.bgc-5734{
	background-color:var(--swatch-var-5734);
}

/* Text colour styles */

.tc-5734{
	color:var(--swatch-var-5734)!important;
}
.bgc-483{
	background-color:var(--swatch-var-483);
}

/* Bloc image backgrounds */

.bg-willkommen-headergrafik{
	background-image:url("img/willkommen-headergrafik.webp");
}
.bg-anwaelte-headergrafik{
	background-image:url("img/anwaelte-headergrafik.webp");
}
.bg-anwaelte-hintergrundgrafik-zitate{
	background-image:url("img/anwaelte-hintergrundgrafik-zitate.webp");
}
.bg-fachgebiete-teaser-hintergrundgrafik{
	background-image:url("img/fachgebiete-teaser-hintergrundgrafik.webp");
}
.bg-fachgebiete-headergrafik{
	background-image:url("img/fachgebiete-headergrafik.webp");
}
.bg-kanzlei-headergrafik{
	background-image:url("img/kanzlei-headergrafik.webp");
}



/* = Toggle Visibility
-------------------------------------------------------------- */

.toggled-item{transition: height 350ms ease-in-out, padding 350ms ease-in-out, opacity 350ms ease-in-out;overflow: hidden;}
.toggled-item-hidden{padding-top:0!important;padding-bottom:0!important;border-top:0!important;border-bottom:0!important;outline:0!important;opacity: 0;}
.object-hidden{display:none;}


/* = Bloc Padding Multi Breakpoint
-------------------------------------------------------------- */

@media (min-width: 576px) {
    .bloc-xxl-sm{padding:200px 20px;}
    .bloc-xl-sm{padding:150px 20px;}
    .bloc-lg-sm{padding:100px 20px;}
    .bloc-md-sm{padding:50px 20px;}
    .bloc-sm-sm{padding:20px;}
    .bloc-no-padding-sm{padding:0 20px;}
}
@media (min-width: 768px) {
    .bloc-xxl-md{padding:200px 20px;}
    .bloc-xl-md{padding:150px 20px;}
    .bloc-lg-md{padding:100px 20px;}
    .bloc-md-md{padding:50px 20px;}
    .bloc-sm-md{padding:20px 20px;}
    .bloc-no-padding-md{padding:0 20px;}
}
@media (min-width: 992px) {
    .bloc-xxl-lg{padding:200px 20px;}
    .bloc-xl-lg{padding:150px 20px;}
    .bloc-lg-lg{padding:100px 20px;}
    .bloc-md-lg{padding:50px 20px;}
    .bloc-sm-lg{padding:20px;}
    .bloc-no-padding-lg{padding:0 20px;}
}


/* = Mobile adjustments 
-------------------------------------------------------------- */
@media (max-width: 1024px)
{
    .bloc.full-width-bloc, .bloc-tile-2.full-width-bloc .container, .bloc-tile-3.full-width-bloc .container, .bloc-tile-4.full-width-bloc .container{
        padding-left: 0; 
        padding-right: 0;  
    }
}
@media (max-width: 991px)
{
    .container{width:100%;}
    .bloc{padding-left: constant(safe-area-inset-left);padding-right: constant(safe-area-inset-right);} /* iPhone X Notch Support*/
    .bloc-group, .bloc-group .bloc{display:block;width:100%;}
}
@media (max-width: 767px)
{
    .bloc-tile-2 .container, .bloc-tile-3 .container, .bloc-tile-4 .container{
        padding-left:0;padding-right:0;
    }
    .btn-dwn{
       display:none; 
    }
    .voffset{
        margin-top:5px;
    }
    .voffset-md{
        margin-top:20px;
    }
    .voffset-lg{
        margin-top:30px;
    }
    form{
        padding:5px;
    }
    .close-lightbox{
        display:inline-block;
    }
    .blocsapp-device-iphone5{
	   background-size: 216px 425px;
	   padding-top:60px;
	   width:216px;
	   height:425px;
    }
    .blocsapp-device-iphone5 img{
	   width: 180px;
	   height: 320px;
    }
}

@media (max-width: 991px){
	.blocs-card-width{
		width:50%;
	}
	.navbar-brand img{
	}
	h1{
	}
	h2{
		font-size:50px;
		line-height:62px;
	}
	p{
		font-size:26px;
		line-height:40px;
	}
	.bloc-divider-t-fill{
		height:50px;
	}
	.bloc-divider-b-fill{
		height:50px;
	}
	.set-header-back{
		padding-bottom:180px;
	}
	.set-zitate-text{
		font-size:32px;
		line-height:44px;
	}
	.set-zitate-back{
		padding-top:175px;
		padding-bottom:125px;
	}
	.set-divider-2{
		margin-left:auto;
		margin-right:auto;
		width:10%;
	}
	.set-btn-footer-nav{
	}
	.set-p-liste{
		text-align:center;
	}
	.h1-style{
		font-size:90px;
		line-height:90px;
	}
	.h1-anwälte-style{
		font-size:120px;
		line-height:100px;
	}
	.p-bloc-1-style{
		font-size:35px;
		line-height:45px;
	}
	.p-5-style{
		font-size:28px;
		line-height:38px;
	}
	.h1-fachgebiete-style{
		font-size:100px;
		line-height:80px;
	}
	.p-15-style{
		font-size:30px;
		line-height:40px;
	}
	.set-karte-back{
		padding-top:250px;
		padding-bottom:250px;
		background-size:cover;
		background-image:url("img/karte-openstreetmap-contributors-tiles-courtesy-of-humanitarian-opensteetpmap-team-small.webp");
	}
	.set-logo{
		margin-top:-103px;
	}
	.menu-icon-stroke{
		stroke:var(--swatch-var-5219)!important;
		fill:var(--swatch-var-5219)!important;
	}
	.set-hamburger{
		margin-top:-50px;
		background-size:auto auto;
	}
	.set-btn-hamburger{
		margin-top:62px;
	}
	.set-btn-home{
		margin-top:62px;
	}
	.set-btn-hamburger:hover{
		margin-top:62px;
	}
	.set-btn-hamburger:active{
		margin-top:62px;
	}
	.set-btn-hamburger:focus{
		margin-top:62px;
	}
	.set-btn-hamburger:visited{
		margin-top:62px;
	}
	.set-btn-home:hover{
		margin-top:62px;
	}
	.set-btn-home:active{
		margin-top:62px;
	}
	.set-btn-home:focus{
		margin-top:62px;
	}
	.set-btn-home:visited{
		margin-top:62px;
	}
	.h1-impressum-style{
		font-size:50px;
		line-height:60px;
	}
	.divider-margin-left{
		margin-left:0;
		margin-right:auto;
	}
	.set-divider-3-gruen{
		width:20%;
	}
	.h2-style{
		font-size:40px;
		line-height:50px;
	}
	.h2-bloc-21-style{
		font-size:40px;
		line-height:50px;
	}
	.h2-10-style{
		font-size:40px;
		line-height:50px;
	}
	.h2-11-style{
		font-size:40px;
		line-height:50px;
	}
	.h2-12-style{
		font-size:40px;
		line-height:50px;
	}
	.h2-13-style{
		font-size:40px;
		line-height:50px;
	}
	.h2-14-style{
		font-size:40px;
		line-height:50px;
	}
	.h2-15-style{
		font-size:40px;
		line-height:50px;
	}
	.h2-bloc-3-style{
		font-size:40px;
		line-height:50px;
	}
	.h1-datenschutz-style{
		font-size:55px;
		line-height:65px;
	}
	.p-bloc-3-style{
		font-size:26px;
		line-height:40px;
	}
	.h1-bloc-22-style{
		font-size:50px;
		line-height:60px;
	}
	.set-zitate-back-willkommen{
		padding-top:175px;
		padding-bottom:125px;
	}
	.set-btn-mainnav-phone{
		margin-left:-20px;
	}
	
}

@media (max-width: 767px){
	.quote-text{
		font-size:22px;
	}
	.blocs-card-width{
		width:50%;
	}
	h1{
	}
	h2{
		font-size:40px;
		line-height:52px;
	}
	p{
		font-size:22px;
		line-height:36px;
	}
	.bloc-divider-b-fill{
		height:50px;
	}
	.set-content-back{
		padding-top:100px;
	}
	.set-zitate-back{
		padding-top:150px;
		padding-bottom:100px;
	}
	.h1-style{
		font-size:70px;
		line-height:80px;
	}
	.h1-anwälte-style{
		font-size:90px;
		line-height:80px;
	}
	.p-bloc-1-style{
		font-size:28px;
		line-height:38px;
	}
	.h1-fachgebiete-style{
		font-size:70px;
		line-height:50px;
	}
	.p-15-style{
		font-size:22px;
		line-height:32px;
	}
	.set-logo{
	}
	.set-btn-home:hover{
	}
	.set-btn-home:active{
	}
	.set-btn-home:focus{
	}
	.set-btn-home:visited{
	}
	.set-btn-hamburger:hover{
	}
	.set-btn-hamburger:active{
	}
	.h1-impressum-style{
		font-size:40px;
		line-height:50px;
	}
	.set-divider-3-gruen{
		width:25%;
	}
	.h2-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-bloc-21-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-10-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-11-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-12-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-13-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-14-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-15-style{
		font-size:35px;
		line-height:45px;
	}
	.set-logo-size{
		width:300px;
		height:171px;
	}
	.set-navpage-btn-main{
		font-size:50px;
		line-height:70px;
	}
	.set-navpage-btn-sub{
		font-size:24px;
		line-height:40px;
	}
	.set-navpage-txt{
		font-size:18px;
		line-height:34px;
	}
	.set-symbol-close{
		width:40px;
		height:40px;
	}
	.set-symbol-close:hover{
		width:40px;
		height:40px;
	}
	.set-symbol-close:active{
	}
	.h2-bloc-3-style{
		font-size:35px;
		line-height:45px;
	}
	.h1-datenschutz-style{
		font-size:50px;
		line-height:60px;
	}
	.p-5-style{
		font-size:22px;
		line-height:36px;
	}
	.set-p-liste{
		font-size:22px;
		line-height:32px;
	}
	.p-bloc-3-style{
		font-size:22px;
		line-height:36px;
	}
	.h1-bloc-22-style{
		font-size:40px;
		line-height:50px;
	}
	.h2-16-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-17-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-sicherheit-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-19-style{
		font-size:35px;
		line-height:45px;
	}
	.h2-20-style{
		font-size:35px;
		line-height:45px;
	}
	.divider-margin-left{
		margin-left:0;
		margin-right:auto;
	}
	.set-zitate-back-willkommen{
		padding-top:150px;
		padding-bottom:100px;
	}
	
}

@media (max-width: 575px){
	.quote-text{
		font-size:18px;
	}
	.blocs-card-width{
		width:100%;
	}
	h1{
	}
	h2{
		font-size:30px;
		line-height:42px;
	}
	p{
		font-size:22px;
		line-height:36px;
	}
	.img-style{
		width:250px;
	}
	.img-bloc-2-style{
		width:250px;
	}
	.img-4-style{
		width:250px;
	}
	.bloc-divider-b-fill{
		height:50px;
	}
	.bloc-divider-t-fill{
		height:50px;
	}
	.set-zitate-text{
		font-size:28px;
		line-height:36px;
	}
	.set-header-back{
		margin-top:-70px;
	}
	.h1-style{
		font-size:40px;
		line-height:50px;
	}
	.h1-anwälte-style{
		font-size:55px;
		line-height:55px;
	}
	.p-bloc-1-style{
		font-size:22px;
		line-height:32px;
	}
	.p-5-style{
		font-size:22px;
		line-height:32px;
	}
	.h1-fachgebiete-style{
		font-size:40px;
		line-height:40px;
	}
	.p-15-style{
		font-size:20px;
		line-height:30px;
	}
	.set-karte-container{
		margin-left:0px;
		margin-top:-110px;
	}
	.navbar-brand img{
		width:300px;
		height:171px;
	}
	.set-hamburger{
		margin-top:-50px;
	}
	.set-mainnav-back{
	}
	.set-logo{
		background-size:length;
		margin-top:0px;
		z-index:10;
	}
	.set-btn-hamburger{
		width:100%;
		margin-top:92px;
	}
	.set-logo-size{
		width:300px;
		height:171px;
	}
	.set-btn-hamburger:hover{
		margin-top:92px;
	}
	.set-btn-hamburger:active{
		margin-top:92px;
	}
	.set-btn-hamburger:focus{
		margin-top:92px;
	}
	.set-btn-hamburger:visited{
		margin-top:92px;
	}
	.set-btn-home{
		width:100%;
	}
	.set-btn-home:hover{
		margin-top:62px;
	}
	.set-btn-home:active{
		margin-top:62px;
	}
	.set-btn-home:focus{
		margin-top:62px;
	}
	.set-btn-home:visited{
		margin-top:62px;
	}
	.set-btn-hellesbeige{
		padding-top:15px;
		background-position:left center;
	}
	.h1-impressum-style{
		font-size:30px;
		line-height:40px;
	}
	.set-divider-3-gruen{
		width:30%;
	}
	.h2-style{
		font-size:25px;
		line-height:35px;
	}
	.set-navpage-txt{
		font-size:14px;
		line-height:22px;
	}
	.set-navpage-btn-sub{
		font-size:22px;
		line-height:36px;
	}
	.set-navpage-btn-main{
		font-size:40px;
		line-height:60px;
	}
	.set-btn-weiss{
	}
	.h2-bloc-3-style{
		font-size:30px;
		line-height:40px;
	}
	.h1-datenschutz-style{
		font-size:40px;
		line-height:50px;
	}
	.h1-bloc-22-style{
		font-size:30px;
		line-height:40px;
	}
	.h2-13-style{
		line-height:40px;
	}
	.h2-14-style{
		line-height:40px;
	}
	.h2-15-style{
		line-height:40px;
	}
	.divider-margin-left{
		margin-left:0;
		margin-right:auto;
	}
	.set-btn-mainnav-phone{
		z-index:100000;
		position:sticky;
		margin-top:-430px;
		padding-left:25px;
		width:100%;
		background-size:auto auto;
		left:30px;
	}
	.set-btn-mainnav-phone:hover{
		margin-top:-430px;
	}
	.set-btn-mainnav-phone:active{
		margin-top:-430px;
	}
	.set-btn-mainnav-phone:focus{
		margin-top:-430px;
	}
	.set-btn-mainnav-phone:visited{
		margin-top:-430px;
	}
	
}

