@charset "UTF-8";

/* ---------- FONTS------------------- */

/*google Fonts für Schriften*/
@import url("fonts.css");

/* ---------- FARBEN ------------------- */

:root {
	--primary-clr: #091F39;
	--secondary-clr: #39ADBC;
	--tertiary-clr: #99CC31;
	--font-clr: #000;
	--light-clr: #818181;
	--background-clr: #F2F2F2;
	--white-clr: #fff;
}


/* ---------- GENERIC -------------------*/
body {
	font-family: "Montserrat", sans-serif;
  	font-size: 16px;
  	color:var(--font-clr);
	background-color:var(--white-clr);
	font-weight: 500;
	overflow-x: hidden;
}
body > header {
	height: 100vh;
	overflow:hidden;
	position: relative;
}
main {
	padding-bottom: 30px;
}
footer {
	background-image: url(../Img/footer-img.jpg);
	color: #fff;
}
footer a {
	color: #fff;
}

/* ---------- ELEMENTS -------------------*/

/* .............. headlines ...... */

h1, h2, h3, h4 {
	font-family: "Goldman", sans-serif;
	font-weight: 400;
	color: var(--primary-clr);

}
h1, h2 {
	text-transform: uppercase;
}
h1 {
	font-size: 38px;
	margin-top: 100px;
	position: relative;
	margin-bottom: 2.5rem;
}
h1:before {
	content: url(../Img/dots-blue.png);
	position: absolute;
	left: -26px;
    top: -47px;
}
h2 {
	font-size: 30px;
	margin-top: 2.4rem;
	margin-bottom: 1.5rem;
}
h3 {
	font-size: 1.7rem;
	margin-bottom: 1.25rem;
	margin-top: 1.75rem;
}

/* .............. text ...... */
p {
	font-size: 1rem;
	margin-bottom: 1.6rem;

}
/* .............. links ...... */
a {
	color: var(--primary-clr);
}
a:hover {
	color: var(--tertiary-clr);
	text-decoration: none;
}
/* .............. buttons ...... */
.button,
.btn {
	padding: 5px 15px;
    border-radius: 50px;
    background: var(--tertiary-clr);
    text-transform: uppercase;
    color: var(--white-clr);
	font-weight: 600;
	border:none;
}
.button:hover,
.button:focus,
.btn:focus,
.btn:hover {
	box-shadow: none;
	background: var(--secondary-clr);
	color: var(--white-clr);
}


/* .............. other ...... */
main .frame-type-text ul {
	margin-bottom: 1.6rem;
}
main .frame-type-text ul li {
	margin-bottom: 7px;
}
img {
  	max-width: 100%;
  	height: auto;
}
/* ---------- COMPONENTS -------------------*/

/* .............. basic styles ...... */

/* Basic grid */
.grid {
	display:grid;
	gap: 1rem;
	margin-bottom: 2.25rem;
	justify-items:center;
}

/* frame */
.frame,
.dce-image-text,
.angebot,
.dce-image-tiles {
	margin-bottom: 90px;
}
.frame + .fullwidth,
.dce-image-text + .fullwidth{
	margin-top: -90px;
}
/* background */

.bg-light {
	background-color: var(--background-clr);
}


/* .............. header ...... */


/* alles um das logo, die topbar und die navi herum*/
@media(min-width: 576px){
	.navbar {
		padding: 0 10vw;
	}
}
.navbar {
	border-bottom: solid 20px var(--primary-clr);
	padding-top: 20px;
	padding-bottom: 20px;
}

@media(max-width: 1200px){
	.header-flex {
		display:flex;
		flex-direction: column-reverse;
	}
}
@media (min-width: 1200px) {
	/* beide navis rechts anordnen*/
	.navbar-expand-xl .navbar-collapse {
		justify-content: flex-end;
	}

	.navbar {
		padding-bottom: 0;
	}
}

/* .............. navigation ...... */

.navbar-nav {
	position: relative;
	flex-direction: row;
	flex-wrap: wrap;
}
@media(min-width:1200px){
	.navbar-nav {
		justify-content: space-between;
		background-color: var(--primary-clr);
	}
	.navbar-nav:before {
		content: "";
		border-bottom: 47px solid var(--primary-clr);
		border-left: 40px solid transparent;

		position: absolute;
		top:0;
		left: -40px;
	}
	.navbar-nav:after {
		content: "";
		background-color: var(--primary-clr);
		height: 100%;
		width: 10vw;
		position: absolute;
		top: 0 ;
		right: -10vw;
		bottom: 0;
	}
}

/* Links */
@media(min-width: 1200px){
	.nav-item:first-child {
		padding-left:25px;
	}
}

.nav-link {
	padding: 20px 20px 0 !important;
	text-transform: uppercase;
	position:relative;
}
.nav-link:after {
	content: '';
    height: 5px;
    position: absolute;
    bottom: -5px;
    margin: 0 auto;
    left: 0rem;
    right: 100%;
    -o-transition: .5s;
    -ms-transition: .5s;
    -moz-transition: .5s;
    -webkit-transition: .5s;
	transition: .5s;
	background: var(--tertiary-clr);
}
.nav-link:hover, .active .nav-link {
	color: var(--tertiary-clr);
}
.nav-link:hover:after, .active .nav-link:after {
	right: 0rem;
}
@media(min-width: 1200px){
	.nav-link {
		color: #fff;
		padding: 20px 0 0 !important;
	}
	.nav-link:after {
		bottom: -20px;
	}
}
/* Mobil Button */

/* Mobil */


/* .............. topnavi ...... */
.topnavi {
	padding: 20px 0;
}

.topnavi .box {
	display:flex;
    align-items: flex-start;
}

.topnavi i {
	font-size: 1.3rem;
	color: var(--secondary-clr);
	margin-right: 15px;
}
.topnavi p {
	color: var(--light-clr);
}
.topnavi p a {
	display:inline-block;
}
.topnavi .btn {
	font-size: 1.2rem;
    padding: 8px 18px;
}
@media(min-width: 1200px){
	.topnavi .row {
		justify-content: flex-end;
		width: 680px;
	}
	.topnavi .col-12:last-child .box{
		justify-content: flex-end;
	}

	.topnavi .col-12:first-child .box {
		border-right: solid 2px var(--background-clr);
	}
}
/* .............. logo ...... */

/* .............. keyvisual ...... */
.dce-keyvisual picture:after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(9,31,57,.6);
	position: absolute;
	top: 0;
	left: 0;
    right: 0;
    bottom: 0;
}
.dce-keyvisual img {
	width: 100%;
	height: 100vh;
    object-fit: cover;
}
.dce-keyvisual .textbox {
	width: 800px;
}
.dce-keyvisual h4 {
	background: none;
	font-size: 36px;
	font-weight: 400;
	position: relative;
}
.dce-keyvisual h4:before {
	content: url(../Img/dots.png);
	position: absolute;
	left: -5px;
	top: -40px;
}
.dce-keyvisual .text {
	background: none;
	color: #fff;
}
.dce-keyvisual > .d-flex {
	bottom: 25%;
}
@media(min-width: 1200px){
	.dce-keyvisual .container {
		max-width: 1500px;
	}
}
@media (max-width: 767px) {
	.dce-keyvisual .textbox {
		display:block;
	}
	.dce-keyvisual h4{
		font-size: 24px
	}
	.dce-keyvisual > .d-flex {
		bottom: 20%;
	}
}
/* .............. slider ...... */

.dce-logoslider {
	position: absolute;
	bottom: 0;
	height: 80px;
	width: 100%;
}
.dce-logoslider:before {
	content: "";
	height: 2px;
	width: 70%;
	position: absolute;
	bottom: 100px;
	left: 14%;
	margin: 0 auto;

	background-color: #fff;
	opacity: .4;
}
.dce-logoslider .slick-next {
	right: 5%;
}
.dce-logoslider .slick-prev {
	left: 5%;
}
.dce-logoslider .slick-list {
	width: 80%;
	margin: 0 auto;
}
.dce-logoslider .slick-slide {
	height: 40px;
	width: auto;
	margin: 0 16px;
}
.dce-logoslider .slick-slide img {
	max-height: 100%;
    width: auto;
    margin: 0 auto;
    opacity: .6;
    max-width: 100%;
    height: auto;
}
.dce-logoslider .slick-slide:hover img {
	opacity: 1;
}

.slick-prev:before, .slick-next:before {
	display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	
	font-family: "Font Awesome 5 Pro"; 
	font-weight: 500; 

	font-size: 27px;
	opacity: .6;
	
}
.slick-prev:hover:before, .slick-next:hover:before {
	opacity: 1;
}
.slick-prev:before {
	content: "\f104";
}
.slick-next:before {
	content: "\f105";
}
/* .............. CONTENT .................... */

/* .............. start dce-imgage-text ...... */
#c17595 .fullwidth {
	padding: 0;
	overflow: hidden;
} 
#c17595 .dce-image-text{
	margin-bottom: 0;
} 
.pid2666 .dce-image-text .text-wrap {
	padding-bottom: 3rem;
}
@media(min-width: 991px) {
	.pid2666 .dce-image-text .row {
		display: flex;
		flex-wrap: nowrap;
	} 
	.pid2666 .dce-image-text .row > div {
		-ms-flex: inherit;
		flex: inherit;
		max-width: inherit;
	} 
	.pid2666 .dce-image-text .text-wrap {
		flex-basis: 65% !important;
		padding-bottom: 5rem;
		padding-right: 3rem;
	}
	.pid2666 .dce-image-text .image-wrap {
		flex-basis: 35% !important;
		position: relative;
		padding: 0;
	}
	.pid2666 .dce-image-text .image-wrap img {
		display: block;
		width: 50vw;
		max-width: 50vw;
		height: 100%;
		object-fit: cover;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin-right: calc(100% - 50vw);
	}
}
/* .............. dce-teaser ...... */

.dce-teaser .box {
	align-items: center;
}
.dce-teaser .text-wrap {
	text-align: center;
}
.dce-teaser > .container > header > h3 {
	text-align: center;
	font-size: 34px;
	margin-bottom: 70px;
	color: var(--primary-clr);
}
.dce-teaser img {
	width: 35px;
	height: 35px;
}
.dce-teaser h3 {
	color: var(--secondary-clr);
	text-transform: uppercase;
	margin-bottom: 10px;
}
.dce-teaser p {
	margin-bottom: 0;
}

/* .............. dce-kontakt störer ...... */

.angebot {
	max-width: 100vw !important;
    width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
	padding: 4rem 0;

	background-image: url(../Img/kontakt.jpg);
}

.angebot-text {
	color: #fff;

	display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.angebot-text h2 {
	color: #fff;
	margin-bottom: 30px;
}
.angebot-text p {
	margin-left: 30px;
}

.angebot-text .btn{
	background: none;
    border: none;
    border-radius: 0;

	position: relative;
	display: inline-block;
	text-align: center;
	cursor: pointer;
	outline: none;
	border: 0;
	vertical-align: middle;
	text-decoration: none;
	padding: 1rem 3rem;
	font-size: inherit;
	font-family: inherit;
	height: auto;
	z-index:1;


    align-self: flex-end;
  }
  @media(min-width: 991px){
	.angebot-text .btn {
		margin-top: -3.5rem;
	}
  }
  .angebot-text .btn:before {
	position: absolute;
	content: '';
	top: 41%;
	left: 4.5%;
	width: 0.6rem;
	height: 0.6rem;
	border-top: 0.125rem solid #fff;
	border-right: 0.125rem solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	transition:all 0.45s cubic-bezier(0.65,0,.076,1);
  }
  .angebot-text .btn:after {
	content: '';
	position: absolute;
	left: 0;
	top: 15%;
	width: 2.5rem;
	height: 2.5rem;
	background: var(--secondary-clr);
	border-radius: 1.625rem;
	z-index: -1;
	transition:all 0.45s cubic-bezier(0.65,0,.076,1);
  }
  .angebot-text .btn:hover {
	color: #fff;
  }
  .angebot-text .btn:hover:after {
	width: 90%;
  }
  .angebot-text .btn:hover:before {
	left: 9%;
  }


/* .............. dce-bild kacheln ...... */
.dce-image-tiles h2 {
	text-align: center;
}
.dce-image-tiles .tile .text-wrap {
	background:none;
}

/* Icons allgemein */
.dce-image-tiles .tile .text-wrap {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-pack: center;
    align-items: center;
    text-align: center;
    z-index: 10;
}
.dce-image-tiles .text-wrap *:not(.btn) {
    color: rgba(255,255,255,.9);
}
.dce-image-tiles .text-wrap header > *:not(.btn) {
    color: rgba(255,255,255,1);
}
.dce-image-tiles .row .grid-3 header:before,
.dce-image-tiles .row .grid-3 header:after {
	font-family: "Font Awesome 5 Duotone";
	font-weight: 900;
	font-size: 4rem;

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateY(-50%);
	text-align: center;
	-webkit-transition: all .4s ease-in-out;
		-moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		-o-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
}

.dce-image-tiles .row .grid-3 header:before {
	color: var(--fa-primary-color, inherit);
	opacity: 1;
	opacity: var(--fa-primary-opacity, 1.0);
}
.dce-image-tiles .row .grid-3 header:after {
	color: var(--fa-secondary-color, inherit);
	opacity: var(--fa-secondary-opacity, 0.4);
}
/* icon 1 */
.dce-image-tiles .row .grid-3:nth-child(1) header:before{
	content: "\f0e3";
}
.dce-image-tiles .row .grid-3:nth-child(1) header:after{
	content: "\10f0e3";
}
/* icon 2 */
.dce-image-tiles .row .grid-3:nth-child(2) header:before{
	content: "\f7a2";
}
.dce-image-tiles .row .grid-3:nth-child(2) header:after{
	content: "\10f7a2";
}
/* icon 3 */
.dce-image-tiles .row .grid-3:nth-child(3) header:before{
	content: "\f4bf";
}
.dce-image-tiles .row .grid-3:nth-child(3) header:after{
	content: "\10f4bf";
}
/* icon 4 */
.dce-image-tiles .row .grid-3:nth-child(4) header:before{
	content: "\f53a";
}
.dce-image-tiles .row .grid-3:nth-child(4) header:after{
	content: "\10f53a";
}
/* icon 5 */
.dce-image-tiles .row .grid-3:nth-child(5) header:before{
	content: "\f82c";
}
.dce-image-tiles .row .grid-3:nth-child(5) header:after{
	content: "\10f82c";
}
.dce-image-tiles .tile h3 {
	margin-top: 3rem;
}

@media(max-width: 991px){
	.dce-image-tiles .row > div {
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
	.dce-image-tiles .tile .hover-content {
		opacity: 0;
   		max-height: 0;
	}
	.dce-image-tiles .tile:hover .hover-content, 
	.dce-image-tiles .tile:focus .hover-content {
		max-height: 100%;
		opacity: 1;
	}
	.dce-image-tiles .tile:hover header h3 {
		opacity: 0;
		height: 0;
	}
	.dce-image-tiles .tile {
		overflow: visible;
		background: gray;
	}
	.dce-image-tiles > header > h2 {
		margin-bottom: 5rem;
	}
	.dce-image-tiles .row .grid-3 header:before, 
	.dce-image-tiles .row .grid-3 header:after {
		font-size: 3rem;
		top: 56px;
	}

	.dce-image-tiles .tile img {
		height:203px;
	}
}
@media(min-width: 991px){
	.dce-image-tiles .row .grid-3  header{
		position:relative;
	}
	.dce-image-tiles .row {
		display:grid;
		grid-template-rows: 1fr 1fr;
		grid-template-columns: 1fr 1fr 1fr;
		grid-gap: 15px;
	}
	.dce-image-tiles .grid-3 {
		padding: 0 !important;
		flex: none;
		max-width: 100%;
	}
	.dce-image-tiles .grid-3:nth-child(2) {
		grid-row: 1 / 3;
		grid-column: 2 / 3;
	}
	.dce-image-tiles .grid-3:nth-child(2) img {
		height: 100%;
	}
	.dce-image-tiles .tile {
		height: 100%;
	}
	.dce-image-tiles .tile header h3 {
		-webkit-transition: all .8s ease-in-out;
		-moz-transition: all .8s ease-in-out;
		-ms-transition: all .8s ease-in-out;
		-o-transition: all .8s ease-in-out;
		transition: all .8s ease-in-out;
		font-size: 1.3rem;
	}
	.dce-image-tiles .tile:hover header h3{
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	.dce-image-tiles .tile h3 {
		font-family: "Montserrat", sans-serif;
		font-weight: bold;
	}
	.dce-image-tiles .tile img {
		height:203px;
	}
	.dce-image-tiles .tile:hover header h3 {
		opacity: 0;
		height: 0;
	}
	.dce-image-tiles .tile .text-wrap {
		background: var(--secondary-clr);
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	.dce-image-tiles .tile:hover .text-wrap {
		background: var(--primary-clr);
		-webkit-transition: all .3s ease-in-out;
		-moz-transition: all .3s ease-in-out;
		-ms-transition: all .3s ease-in-out;
		-o-transition: all .3s ease-in-out;
		transition: all .3s ease-in-out;
	}
	.dce-image-tiles .row .grid-3 .tile:hover header:before,
	.dce-image-tiles .row .grid-3 .tile:hover header:after {
		font-size: 2rem;
		-webkit-transition: all .4s ease-in-out;
		-moz-transition: all .4s ease-in-out;
		-ms-transition: all .4s ease-in-out;
		-o-transition: all .4s ease-in-out;
		transition: all .4s ease-in-out;
	}
	.dce-image-tiles .tile:hover h3 {
		margin-top: 1rem;
	}
}


/* .............. FOOTER ...... */
.footerlogo {
	margin-bottom: 5rem;
	text-align: center;
}
footer .infos {
	margin-bottom: 4rem;
} 
@media (min-width: 576px) {
	footer .infos {
		margin-left: -15px;
		margin-right: -15px;
	}
}
@media (min-width: 992px) {
	footer .infos {
		display: flex;
		justify-content: stretch;
	}
}
footer .infos > div {
	flex-grow: 1;
} 
footer .header {
	height: 70px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 10px;
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	text-transform: none;
	font-weight: bold;
	margin-bottom: 15px;
	border-bottom: 2px solid #fff;
}
footer table td {
	vertical-align: top;
}

/* musthave */
footer .footer-bottom {
	padding: 10px 0;
	background: rgba(0,0,0,.25);
}
footer .musthavecopy {
    display: flex;
	flex-direction: column-reverse;
    list-style: none;
	font-size: 0.85rem;
	margin: 0;
}
footer .musthave {
	padding-left: 0;
    list-style: none;
    margin-bottom: 20px;
}
footer .musthave li {
    display: inline-block;
    margin-right: 20px;
}
footer .musthave li:last-child {
	margin-right: 0;
}
@media (min-width: 576px) {
	footer .musthavecopy {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		margin-left: -15px;
		margin-right: -15px;
	}
	footer .musthave {
		margin-bottom: 0;
	}
}


/* ---------- Extensions -------------------*/

/* .............. Kontakt ...... */

.tx-powermail h3,
.tx-powermail legend {
	display:none;
}
.tx-powermail .powermail_fieldwrap_absenden .col-sm-10,
.tx-powermail label,
.tx-powermail .powermail_fieldwrap,
.tx-powermail .container-fluid {
	padding: 0;
}
main .tx-powermail .form-control {
	background: #f3f3f3;
}
main .tx-powermail .powermail_fieldset {
	background: none;
}
.tx-powermail .powermail_fieldwrap {
	flex-direction: column;
}
@media(min-width: 500px){
	.tx-powermail .powermail_fieldwrap {
		flex-direction: row;
	}
}
@media(min-width: 991px) {
	.tx-powermail .powermail_fieldwrap > label {
		-ms-flex: 0 0 15%;
    	flex: 0 0 15%;
    	max-width: 15%;
	}
}

/* .... PRINT STYLES .... */
@media print {
	body > header,
	.header-top,
	h1:before,
    .footnavi,
    .musthave,
	.dce-keyvisual {
		display: none;
	}
}

