@import "/includes/includes/global.css";
@import "/includes/fonts/nunito/styles.css";
@import "https://cdn.jsdelivr.net/npm/jquery-animated-headlines@1.0.0/dist/css/jquery.animatedheadline.min.css";

:root {
	--color-blue: #213678;
	--color-main: #ef7420;
	--color-gray: #2B2B2B;
}

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

body{
	font-family:'Nunito';
	font-size:1.1rem;
	color:#2B2B2B;
}

h1,h2,h3,h4,h5,h6{
    margin:0 0 25px;
    padding:0;
    letter-spacing:0;
    font-weight:500;
    font-family:Montserrat,sans-serif;
    color:#232323
}
h1{
    font-size:70px;
    line-height:70px
}
h2{
    font-size:55px;
    line-height:60px
}
h3{
    font-size:48px;
    line-height:54px
}
h4{
    font-size:40px;
    line-height:46px
}

img {
  max-width: 100%;
  height: auto;
}

ul.check li {
	list-style: none;
	padding: 0 0 10px 25px;
}

ul.check li:last-child {
	padding-bottom: 0;
}

ul.check li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Pro';
  font-weight: 900;
  color: var(--color-main);
  display: inline-block;
  width: 1.5em;
  margin-left: -1.5em;
}

ul.check.orange li::before {
  color: var(--color-main);
}







p > a {
	color: var(--color-main);
	text-decoration: none;
	border-bottom: 1px dotted gray;
}

p > a:hover {
	color: var(--color-gray);
}

.section{
	padding:70px 0
}

.logo {
  padding: 15px 0;
  width: 125px;
}

.btn {
	background: var(--color-main);
	border: none;
}

.btn:hover {
	background: var(--color-gray);
}

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #ccc;
  border-color: #888;
  cursor: no-drop;
}

.form-check-input:checked {
  background-color: var(--color-main);
  border-color: var(--color-main);
}





/* Header */
.header {
  min-height: 100vh;
  overflow: hidden;
  position: relative;
}

.header:before, .cover:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background:#000;
	opacity:0.4;
}

.bg {
	background-image: url("/images/bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}

.cover2 {
	background-image: url("/images/bg_leistungen.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}

.cover2:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background:#000;
	opacity:0.4;
}




.header .caption h1 {
	margin: 10px 0;
	font-size: 50px;
	font-weight: 500;
	text-transform: uppercase;
	animation-delay: .8s;
	color: white;
}

.header .caption h2 {
	font-size: 2rem;
	color: white;
}

.header .caption p {
  font-size: 18px;
  color: #eee;
  word-spacing: 2px;
  animation-delay: 1.2s;
}


.header .arrow {
  position: absolute;
  bottom: 40px;
  width: 100%;
  text-align: center;
  font-size: 2rem;
  z-index: 8;
}


.header .arrow a {
  color: var(--color-main);
}


#hamburger {
	background: var(--color-main);
	border: 1px solid var(--color-main);
}



.ontop {
	position: relative;
  z-index: 2;
}

.theme-color {
	color: var(--color-main);
}




/* Wave Animation */
.wave-area {
	height: 5%;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #fff;
	z-index: 1;
}

.wave {
  background: url("/images/wave.svg") repeat-x;
  position: absolute;
  top: -100px;
  width: 6400px;
  height: 100px;
  animation: wave 35s cubic-bezier(.36,.45,.63,.53) infinite;
  transform: translate3d(0,0,0);
}

.wave:nth-of-type(2) {
  top: -56px;
  animation: wave 20s cubic-bezier(.36,.45,.63,.53) -125ms infinite,swell 7s ease -1.25s infinite;
  opacity: 1;
}

@keyframes wave {
	0%{margin-left:0}
	100%{margin-left:-1600px}
}

@keyframes swell {
	0%,100%{transform:translate3d(0,-45px,0)}
	50%{transform:translate3d(0,5px,0)}
}





/* Navbar */
.navbar{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    background:#fff;
    z-index:9;
    min-height:70px;
    padding:0;
    border-bottom:1px solid rgba(255,255,255,.15)
	   -webkit-box-shadow: 0px 4px 15px -3px rgba(0,0,0,0.72); 
box-shadow: 0px 4px 15px -3px rgba(0,0,0,0.72);
}
.navbar .icon-bar{
    color:#fff
}
.navbar.bg-white .icon-bar {
    color:#232323
}

.navbar .nav-link {
	font-weight:600;
	color: #333;
	letter-spacing:.5px;
	margin:0;
	padding:10px 15px;
	transition:all .5s;
	text-align:left;
	text-transform:uppercase
}

.navbar .nav-link:hover, .navbar .nav-link.active  {
	color:var(--color-main)
}



.ah-headline.clip .ah-words-wrapper::after {
  background-color: white; /*var(--color-main);*/
}

.ah-words-wrapper b {
  color: var(--color-main);
}




.block-title {
	text-align: center;
	margin-bottom: 2rem;
}

.block-title h2 {
  font-weight: 300;
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  
}

.block-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 2px;  /* Dicke des Strichs */
  background-color: var(--color-main);
  border-radius: 1px; /* optional, f�r abgerundete Enden */
}





.parallax {
  position: relative;
  background-size: cover;
  overflow: hidden;
  background-attachment: fixed;
}

.parallax h5 {
	color: white;
}
.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
}




.feature-box {
	text-align: center;
	padding: 2rem;
	height: 100%;
}

.feature-box li {
  margin-bottom: 1rem;
}

.feature-box li:last-child {
  margin-bottom: 0;
}

.feature-icon {
	background: var(--color-main);
	width: 60px;
	height: 60px;
	border-radius: 50%;
	margin: 0 auto;
	color: white;
	align-items: center !important;
	justify-content: center !important;
	display: flex;
	font-size: 1.5rem;
}

.feature-box h4 {
  font-size: 1.5rem;
  margin: 1rem 0;
}

.feature-box li b, .feature-box li strong {
  color: var(--color-main);
}









/* Footer */
.reading {
	font-size: 1rem;
	color: #ccc !important;
}

.footercover {
	background-image: url("https://images.unsplash.com/photo-1619548788367-ae9949f79242?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1470&q=80");
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: cover !important;
	position: relative;
}

.footercover:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
	background:#000;
	opacity:0.4;
}

.footercover p, .footercover .form-check-label {
	color: white;
}

.footercover h3 {
	color: white;
	font-size: 2rem;
}



.footer-pad {
	text-align: center;
	margin: 0;
}

.footer-pad li {
  display: inline;
  margin: 0 2rem;
  color: white;
}

.footer-pad a {
	color: white;
	text-decoration: none;
}




.back-to-top {
	color: var(--color-main);
	position: fixed;
	z-index: 1000;
	right: 25px;
	bottom: 15px;
	font-size: 3rem;
	cursor: pointer;
	opacity: 0;
	transition: opacity 350ms;
}

.back-to-top.reveal {
  cursor: pointer;
  transition: all .3s;
  opacity: 1;

}























.leistung {
	color: white;
}

.leistung h3 {
	color: white;
	font-size: 2rem;
}

.leistung .parallax {
	padding: 4rem 0;
}



.help-block.form-error {
	color: yellow;
}




#banner-wrapper {
	z-index: 997;
    position: fixed;
    right: 0;
    top: 34%;
}

#banner-wrapper .btns {
	height: 60px;
	padding: 15px;
	cursor: pointer;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-ms-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 0.5s ease;
	width: 60px;
	background: gray;
	border: 1px solid white;
	margin-bottom: 5px;
	color: white;
}

#banner-wrapper .btns-details {
	color: white;
	display: none;
	padding: 20px;
	transition: all 0.5s ease;
}

#banner {
	position: relative;
}

#btns-details-wrapper {
    position: absolute;
    right: 0;
    width: 0px;
    background: rgba(245,130,33,0.6);
    top: 0;
    bottom: 0;
    z-index: -1;
	 border: 1px solid white;
	 transition: all 0.5s ease;
}




/* Bauplazu */
.map-wrap {
	position: relative;
	overflow: hidden;
}

.map {
	width: 100%;
	display: block;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}

.marker {
	position: absolute;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #10b981;
	box-shadow: 0 0 0 2px rgba(0,0,0,.25), 0 4px 10px rgba(0,0,0,.35);
	transform: translate(-50%, -50%);
	cursor: pointer;
}

.marker:hover { filter: brightness(1.15); }

.marker.green {
	background: green!important;
}

.marker.red {
	background: red!important;
}

.marker.yellow {
	background: yellow!important;
}





.popover {
	-webkit-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 4px 0px rgba(100,100,100,0.5);
}


.popover .popover-body {
	font-size: 0.93rem;
	padding: 0.8rem;
	max-height: 400px;
  overflow: auto;
}

.popover .popover-body .table.smallpopup td {
	padding: 0.3rem;
}

.popover .popover-body p:last-child {
	margin: 0;
}

.popover-header {
	background: #d1ecd1;
	line-height: 1rem;
}


.marker.circle { border: 5px solid red;}
.green {color: green!important;}
.red {color: red!important;}
.yellow {color: yellow!important;}
.arealist{
	cursor: pointer;
}


/* ===== Responsive / Resize ===== */
.offcanvas {width: 80%!important;}
.offcanvas-body {padding-top: 0;}
.offcanvas ul {padding:0;}
.offcanvas li {list-style: none;}
.offcanvas .nav-item {margin-bottom: 10px;}
#canvasBody .subnav {padding-left: 0px;}
.offcanvas .nav-link {color: #333;}
.offcanvas .col.subnav {margin-bottom: 20px;}



@media(max-width:768px) {

body {
	font-size: 1rem;
}

.header {
  min-height: 60vh;
}

.header .caption h2 {
  font-size: 1.7rem;
  line-height: 2.4rem;
}

.header .caption h1 {
  font-size: 28px;
  line-height: 2rem;
}

.section {
  padding: 30px 0;
}

.block-title h2 {
  font-size: 1.9rem;
  line-height: 2.6rem;
  hyphens: auto;
}

#offcanvasLeft #logo {
  max-height: 60px;
}


}
