/* &copy; Rolf Bartel - rolf-bartel.de */

/* GLOBAL ################################################################ GLOBAL */

/* Global CI color #39498d */
/* Global A:LINK color #39498d */
/* Global A:LINK color rgba(222,0,2,1) */

/* Custom Styles */
:root {

    --color-primary: #213d7a;
    --color-primary-hover: #6c757d;
    --color-secondary: #6c757d;
    --color-secondary-hover: #6c757d;
    --color-grey: #333;
    --color-black: #000;
    --color-white: #fff;

    --bg-color-primary: #213d7a;
    --bg-color-primary-hover: #6c757d;
    --bg-color-secondary: #6c757d;
    --bg-color-secondary-hover: #6c757d;
    --bg-color-grey: #333;
    --bg-color-black: #000;
    --bg-color-white: #fff;

    --bg-color-box-0: rgba(51,51,51, 0.7);
    --bg-color-box-1: rgba(49, 89, 141, 0.8);
    --bg-color-hover-box-1: rgba(49, 89, 141, 0.95);
    --bg-color-box-2: rgba(54, 140, 47, 0.9);
    --bg-color-hover-box-2: rgba(54, 140, 47, 0.95);
    --bg-color-box-3: rgba(49, 89, 141, 0.8);
    --bg-color-hover-box-3: rgba(49, 89, 141, 0.95);
    --bg-color-box-4: rgba(54, 140, 47, 0.9);
    --bg-color-hover-box-4: rgba(54, 140, 47, 0.95);
            
}

html {
  scroll-behavior: smooth;
  /* Offset für alle Anker */
  scroll-padding-top: 80px;        /* Desktop: Höhe deines sticky Headers im ZUSTAND "zugeklappt" */
}

body {
    background-color: var(--color-white);
    overflow-x: hidden;
    hyphens: auto;
}

/* A:LINK */

a {
    color: var(--color-white);
    outline: 0;
}

a:visited {
    color: ;
}

a:hover {
    color: var(--color-grey);
}

a:active {
    color: var(--color-white);
}

.btn:visited {
  color:;
}

/* A disabled */

.disabled {
   pointer-events: none;
   cursor: default;
   color: var(--color-white) !important;
}

/* GLOBAL BUTTON cursor: pointer */

button, html input[type="button"], input[type="reset"], input[type="submit"] {
    cursor: pointer;
}

/* OBJECT, EMBED */

object, embed { 
  outline: 0;
}

/* IMG */

img {
	max-width: 100%;
}

/* COLORS */

.c-ci {
    color: var(--color-grey);
}

.c-ci:hover {
	color:;
}

.c-fa {
	color: var(--color-primary) !important;
}

.bgc-ci {
	/*background-color: #39498d;*/
	color: var(--color-white);
	background: var(--bg-color-primary) !important;
}

.bgc-s {
	/*background-color: #39498d;*/
	color: var(--color-white);
	background: var(--color-grey) !important;
}

.bg-s-textur {
    /*background: var(--color-grey) url("../images/brilliant.png") repeat !important;*/
    background: var(--color-grey) url("../images/classy-fabric.png") repeat !important;
    color: var(--color-white);
}

.bgc-white {
	background-color: var(--color-white);
}

.bgc-l-grey {
	background-color: #f2f2f2;
}

.bgc-d-grey {
	background-color: #666;
	color: var(--color-white);
}


/* DS */

.ds {
	display: block;
}

@media (max-width: 575px) {

	.ds {
		display: none !important;
	}
	
}

/* MS */

.ms {
	display: none; 
}

@media (max-width: 575px) {
	
	.ms {
		display: block; 
	}
	
}


/* WRAPPER fix width 1280px */

/*

.wrapper {
	max-width: 1280px;
	margin: 0 auto;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.75);
}

.nv-over {
    max-width: 1280px;
}

*/



/* LOGO */

.logo {
	width: 80px;
	transition: all 0.3s;
	margin: 0;
    padding-top: 15px;
    padding-bottom: 15px;
}

@media (max-width: 1300px) {

	.logo {
	   width: 80px;
    }
	
}

@media (max-width: 575px) {

	.logo-m {
		width: 100%;
		/* background-color: #555; */
		/*background-color: rgba(170,58,58,.9) !important;*/
		/*background: rgba(170,58,58,.9) url(../images/fpb.png) repeat !important;*/
	}
	
}

/* H1 */

.h1, h1 {
	font-size: 2rem;
	text-transform: uppercase;
	font-weight: 300;
	color: #39498d;
	letter-spacing: 2px;
}

.h2, h2 {
	font-size: 1.2rem;
	font-weight: 300;
	color: var(--color-grey);
}

.h3, h3 {
	font-weight: 300;
}

.h4, h4 {
	font-weight: 400;
}

.h5, h5 {
	font-weight: 300;
}

@media (max-width: 575px) {

	.h1, h1 {
    	font-size: 1.5rem;
    	padding-bottom: .8rem;
	}
	
}

/* H2 */

@media (max-width: 575px) {

	.h1, h1 {

	}
	
}

/* H3 */

@media (max-width: 575px) {

	.h1, h1 {

	}
	
}

/* section background color */

.s-bg-c {
	background-color: #f2f2f2;
}

/* footer bottom section background color */

.s-f-bg-c {
	background-color: #222 !important;
}

/* shadows transitions hover */

.shadows:hover {
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
}

.transitions {
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}



/* NAVBAR ################################################################ NAVBAR */

nav {
	transition: all 0.3s;
}

.navbar {
	padding: 0 0;
}


@media (max-width: 575px) {
	
	/* if Logo Mobile on Top */
	nav {
		position: inherit !important;
	}
	
}

.navbar-dark .navbar-brand {
    color: var(--color-grey) !important;
    padding-top: 0;
    padding-bottom: 0;
}


/* CI Color */
.bg-dark {
    background-color: #494949 !important;
}

.bg-dark-grey {
    background-color: var(--color-grey);
}


.nv-over {
	/*background-color: rgba(255,255,255,.95) !important;*/
	/*background-color: transparent !important; */

    background: rgba(255,255,255,.7) !important;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    margin-top: 0;
    position: fixed;
    z-index: 1095;
    width: 100%;
    min-height:;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    /*text-shadow: 1px 1px #000;*/
}

@media (max-width: 1199px) {
	
	.nv-over {
		min-height: auto;
	}
	
	.nv-over {
    	background: rgba(255,255,255,1) !important;
    	margin-top:0;
    	position: absolute;
    	z-index: 1095;
    	width: 100%;
	}
	
}

.bgs {
	background: rgba(255,255,255,1) !important;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    min-height: auto;
    
}

.bgs .logo {
    width:  50px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin: 0;
}

.bg-head {
	background-color: #39498d;
	color: var(--color-white);
}

.bg-head a {
	color: var(--color-white);
}

.bg-head a:hover {
	color: #f2f2f2;
}

.bgs-dropdown {
	background: #39498d !important;
}


/* edit CI Color Links */
.navbar-dark .navbar-nav .nav-link {
    /* color: rgba(255,255,255,.5) !important; */
    color: var(--color-grey);
    padding-right: .6rem;
	padding-left: .6rem;
    font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--color-grey) !important;
    background-color: rgba(255,255,255,.0) !important;
    border-bottom: 2px solid var(--color-grey) !important;
    margin-bottom: -2px !important;
}

.active a {
    color: var(--color-grey) !important;
    background: rgba(255,255,255,.0);
    border-bottom: 2px solid var(--color-grey);
    margin-bottom: -2px;
}

nav .container {
    max-width: 100%;
}

nav .container {
    max-width: 100%;
}

nav .container {
    max-width: 100%;
}





/* linear-gradient BG ################################################################ linear-gradient BG */

.bg-block-1 {
	background-image: linear-gradient( 135deg, #f1f1f1 10%, #f3f3f3 100%);
}

.bg-block-2 {
	background-image: linear-gradient( 135deg, #fefdfb 10%, #fdf3d7 100%);
}

.bg-block-3 {
	background-image: linear-gradient( 135deg, #fdfeff 10%, #f1fcff 100%);
}







/* OPACITY:HOVER ################################################################ OPACITY:HOVER */

.opho {
	opacity: 1;
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	-o-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}

.opho:hover {
	opacity: .7;
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	-o-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}

.hoop {
	opacity: .8;
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	-o-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}

.hoop:hover {
	opacity: 1;
	-webkit-transition: opacity 500ms ease-out;
	-moz-transition: opacity 500ms ease-out;
	-o-transition: opacity 500ms ease-out;
	transition: opacity 500ms ease-out;
}

/* zoom:hover */

.zoomho {
	transition: all .2s ease-in-out;
}

.zoomho:hover {
	transform: scale(1.1);
}


/* LE-BOX ################################################################ LE-BOX */

.le-box {
	background-color: #F9F9F9;
	border-bottom:1px solid #ddd;
	border-left: 8px solid #39498d;
	min-height: 80px;
}

.le-box .fas, .le-box .far, .le-box .fal {
	font-size: 3rem;
	color: #39498d;
}


/* LE-BOX 2 ################################################################ LE-BOX 2 */

.le-box-2-inner {
    border: 1px solid #39498d;
    margin-left: 35px;
    transition: .3s;
}
.le-box-2-img {
    float: left;
    margin-left: -40px;
    margin-right: 18px;
    margin-top: 28px;
}
.le-box-2-text {
    padding-right: 10px;
}
.le-box-2-text {
    overflow: hidden;
    padding: 28px 0 25px;
}
.le-box-2-text h4 {
    color: var(--color-grey);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    padding-bottom: 10px;
    position: relative;
    text-transform: uppercase;
}
.le-box-2-text h4::before {
    background: transparent none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 1px;
    position: absolute;
    width: 35px;
}
.le-box-2-wrapper:hover .le-box-2-inner {
    background: var(--color-white) none repeat scroll 0 0;
    border: 1px solid transparent;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}
.le-box-2-text p {
    margin-bottom: 0;
}















/* VIDEO IN BACKGROUND ################################################################ VIDEO IN BACKGROUND */


#video {
	max-height: 100%;
	overflow: hidden;
	position: relative;
}

#video-background {
	min-width: 100%;
	max-width: 100%; 
	height: auto;
	width: auto; 
	height: auto;
	z-index: -1;
}

.video-overlay {
  background: rgba(0,0,0,0);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  text-shadow: 2px 2px rgba(0,0,0,.6);
  color: rgba(255,255,255,.8);
}

.video-desc {
  font-size: 4rem;
  text-shadow: 2px 2px rgba(0,0,0,.6);
  color: rgba(255,255,255,.8);
}

@media (max-width: 768px) {
	
	.video-desc {
  		font-size: 3rem;
	}

}

@media (max-width: 575px) {
	
	.video-desc {
  		font-size: 2rem;
	}

}



/* tab panel ################################################################ tab panel */

#mytab .nav-tabs > a {
  border-radius: 0;
  border: 0;
}

#mytab .nav-tabs > a:hover {
  background-color: #ccc;
  color:
}

#mytab .active {
  border-radius: 0;
  background-color: #f5f5f5;
  color:;
}

#mytab .tab-pane {
  color:;
  background-color: #f5f5f5;
  padding: 15px;
}





/* DROPDOWN-MENU ################################################################ DROPDOWN-MENU */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0;
    margin: 0;
    color: ;
    text-align: left;
    list-style: none;
    background-color: rgba(0,0,0,.6);
    background-clip: padding-box;
    border: 0px solid rgba(0,0,0,.15);
    border-radius: 0;
    margin-top: 2px;
}

.dropdown-item {
	color: var(--color-white) !important;
	font-size: .9rem;
}

.dropdown-item:hover {
	background-color: rgba(0,0,0,.8);
	color: var(--color-white) !important;
}

.dropdown:hover > .dropdown-menu {
	display: block;
}

@media (max-width: 768px) {
	
	.dropdown > .dropdown-menu {
		display: block;
		background-color: transparent;
	}
	
	.dropdown-menu {
		display: block;
		background-color: transparent;
	}
	
	.dropdown-item {
		background-color: transparent;
		color: var(--color-white);
	}
	
	.dropdown-item a {
		background-color: transparent;
		color: var(--color-white);
	}
	
	.dropdown-item:hover {
		background-color: rgba(0,0,0,.2);
	}
	
}







/* HEADER ################################################################ HEADER */

header {
	margin-top: 0;
}

header img {
	width: 100%;
}

@media (max-width: 575px) {

	header {
		margin-top: 0;
	}
	
}

/* MAPS/CONTACT ################################################################ MAPS/CONTACT */

.s-maps {
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
	width: 100%;
	max-height: 510px
}
	
.s-mo {
	width: 100%;
	min-height: 510px;
	position: absolute;
}



/* MAP ################################################################ MAP */

.map {
  height: 30rem;
}

@media (max-width: 575px) {
  .map {
    height: 20rem;
  }
}

.map iframe {
  pointer-events: ;
}






/* BUTTON ################################################################ BUTTON */

.button {
	display: inline-block;
	margin: 10px 10px 10px 0;
	padding: 15px 40px;
	overflow: hidden;
	cursor: pointer;
	background-color: var(--color-grey);
	color: var(--color-white);
	text-align: center;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	text-decoration: none;
	border: 0;
	font-size: .9em;
}

.button:hover {
	background-color: #7DA961;
	color: var(--color-grey);
}






/* REF MOREPICTURE ################################################################ REF MOREPICTURE */

.picture-list-more .morepix_btn {
  float: right;
  padding: .6em 1.1em;
  margin: 1em 0 .5em 0;
  margin-right: 2%;
  background-color: #777;
  color: var(--color-white);
  border: none;
  cursor: pointer;
}

.picture-list-more .morepix_btn:hover {
  background-color: #444;
}

.picture-list-more .morepix {
  display: none;
}

.picture-list-more a {
    display: block;
    float: left;
    overflow: hidden;
    width: 23%;
    /*margin: 2% 2% 0 0;*/
    margin: 0 2% 2% 0;
    margin-left: 0;
    line-height:;
    position: relative;
}

.picture-list-more a img {
  width: 100%;
  height: auto;
}

.picture-list-more a span {
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    color: var(--color-white);
    padding: 4%;
    position: absolute;
    bottom: 0;
}

.picture-list-more a {
    width: 23%;
}

/*.picture-list-more a {
    display: ;
    float: ;
    overflow: hidden;
    width: 100%;
    margin:0;
    margin-left: 0;
    line-height: 0;
    position: ;
}

.picture-list-more a span {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, .85);
    color: var(--color-grey);
    padding: 15px 10px 15px 10px;
    position: absolute;
    bottom: 0;
}

.picture-list-more a {
    width: 100%;
}*/

@media (max-width: 690px) {
	.picture-list-more a {
    	width: 100%;
	}
}









/* REF MOREPICTURE ################################################################ REF MOREPICTURE */

.picture-list-more .morepix_btn {
  float: right;
  padding: .6em 1.1em;
  margin: 1em 0 .5em 0;
  margin-right: 2%;
  background-color: #777;
  color: var(--color-white);
  border: none;
  cursor: pointer;
}

.picture-list-more .morepix_btn:hover {
  background-color: #444;
}

.picture-list-more .morepix {
  display: none;
}

.picture-list-more .pic-back {
    display: block;
    float: left;
    overflow: hidden;
    width: 23%;
    /*margin: 2% 2% 0 0;*/
    margin: 0 2% 2% 0;
    margin-left: 0;
    line-height:;
    position: relative;
}

.picture-list-more .pic-back img {
  width: 100%;
  height: auto;
}

.picture-list-more .pic-back span {
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, .6);
    color: var(--color-white);
    padding: 4%;
    position: absolute;
    bottom: 0;
}

.picture-list-more .pic-back {
    width: 23%;
}

/*.picture-list-more a {
    display: ;
    float: ;
    overflow: hidden;
    width: 100%;
    margin:0;
    margin-left: 0;
    line-height: 0;
    position: ;
}

.picture-list-more a span {
    display: block;
    width: 100%;
    background-color: rgba(255, 255, 255, .85);
    color: var(--color-grey);
    padding: 15px 10px 15px 10px;
    position: absolute;
    bottom: 0;
}

.picture-list-more a {
    width: 100%;
}*/

@media (max-width: 1092px) {
	.picture-list-more .pic-back {
    	width: 48%;
        min-height: 200px;
	}
}

@media (max-width: 690px) {
	.picture-list-more .pic-back {
    	width: 48%;
        min-height: 100px;
	}
}


/* CRI - CopyRightInfo - Bildnachweise ################################################################ Info-Button über den Fotos, Grafiken und Videos */

.cri-wrapper {
    position: relative;
  }
  
  .cri-responsive {
    width: 100%;
    height: auto;
  }
  
  .cri-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1095;
    color: var(--color-grey) !important;
    background-color: transparent !important;
  }
  
  .cri-overlay a {
      background: transparent !important;
    color: rgb(85, 85, 85) !important;
  }
  
  .cri-overlay a:hover {
    background: rgb(185, 185, 185, 1) !important;
    color: rgb(85, 85, 85) !important;
  }
  
  .cri-overlay a:focus, .cri-overlay a:visited, .cri-overlay a:active {
    color: rgb(85, 85, 85) !important;
  }



  /* referenzen background ################################################################ referenzen background */

.pic-back {
    min-height: 190px;
    background-size: cover !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-position: center !important;
    border: 4px solid var(--color-white);
}

.pic-click {
    min-height: 190px;
    display: block;
    text-decoration: none !important;
}

@media (max-width: 375px) {

    .pic-back {
        min-height: 100px;
    }
    
    .pic-click {
        min-height: 100px;
    }

}

.gallery a:hover {
		text-decoration: none !important;
}

/* e referenzen background ################################################################ e referenzen background */



/* HR.STYLE <hr class="style-1"> ################################################################ HR.STYLE */


hr.style-1 {
    border: 0;
    height: 1px;
    background: var(--color-grey);
    background-image: linear-gradient(to right, #ccc, var(--color-grey), #ccc);
}

hr.style-2 {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

hr.style-3 {
    border: 0;
    height: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}








/* FOOTER ################################################################ FOOTER */

footer section {
	/*-webkit-box-shadow: inset 0px 4px 6px 10px rgba(0,0,0,0.6);
	-moz-box-shadow: inset 0px 4px 10px 0px rgba(0,0,0,0.6);
	box-shadow: inset 0px 4px 10px 0px rgba(0,0,0,0.6);*/
	/*background: #39498d !important;*/
	/*-webkit-box-shadow: inset 0px 20px 19px -10px rgba(0,0,0,0.6);
	-moz-box-shadow: inset 0px 20px 19px -10px rgba(0,0,0,0.6);
	box-shadow: inset 0px 20px 19px -10px rgba(0,0,0,0.6);*/
}

footer {
	color: var(--color-white);
}

footer a {
	color: var(--color-white);
}

footer a:hover {
	color: var(--color-white);
}

@media (max-width: 575px) {

	footer {
		text-align: center !important;
	}
	
	footer .text-right {
		text-align: center !important;
	}
	
	footer .text-left {
		text-align: center !important;
	}
	
}


/* CONSENT ################################################################ CONSENT */

.consent {
    font-size: .9rem;
}

.consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

/* IMPRESSUM DATENSCHUTZ ################################################################ IMPRESSUM DATENSCHUTZ */

.dsgvo h1 {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--color-grey);
    margin-bottom: 15px;
}

.dsgvo h2 {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-grey);
    margin-bottom: 15px;
}

.dsgvo h3 {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-grey);
    margin-bottom: 15px;
}

.dsgvo h4 {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-grey);
    margin-bottom: 15px;
}

.dsgvo a:focus, .dsgvo a:visited, .dsgvo a:active {
    color: #333;
}


/* sticky ################################################################ sticky */

/*.sticky {
    position: fixed !important;
    top: 0 !important;
    width: 100%;
    background-color: var(--color-white);
    z-index: 2010;
}*/

/* Standard: nicht sticky */
#mobile-sticky { position: static; }

/* Mobile: sticky aktiv */
@media (max-width: 689.98px) {
  #mobile-sticky {
    position: sticky;
    top: 0;
    z-index: 2020; /* über Inhalt */
  }
}




/* INDIVIDUAL ################################################################ INDIVIDUAL */

.sh-100 {
    height: 100vh !important;
}

@media (max-width: 690px) {

    .sh-100 {
        height: 85vh !important;
    }
	
}

.head-bg-img {
    background: url('../images/bg.jpg') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-color: #000;
}

@media (max-width: 690px) {

    .head-bg-img {
        background-attachment: inherit !important;
    }
	
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
	.head-bg-img {
        background-attachment: inherit !important;
    }
}

.span-bg {
    background-color: rgba(0,0,0,.6);
    color: #FA2706;
    padding: 15px 15px;
}

.display-1 {
    font-size: 4rem;
    font-weight: 900;
}

.display-2 {
    font-size: 3rem;
}

.display-3 {
    font-size: 2.8rem;
}

.display-4 {
    font-size: 2.6rem;
}

@media (max-width: 690px) {

    .display-1 {
        font-size: 2.8rem;
        font-weight: 900;
    }

    .display-2 {
        font-size: 2.4rem;
    }

    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.2rem;
        font-weight: 600;
    }

}

.box-0 {
    background-color: var(--bg-color-box-0);
}

.box-1 {
    background-color: var(--bg-color-box-1);
    transition: all .2s ease-in-out;
}

.box-1:hover {
    background-color: var(--bg-color-hover-box-1);
}

.box-2 {
    background-color: var(--bg-color-box-2);
    transition: all .2s ease-in-out;
}

.box-2:hover {
    background-color: var(--bg-color-hover-box-2);
}

.box-3 {
    background-color: var(--bg-color-box-3);
    transition: all .2s ease-in-out;
}

.box-3:hover {
    background-color: var(--bg-color-hover-box-3);
}


.box-4 {
    background-color: var(--bg-color-box-4);
    transition: all .2s ease-in-out;
}

.box-4:hover {
    background-color: var(--bg-color-hover-box-4);
}



#box a, #box a:hover {
    color: var(--color-white);
    text-decoration: none;
    display: block;
}

#box .h2 {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 500;
}

@media (max-width: 690px) {

    
    #box .h2 {
        font-size: 1rem;
    }
	
}

.section-teaser-header {
    font-weight: 300;
    font-size: 1.6rem;
}

@media (max-width: 690px) {

    .section-teaser-header {
        font-size: 1.2rem;
    }
	
}

.section-teaser {
    font-weight: 300;
    font-size: 1.6rem;
}

@media (max-width: 690px) {

    .section-teaser {
        font-size: 1.4rem;
    }
	
}


.section-teaser-ref {
    font-weight: 200;
    font-size: 1.6rem;
    margin-bottom: -10px;
}

@media (max-width: 690px) {

    .section-teaser-ref {
        font-size: 1.4rem;
    }
	
}


.section-teaser-ref-child {
    font-weight: 300;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

@media (max-width: 690px) {

    .section-teaser-ref-child {
        font-size: 1.4rem;
    }
	
}










/* background gradient ################################################################ background gradient */


.bg-radial-gradient {
    background-image: -moz-radial-gradient(50% 0%, ellipse cover, #354751, #000000 100%);
    background-image: -webkit-radial-gradient(50% 0%, ellipse cover, #354751, #000000 100%);
    background-image: -o-radial-gradient(50% 0%, ellipse cover, #354751, #000000 100%);
    background-image: -ms-radial-gradient(50% 0%, ellipse cover, #354751, #000000 100%);
    background-image: radial-gradient(50% 0%, ellipse cover, #354751, #000000 100%);
    background-color: #354751;
    
/*354751 EED069*/
}




/* loader INDEX ################################################################ loader INDEX */


#preloader {
  position: absolute; /*fixed*/
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,.9);
  z-index: 1200;
}

#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #39498d;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #0B4D74;
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #91885E;
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}





/* Animated Text INDEX ################################################################ Animated Text INDEX */

@media (min-width: 768px) {
    
    .typewriter {
        overflow: hidden; /* Ensures the content is not revealed until the animation */
        border-right: .15em solid orange; /* The typwriter cursor */
        white-space: nowrap; /* Keeps the content on a single line */
        margin: 0 auto; /* Gives that scrolling effect as the typing happens */
        animation: 
            typing 3.5s steps(40, end),
            blink-caret .75s step-end infinite;
        display: inline-block;
    }

    /* The typing effect */
    @keyframes typing {
        from { width: 0 }
        to { width: 100% }
    }

    /* The typewriter cursor effect */
    @keyframes blink-caret {
        from, to { border-color: transparent }
        50% { border-color: #39498d; }
    }
    
}



/* REFERENZEN INDEX ################################################################ REFERENZEN INDEX */

.position-absolute { 
    z-index: 1090;
} 

.position-absolute img { 
    visibility: hidden;
    text-align: center;
}

.position-absolute:hover img { 
    visibility: visible;
    text-align: center;
}

/*.position-absolute:hover:before {
    color:red;
    font-size:24px;
    background-image: url(http://beta.chemnitzer-webdesign.de/bartel/haustechnik-hunger.de/images/r_overlay.png);
}*/

.position-absolute-description { 
    position: absolute;
    width: 100%;
    z-index: 1094;
    color: var(--color-white);
    top: 48%;
    text-align: center;
    /*background-color: rgba(0,0,0,.2);
    height: 100%;
    padding-top: 48%;*/
}

.position-description .position-absolute-description { 
     visibility: hidden;
}

@media (max-width: 1024px) {
    
    .position-description .position-absolute-description { 
        visibility: visible;
        background-color: rgba(0,0,0,.5);
        padding: 10px 0 10px 0;
    }
    
}

.position-description:hover .position-absolute-description { 
    visibility: visible;
}


@media (min-width: 768px) {
    
    .imgb { 
        position: absolute;
        left: 50%;
        top: 50%;
        height: 100%;
        width: auto;
        transform: translate(-50%,-50%);
        z-index: 1080;
    }
    
}

.r-thumbnail {
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.r-thumbnail img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: auto;
  transform: translate(-50%,-50%);
}






/* .position::before ################################################################ .position::before */

/* 
Anker Sprungziel bei fixed-top Navigation
<a href="#Beispiel">Text</a>
<strong id="Beispiel" class="position">Text</strong>
*/

/*.position::before {
    display: block;
    content: "";
    height: 110px;
    margin-top: -110px;
    visibility: hidden;
}


@media (max-width: 690px) {

    .position::before {
        display: block;
        content: "";
        height: 160px;
        margin-top: -160px;
        visibility: hidden;
    }
	
}*/

.position { 
  /* optional zusätzlich für Browser, die scroll-padding-top ignorieren */
  scroll-margin-top: 60px;
}

@media (max-width: 689.98px) {
  html { scroll-padding-top: 180px; }     /* Mobile: echte Headerhöhe, wenn die Nav zu ist (nicht 260!) */
  .position { scroll-margin-top: 260px; }
}



/* BACK-TO-TOP ################################################################ BACK-TO-TOP */

.back-to-top {
	background: rgba(51,51,51,.8);
	font-weight: 800;
	color: var(--color-white);
	position: fixed;
	bottom: 50px;
	right: 20px;
	padding: .8rem 0 0 1.2rem;
	width: 50px;
	height: 50px;
	border: 0px solid #000;
	transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	z-index: 999999999999;
	
}

a.back-to-top {
	text-decoration: none !important;
	color: var(--color-white);
}

a:hover.back-to-top {
	text-decoration: none !important;
	background-color: rgba(255,255,255,.7);
	color: var(--color-grey);
}



/* txt-slides ################################################################ txt-slides */

#txt-slides-box {
  overflow: hidden;
  width: 100%;
  height: 250px;
  padding-top: 70px;
}

@media (max-width: 575px) {

	#txt-slides-box {
  		height: 350px;
	}
	
}

.item-1, 
.item-2, 
.item-3 {
	position: absolute;
	display: block;
	top: 0;
	width: 50%;
	height: auto;
	text-align: center;
	background-color: transparent;
	overflow-x: hidden;
	overflow-y: auto;
	animation-duration: 20s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

.item-1{
	animation-name: anim-1;
}

.item-2{
	animation-name: anim-2;
}

.item-3{
	animation-name: anim-3;
}

@keyframes anim-1 {
	0%, 8.3% { left: -100%; opacity: 0; }
  8.3%,25% { left: 25%; opacity: 1; }
  33.33%, 100% { left: 110%; opacity: 0; }
}

@keyframes anim-2 {
	0%, 33.33% { left: -100%; opacity: 0; }
  41.63%, 58.29% { left: 25%; opacity: 1; }
  66.66%, 100% { left: 110%; opacity: 0; }
}

@keyframes anim-3 {
	0%, 66.66% { left: -100%; opacity: 0; }
  74.96%, 91.62% { left: 25%; opacity: 1; }
  100% { left: 110%; opacity: 0; }
}



/* parallax ################################################################ parallax */

.sh-bg-1 {
	height: 400px;
	background: url(../images/bg.jpg) no-repeat center center;
	background-attachment:;
	background-size: auto auto;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.sh-bg-2 {
	height: 400px;
	background: url(../images/bg.jpg) no-repeat center center;
	background-attachment:;
	background-size: auto auto;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.sh-bg-3 {
	height: 400px;
	background: url(../images/bg.jpg) no-repeat center center;
	background-attachment:;
	background-size: auto auto;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.sh-bg-kontakt {
	height: 200px;
	background: url(../images/bg.jpg) no-repeat center center;
	background-attachment: fixed;
	background-size: auto auto;
    width: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.s-pl-bg {
	background-color: rgba(0,0,0,.5);
}

@media (max-width: 575px) {

	.sh-bg-1, .sh-bg-2, .sh-bg-3, .sh-bg-kontakt {
		background-attachment: inherit;
	}
	
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
	
    .sh-bg-1, .sh-bg-2, .sh-bg-3, .sh-bg-kontakt {
		background-attachment: inherit;
	}
    
}





/* BIG Font Awesome Font Size ################################################################ BIG Font Awesome Font Size */


.bfas .fas {
	/*font-size: 600%;*/
}




/* FontAwesome to <ul class="c-ul"><li>Lorem ipsum</li></ul> ################################################################ FontAwesome to */

ol {
	padding-left: 20px;
}

ul {
  list-style-type: none;
  padding-left: 0;
}

.c-ul ul {
  list-style-type: none;
  padding-left: 0;
}

.c-ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 0;
}

.c-ul li:before {
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  /*font-weight: 900;*/
  font-weight: 400;
  content: "\f058";
  color: var(--color-primary);
}


/* ICON FontAwesome to <ul class="c-ul-icon"><li>Lorem ipsum</li></ul> ################################################################ FontAwesome to */

.c-ul-icon ul {
  list-style-type: none;
  padding-left: 0;
}

.c-ul-icon li {
  position: relative;
  padding-left: 70px;
  padding-top: 15px;
  margin-bottom: 10px;
}

.c-ul-icon-1 li:before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/l-icon_01.png);
  background-size: 54px 54px;
  display: inline-block;
  width: 54px; 
  height: 54px;
  content: "";
}

.c-ul-icon-2 li:before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/l-icon_02.png);
  background-size: 54px 54px;
  display: inline-block;
  width: 54px; 
  height: 54px;
  content: "";
}


.c-ul-icon-3 li:before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/l-icon_03.png);
  background-size: 54px 54px;
  display: inline-block;
  width: 54px; 
  height: 54px;
  content: "";
}

.c-ul-icon-4 li:before {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(../images/l-icon_04.png);
  background-size: 54px 54px;
  display: inline-block;
  width: 54px; 
  height: 54px;
  content: "";
}


/* timeline ################################################################ timeline */

.timeline-head-bg {
	background-color: #39498d;
}

.timeline-section-bg {
	background-image: linear-gradient( 135deg, #ccd8e1 10%, #a3acb4 100%);
	/*background-color: #ccd8e1;*/
}

.timeline {
	margin-left: -90%;
}

.timeline ul li {
	list-style-type: none;
	position: relative;
	width: 6px;
	margin: 0 auto;
	padding-top: 50px;
	background: #39498d;
}

.timeline ul li::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: inherit;
}

.timeline ul li div {
	position: relative;
	bottom: -25px;
	width: 75vw;
	padding: 15px;
	background: rgba(255, 255, 255, 0.5);
}

.timeline ul li div::before {
	content: "";
	position: absolute;
	bottom: 25px;
	width: 0;
	height: 0;
	border-style: solid;
}

.timeline ul li:nth-child(odd) div {
	left: 45px;
}

.timeline ul li:nth-child(odd) div::before {
	left: -15px;
	border-width: 15px 15px 15px 0;
	border-color: transparent rgba(255, 255, 255, 0.5) transparent transparent;
}

.timeline ul li:nth-child(even) div {
	left: 45px;
}

.timeline ul li:nth-child(even) div::before {
	left: -15px;
	border-width: 15px 15px 15px 0;
	border-color: transparent rgba(255, 255, 255, 0.5) transparent transparent;
}

.timeline h4 {
	font-size: 1.5em;
	font-weight: 200;
	color: #111;
}


@media only screen and (min-width: 992px) {
  
  .timeline {
	margin-left: 0;
  }
  
  .timeline ul li div {
    width: 400px;
  }
  
  .timeline ul li:nth-child(even) div {
    left: -439px;
  }
  
  .timeline ul li:nth-child(even) div::before {
    left: 400px;
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent rgba(255, 255, 255, 0.5);
  }

}










/* INDIVIDUAL toggler ################################################################ INDIVIDUAL toggler */

.navbar-toggler {
    border: 0;
}

.navbar-dark .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(51, 51, 51, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}







/* NO or GO Google Maps */

.gmod {
  width: 100%;
  height: 400px;
  outline: 1px solid rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}

.gmod .bg_map {
  position: absolute;
  top: -1%;
  left: -1%;
  height: 102%;
  width: 102%;
  background-image: url('../images/gmod-bg.png');
  background-repeat: repeat;
  background-position: 0 0;
  filter: blur(.3rem);
}

.gmod .opt_in_banner {
  background-color: rgba(120,120,120,.8);
  color: var(--color-white);
  padding: 1em;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  font-size: .85em;
}

.gmod .opt_in_banner .desc {
  color: var(--color-white);
  text-align: center;
  margin-bottom: 1em;
  line-height: 1.3em;
}

.gmod .opt_in_banner .desc a {
  color: inherit !important;
    text-decoration: underline;
}

.gmod .opt_in_banner .show_map_btn {
  display: inline-block;
  padding: .6em 1.2em;
  margin-bottom: .9em;
  background-color: #2AA549;
  color: var(--color-white);
  border: none;
  font-size: 1em;
  line-height: 1.2em;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.3);
}

.gmod .opt_in_banner .show_map_btn:hover {
  background-color: #208039;
}


.transition {
    transition: transform 0.3s ease;
}

button[aria-expanded="true"] .fa-chevron-down {
    transform: rotate(180deg);
}
    


.lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.85);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
    }

    .lightbox-content img {
      max-width: 100%;
      max-height: 100%;
      display: block;
      cursor: pointer;
    }

    .lightbox-close {
      position: absolute;
      top: -1.5rem;
      right: -1.5rem;
      font-size: 1rem;
      color: white;
      background: black;
      border: none;
      border-radius: 50%;
      width: 2.5rem;
      height: 2.5rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    #lightbox-caption {
      color: var(--color-white);
      text-align: center;
      margin-top: 1rem;
      font-size: 0.95rem;
      max-width: 80vw;
    }

    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
        border: 0;
    }


   

    /* BFSG */

	.text-black {
		color: #000;
	}
    
    .text-danger {
        color: #bb232f !important;
    }

	.bg-black {
		background-color: black !important;
	}
    
	.btn-success {
		background-color: #1a732e !important;
	}

	.btn-outline-success {
		color: #2e753e;
		border-color: #2e753e !important;
	}

	.cri-wrapper {
		position: relative;
	}
	
	.cri-responsive {
		width: 100%;
		height: auto;
	}
	
	.cri-overlay {
		position: absolute;
		bottom: 0;
		right: 0;
		color: var(--color-grey) !important;
		background-color: transparent !important;
	}
	
	.cri-overlay a {
		background: var(--color-white) !important;
		color: #000 !important;
	}
	
	.cri-overlay a:hover {
		background: var(--color-white) !important;
		color: #000 !important;
	}

	.cri-overlay .card {
		z-index: 30;
	}
	
	.cri-overlay a:focus, .cri-overlay a:visited, .cri-overlay a:active {
		color: #000 !important;
	}

	.gmod .opt_in_banner {
		background-color: rgba(0,0,0,1);
		color: var(--color-white);
	}

	.gmod .opt_in_banner .show_map_btn {
		border-color: #2e753e !important;
        background-color: #2e753e;
	}

	.carousel-control-next-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e");
		background-color: black !important;
		border: 2px solid black;
	}

	.carousel-control-prev-icon {
		background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e");
		background-color: black !important;
		border: 2px solid black;
	}

	.carousel-control-next, .carousel-control-prev {
		opacity: 1;
		z-index: 2;
	}

	:focus-visible,
	*:focus-visible:not(#go-content),
    .focus-visible-only:focus-visible:not(#go-content) {
		outline: 2px dashed #035fff !important;
		outline-offset: 2px !important;
		color: #035fff !important;
		background-color: rgba(255, 255, 255, 0.8) !important;
	}

	a:focus-visible:not(#go-content),
	button:focus-visible,
	.button:focus-visible,
	input:focus-visible,
	select:focus-visible,
	textarea:focus-visible,
	label:focus-visible,
	figure:focus-visible,
	[tabindex]:focus-visible {
		outline: 2px dashed #035fff !important;
		outline-offset: 2px !important;
		color: #035fff !important;
		background-color: rgba(255, 255, 255, 0.8) !important;
	}

	.focus-visible-logo:focus-visible {
		outline: 2px dashed #035fff !important;
		outline-offset: 2px !important;
		color: #035fff !important;
		background-color: rgba(0, 0, 0, 0.8) !important;
	}

	.focus-visible-only-footer-button:focus-visible {
		outline: 2px dashed #035fff !important;
		outline-offset: 2px !important;
		color: #035fff !important;
		background-color: rgba(255, 255, 255, 0.8) !important;
	}

	.using-mouse :focus,
	*:focus:not(:focus-visible) {
		outline: none !important;
	}
    

     /* BFSG Skip-Link */
    #go-content {
        position: absolute;
        left: -9999px;
        top: auto;

        z-index: 5000;
        padding: .625rem .875rem;
        text-decoration: none;
        border-radius: .375rem;
        box-shadow: 0 2px 8px rgba(0,0,0,.25);

        background: #000 !important;
        color: #fff !important;
    }

    /* Einblenden bei Tastaturfokus */
    #go-content:focus-visible,
    #go-content:focus {
        position: fixed;
        left: .5rem;
        top: .5rem;

        outline: 2px dashed #035fff !important;
		outline-offset: 2px !important;
		color: #035fff !important;
		background-color: rgba(255, 255, 255, 1) !important;
    }
    @media print { #go-content { display: none; } }
