@charset "utf-8";
/* Farben:
dklblau 0a4484
hellblau 99cdf0

Rot = #ad007c  rgb 173, 0, 124 
highlight = #860060 rgb 134, 0, 96  
*/

/* barlow-regular - latin Barlow-Regular.ttf, Barlow-Bold.ttf: Copyright 2017 The Barlow Project Authors (https://github.com/jpt/barlow) Licensed under the SIL Open Font License, Version 1.1.
*/
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/barlow-v12-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/barlow-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/barlow-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/barlow-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/barlow-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/barlow-v12-latin-regular.svg#Barlow') format('svg'); /* Legacy iOS */
}
/* barlow-700 - latin */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/barlow-v12-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('../fonts/barlow-v12-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/barlow-v12-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/barlow-v12-latin-700.woff') format('woff'), /* Modern Browsers */
       url('../fonts/barlow-v12-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/barlow-v12-latin-700.svg#Barlow') format('svg'); /* Legacy iOS */
}


/* CSS variables to adjust colours centrally */ 
:root {
  --coloured:  #ad007c; /* primary company colour  */ 
  --secondary: #860060; /* secondary company colour */
/*** general colours ***/  
  --red:       #ff0000; /* general red */ 
  --green:     #00ff00; /* general green */ 
  --blue:      #0000ff; /* general blue */
  --dark:      #565656; /* dark gray */
  --gray:      #a1a1a1; /* light gray */
  --white:     #ffffff;
  --black:     #000000;
  }





/* Beispiele fuer OnePager mit Background Pic (in index.php) */
/* FULL SIZED */
body,
html {
    height: 100%;
    height: 100vh; /* Avoid the IE 10-11 `min-height` bug. */
	  width: 100%;
    max-width: 100%;
    overflow-x: hidden;  /* deaktiveren, wenn ohne bg pic slider in index.php */
}

body {
/*  display: flex;  */ 
  align-items: center;
  justify-content: center;
  /* padding: 2em; */
  /*	padding-top:10px; */
  line-height: 1.1;
}

body {
	font-family: 'Barlow',sans-serif;
	font-size: 13pt;
/*	font-weight: 400; */
	color: #111; /* 666 */
	background-color: #fff;
 /* position: fixed; */
}

/* ein leicht transparenter hellgrauer Background, z.B. für den Container, */
/* der über dem BG-Pic liegt und es somit durchscheinen läßt (70% opak)    */ 
.bg-gray {
/* background: #f8f8f8; */
background: rgb(248, 248, 248); 
background: rgba(248, 248, 248, .7);
}
.bg-coloured {
background-color: var(--coloured);
}
.bg-white {
/* background: #f8f8f8; */
background: #fff;
}

.white P, .white A, .white A:hover {
color: #fff;
}

.container{
/* padding-right:15px;padding-left:15px; */ 
margin-right:auto;margin-left:auto;
max-width: 90vw!important;
}  
/* standard bootstrap je 15 pad-left right */

.row{  /* margin-right:-15px;margin-left:-15px */ margin-left: 0px; margin-right: 0px; }  /* standard bootstrap je -15 marg-left right */ /* evtl statt 0 auf auto */


@media (max-width: 992px) {
max-width: 95vw!important;
}
@media (max-width: 768px) {
max-width: unset!important;
}


.backgroundpic {
background: url(../img/background.jpg) 0 0 no-repeat;
height:90vh;
width:90vw;
}

.bg-massage {
/* position:absolute; */
background: url(../img/massage.webp);  /* 0 0 no-repeat; */
background-size: cover;
/* right:0;
bottom:0;  */
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
}

@media (max-width: 992px) {
 #bg-pic {height: 50vh; width:100%;}
}


/* generell */
.container-fluid {
padding-left:0;
padding-right:0;
}
.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
padding-left:0;
padding-right:0;
}

.pt-5, .py-5 {
    padding-top: 1rem!important;
    padding-bottom: 1rem!important;
}
.m-0 {
padding-bottom: 2rem;
}
.ptop {
    padding-top: 1.5rem!important;
    margin-top: 1.5rem;
}
.pbot {
    padding-bottom: 1.5rem!important;
    margin-bottom: 1.5rem;
}


.header-logo {
position:absolute;
margin-top:0;
right:0;
/* background: url(../img/ecke.png) 0 0 no-repeat; */
background-color:#fff; 
border-left: 1px solid rgba(173, 0, 124,.825);
border-bottom: 1px solid rgba(173, 0, 124,.825); 
border-bottom-left-radius: 10%!important;  /* calc(.25rem - 1px); */
z-index:10000;
}

.rechts {
right:0;
text-align:right;
}

.border-left {
border-left:  1px solid rgba(173, 0, 124,.825);
}

/* Bilder runde Kanten */
.rounded-circle {
    border-radius: 10%!important;
}


/* Sektion Projekte */
.portfolio-item {
  margin-bottom: 30px;
  padding-left: 15px;
/*  padding-right:15px; */
}

.card-img-top {
    width: 20vh;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
}
img {
    vertical-align: middle;
    border-style: none;
}
.card-title {
    margin-bottom: .75rem;
}
.card-body {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem;
}
.card-text:last-child {
    margin-bottom: 0;
}
.card {
    position: relative;
  /*  display: -ms-flexbox;  */
  /*  display: flex;  */
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    /* Fallback for web browsers that don't support RGBa */
    background-color: rgb(255, 255, 255);
    background-color: rgba(255, 255, 255, 0.55); /* #fff; */
        /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99FFFFFF, endColorstr=#99FFFFFF);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99FFFFFF, endColorstr=#99FFFFFF)";
    
    background-clip: border-box;
    border: 1px solid rgba(173, 0, 124,.825);  /* .125 */
    border-radius: .25rem;
}
.h-100 {
    height: 100%!important;
}

.row {
    margin-right: 0;
    margin-left: 0;
}
.small, small {
    font-size: 70%;
    font-weight: 400;
}
/* Seektion Projekte Ende */

/* Sektion Jobs   */

.mb-3, .my-3 {
    margin-bottom: 1rem!important;
    margin-top: 1rem!important;
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem!important;
    margin-top: 1.5rem!important;
}
/* Sektion Jobs Ende */


H1 {
font-size: 1.25em;
}

H2 {
/* background: url(../img/title.png) 0 0 no-repeat; 
padding-left: 10px; */
font-size: 1.15em;
padding-top: 10px;
color: var(--coloured);
}

H3 {
font-size: 1.05em;
padding-top: 10px;
color: var(--coloured);
}

a /* a:visited */ {
color: var(--coloured);
font-weight: 400;
}

a:hover, a:focus {
color: var(--secondary);
}

body {
  font-family: 'Barlow';
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Barlow';
  font-weight: 800 !important;
  color: var(--coloured);
}

.btn-xl {
  text-transform: uppercase;
  padding: 0.5rem 0.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  background-color: #fff !important;
}

.bg-black {
  background-color: #000 !important;
}

.gruen {
background-color: var(--coloured);
}
.gruen P, .gruen H1, gruen H2, .gruen H3, .gruen H4, .gruen H5, .gruen H6,
.gruen a, .gruen a:visited, .gruen a:focus, .gruen a:hover, .gruen a:active
{
color: #fff;
}


.rounded-pill {
  border-radius: 5rem;
}

/*.navbar {
 background: url(../img/topmenu2.jpg);
 height:220px;
} */


.header {
/* background: url(../img/topmenu2.jpg); */
 height:40px;
/* margin-top:45px; */
}


/* Navigation  */

/* linksbündig */
.ml-auto, .mx-auto {
    margin-left:auto!important; /* --> setzt home links und den rest ab rechts */
}

/* manuell nach links neben home, damit es nicht rechts (auto) unter dem Logo liegt */
.navbar-toggler {
position: absolute;
left: 50px;
top:10px;
}
.navbar-dark .navbar-toggler-icon {
    background-image: url(../img/toggler.png);
}

.navbar-custom {
  padding-top: 1rem;
  padding-bottom: 1rem;
 /* background-color: rgba(0, 0, 0, 0.7); /* schwarz */
 /* background-color: rgba(113, 96, 82, 0.7);  /* #716052 = braun */ 
 background-color: rgba(173, 0, 124, 0.85);   /* #27408B = blau  */
}

.navbar-custom .navbar-brand {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-weight: 700;
}

.navbar-custom .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-size: 1rem;  /* 0.8rem */
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,1);
}


header.masthead {
  position: relative;
  overflow: hidden;
  padding-top: calc(7rem + 72px);
  padding-bottom: 7rem;
 /* background: linear-gradient(0deg, #ff6a00 0%, #ee0979 100%); */
  background: url(../img/topmenu2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: scroll;
  background-size: cover;
}

header.masthead .masthead-content {
  z-index: 1;
  position: relative;
}

header.masthead .masthead-content .masthead-heading {
  font-size: 4rem;
}

header.masthead .masthead-content .masthead-subheading {
  font-size: 2rem;
}

header.masthead .bg-circle {
  z-index: 0;
  position: absolute;
  border-radius: 100%;
  background: linear-gradient(0deg, #ee0979 0%, #ff6a00 100%);
}

header.masthead .bg-circle-1 {
  height: 90rem;
  width: 90rem;
  bottom: -55rem;
  left: -55rem;
}

header.masthead .bg-circle-2 {
  height: 50rem;
  width: 50rem;
  top: -25rem;
  right: -25rem;
}

header.masthead .bg-circle-3 {
  height: 20rem;
  width: 20rem;
  bottom: -10rem;
  right: 5%;
}

header.masthead .bg-circle-4 {
  height: 30rem;
  width: 30rem;
  top: -5rem;
  right: 35%;
}


@media (max-width: 992px) {
.mann {
visibility:hidden;
}
H2 { font-size: 1.25rem;}
H3 { font-size: 1rem;}

}

@media (max-width: 1200px) {
  header.masthead {
    padding-top: calc(10rem + 55px);
    padding-bottom: 10rem;
  }
  header.masthead .masthead-content .masthead-heading {
    font-size: 4rem;
  }
  header.masthead .masthead-content .masthead-subheading {
    font-size: 2rem;
  }  

 .header-logo IMG {
max-width:150px;
} 
  
  
}

@media (min-width: 992px) {
  header.masthead {
    padding-top: calc(10rem + 55px);
    padding-bottom: 10rem;
  }
  header.masthead .masthead-content .masthead-heading {
    font-size: 6rem;
  }
  header.masthead .masthead-content .masthead-subheading {
    font-size: 4rem;
  }  
}

.bg-primary {
  background-color:var(--secondary) !important;
}

.btn-primary {
  background-color: var(--coloured);
  border-color: var(--secondary);
}

.btn-primary:active, .btn-primary:focus, .btn-primary:hover {
  background-color: var(--secondary) !important;
  border-color: var(--coloured) !important;
}

.btn-primary:focus {
  box-shadow: 0 0 0 0.2rem rgba(0, 164, 72, 0.5);
}

.btn-secondary {
  background-color: var(--coloured);
  border-color: var(--secondary);
}

.btn-secondary:active, .btn-secondary:focus, .btn-secondary:hover {
  background-color: var(--secondary) !important;
  border-color: var(--coloured) !important;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.5);
}

@media (max-width: 576px) {
.display-4 {
font-size:1.75rem;
}

.portfolio-item {
  margin-bottom: 10px;
  padding-left: 5px;
  padding-right:2px;
}

.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto {
width:auto;
}

.header-logo IMG {
max-width:120px;
}

.mann {
visibility:hidden;
}

}

.abstand {
    padding-bottom: 5px;
    padding-top: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

/* equal height columns - pos zeiten als beispiel */
/* Kästen der Zeiten und des Bereiches des Inhalts immer gleich hoch */
.eqWrap {
	display: flex;
}
.eq {
	padding: 10px;
}
.eq:nth-of-type(odd) {
/*	background: white; */
}
.eq:nth-of-type(even) {
/*	background: #008b99; */
/*	opacity:0.5; */
/*	color: #fff; */
}
.eq:nth-of-type(even) A, .eq:nth-of-type(even) A:focus, .eq:nth-of-type(even) A:hover, .eq:nth-of-type(even) A:visited, .eq:nth-of-type(even) H1, .eq:nth-of-type(even) H2, .eq:nth-of-type(even) H3, .eq:nth-of-type(even) H4, .eq:nth-of-type(even) H5, .eq:nth-of-type(even) H6,  .eq:nth-of-type(even) P {
	/* color: #fff; */
}

.equalHMRWrap {
	justify-content: space-between;
	flex-wrap: wrap;
	    
    -webkit-flex: 1; /* Safari 6.1+ */
    -ms-flex: 1; /* IE 10 */ 
    flex: 1;    
}
.equalHMR3 {
	width: 32%;
	margin-bottom: 2%;
}
.equalHMR6 {
	width: 64%;
	margin-bottom: 2%;
}

@media all and (max-width: 576px) {
.eqWrap {
	/* display: unset; */
}

}

/* Ende Equal Height Columns */
