/*!
 * Bootstrap 4 mit MMXX Design von PRE
 */

/* roboto-regular - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: url('res/fonts/roboto-v30-latin-regular.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('res/fonts/roboto-v30-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('res/fonts/roboto-v30-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('res/fonts/roboto-v30-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('res/fonts/roboto-v30-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('res/fonts/roboto-v30-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-700 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: url('res/fonts/roboto-v30-latin-700.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('res/fonts/roboto-v30-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('res/fonts/roboto-v30-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
       url('res/fonts/roboto-v30-latin-700.woff') format('woff'), /* Modern Browsers */
       url('res/fonts/roboto-v30-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
       url('res/fonts/roboto-v30-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
}

/* roboto-900 - latin */
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 900;
  src: url('res/fonts/roboto-v30-latin-900.eot'); /* IE9 Compat Modes */
  src: local(''),
       url('res/fonts/roboto-v30-latin-900.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('res/fonts/roboto-v30-latin-900.woff2') format('woff2'), /* Super Modern Browsers */
       url('res/fonts/roboto-v30-latin-900.woff') format('woff'), /* Modern Browsers */
       url('res/fonts/roboto-v30-latin-900.ttf') format('truetype'), /* Safari, Android, iOS */
       url('res/fonts/roboto-v30-latin-900.svg#Roboto') format('svg'); /* Legacy iOS */
}


/* Allgemeine Einstellungen */
:root {
	--custom-color: rgba(72,185,231,1.0);
	--custom-color9: rgba(72,185,231,0.9);	
	--custom-color8: rgba(72,185,231,0.8);
	--custom-color10: rgba(72,185,231,0.1);	
	--custom-color25: rgba(72,185,231,0.25);
	--custom-color50: rgba(72,185,231,0.5);	
	--custom-color75: rgba(72,185,231,0.75);		
	--font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	--font-size: 1.25rem;
	--line-height: 1.0;
	--font-weight: 100;
	--color: #373a3c;
	--nav-color: rgba(255,255,255,1.0);
	--link-color: #666;
	--link-color-visited: #666;
	--link-color-hover: #000;
	--link-color-active: #666;
	--transition: all .2s ease;
}
/* Schriftgröße und Abstände auf Bildschirmen ab 600px vergrößern
@media (min-width: 600px) {
	:root {
		--font-size: 1.5;
		--spacing: 2;
	}
} */


body,
html {
  width: 100%;
  height: 100%; }


/*.container {
  height: 100%;
  background: red;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column
}*/

header {
  flex: 0 0 50px;
  background: lightblue;
}

content {
  flex: 1;
  background: lightgreen;
}

footer {
  flex: 0 0 50px;
  background: coral;
}

body {
  font-family: var(--font-family);
  font-size: calc(var(--font-size) * 1.0); 
  font-weight: calc(var(--font-weight) * 2);
  line-height: calc(var(--line-height) * 1.3333); 
  color: var(--color);
  text-align: left;
  background-color: #fff;
  background: url("img/Stegbild-BG.jpg") no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;}


a {
  color: var(--link-color);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s; }
  a:hover {
    color: var(--link-color-hover);
    text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
  font-weight: calc(var(--font-weight) * 4);
  line-height: calc(var(--line-height) * 1.2); 
  margin-bottom: 0.5rem;
	
  /*font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif; 
  font-family: inherit;
  font-weight: 600;
  line-height: 1.2;
  color: inherit;*/
}

h1 {
  font-size: calc(var(--font-size) * 2); }

h2 {
  font-size: calc(var(--font-size) * 1.625); }

h3 {
  font-size: calc(var(--font-size) * 1.375); }

h4 {
  font-size: calc(var(--font-size) * 1.25); }

h5 {
  font-size: calc(var(--font-size) * 1.125); }

h6 {
  font-size: calc(var(--font-size) * 1.0); }

.bg-primary {
  background-color: var(--custom-color) !important; 
  padding: 2rem;}

.bg-spacer {
  background-color: rgba(255,0,0,0.0) !important; 
  padding: 2rem 0rem; }

.bg-topspacer { 
  margin-top: 5rem; }

.bg-header {
    background-color: var(--custom-color) !important; 
    color: #000;}
    .bg-header a {
     color: #000;
     -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
     transition: all 0.2s; }
	.bg-header a:hover {
	 background-color: rgba(255,255,255,0.1);
	 text-decoration: none; }

.bg-footer {
    background-color: rgba(0,0,0,0.6) !important; 
    background-size: cover;
    background-position: center center;
    text-align: center;
    color: #fff !important;
    padding-top: 10px;
    padding-bottom: 10px; }
    .bg-footer a {
     color: #fff !important;
     -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
     transition: all 0.2s; }

.bg-pre {
    background-color: rgba(0,0,0,0.7) !important; 
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    text-align: center;
    vertical-align: middle !important;
    color: #fff;
    height: 50px;
    padding-top: 10px;
    padding-bottom: 10px; }
	.bg-pre a {
     opacity: 0.2; }
	.bg-pre a:hover {
     opacity: 1.0; 
	 text-decoration: none; }


.bg-dark {
  background-color: #212529 !important; }

.bg-custom {
  background-color: var(--custom-color) !important; }

.bg-custom-75 {
  background-color: var(--custom-color75) !important; }

.bg-custom-50 {
  background-color: var(--custom-color50) !important; }

.bg-custom-25 {
  background-color: var(--custom-color25) !important; }

.color-custom {
  color: var(--custom-color) !important; }

.bg-grey {
  background-color: rgba(204, 204, 204, 0.25) !important; }

.text-grey {
  color: rgba(59, 61, 62, 0.75); }

.bg-faded {
  color: rgba(255, 255, 255, 1.0); }

.text-faded {
  color: rgba(255, 255, 255, 0.7); }

.bg-overlay {
    background: linear-gradient var(--custom-color8), var(--custom-color8)), url("../img/slider1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: #fff;
    height: 450px;
    padding-top: 50px;
}

.background-pic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/Stegbild-BG.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100%;
    opacity: 0.5;
    filter:alpha(opacity=80);
}

.logo-box {
  position: relative;
  display: block;
  max-width: 350px;
  margin: 0 auto; }
    .logo-box a {
     -webkit-transition: all 0.2s;
     -moz-transition: all 0.2s;
     transition: all 0.2s; }
	.logo-box a:hover {
	 background-color: rgba(255,255,255,0.0) !important;
	 text-decoration: none; }

.center-me {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section {
  padding: 0rem 0;}

.section-heading {
  margin-top: 2rem; }

.custom-heading {
  margin-top: 2rem;
  color: var(--custom-color) !important; }

.custom-infobox {
  font-family: var(--font-family);
  font-weight: calc(var(--font-weight) * 4);
  line-height: calc(var(--line-height) * 2.0);
  padding: 20px;
  background-color: var(--custom-color25) !important;
  color: rgba(59, 61, 62, 1.0);}

.card  {
  font-family: var(--font-family);
  background-color: var(--custom-color75) !important;
  color: #fff; 
  border: 0px solid rgba(0,0,0,0.0);
  border-radius: .25rem;}

.card-header {
	font-size: calc(var(--font-size) * 1.25); 
	font-weight: calc(var(--font-weight) * 4);
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: var(--custom-color) !important;
    border-bottom: 0px solid rgba(0,0,0,0.0);
	border-radius: .25rem; }

.card-header:first-child {
    border-radius: .25rem; }

.card .list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: transparent;
    border: 0px solid rgba(0,0,0,0.0); }

.card ul li:before {    
    font-family: 'FontAwesome';
    content: '\f054';
    margin:0 5px 0 -15px;
    color: #fff; }

::-moz-selection {
  color: #fff;
  background: #212529;
  text-shadow: none; }

::selection {
  color: #fff;
  background: #212529;
  text-shadow: none; }

img::selection {
  color: #fff;
  background: transparent; }

img::-moz-selection {
  color: #fff;
  background: transparent; }

body {
  -webkit-tap-highlight-color: #212529; }


/* Navigation - Linkfarbe - funktioniert! */
.navbar-dark .navbar-nav .nav-link {
	color: var(--nav-color);
	font-size: calc(var(--font-size) * 1.0);
	font-weight: 600;
}
.navbar-dark .navbar-nav .nav-link:hover {
	color: var(--nav-color);
	font-size: calc(var(--font-size) * 1.0);
	font-weight: 600;
}
.hamburger {
	font-size: calc(var(--font-size) * 1.5);
	color: var(--nav-color);
}

/* Navigation - background color */
.navbar-custom .navbar-nav {
    background-color: rgba(255,0,0,0.0);
}
/* Navigation - brand und text color */
.navbar-custom .navbar-brand,
.navbar-custom .navbar-text {
    color: rgba(255,255,255,1.0);
	font-family: var(--font-family);
    font-size: calc(var(--font-size) * 1.0); 
    font-weight: calc(var(--font-weight) * 7);
    line-height: calc(var(--line-height) * 1.3333); 
    padding: 1.0rem 1rem;
}
/* Navigation - link color und add padding for height */
.navbar-custom .navbar-nav .nav-link {
    color: rgba(255,255,255,1.0);
	font-family: var(--font-family);
    font-size: calc(var(--font-size) * 1.0); 
    font-weight: calc(var(--font-weight) * 7);
    line-height: calc(var(--line-height) * 1.3333); 
    padding: 1rem 1rem;
}
/* Navigation - color of active or hovered links */
.navbar-custom .nav-item.active .nav-link,
.navbar-custom .nav-item:hover .nav-link {
    color: rgba(255,255,255,1.0);
    background-color: rgba(255,255,255,0.1); /* add background-color to active links */
}
/* Navigation Dropdown - color of active or hovered links */
.dropdown-menu {
    color: rgba(255,0,0,1.0) important!;
    background-color: rgba(255,255,255,1.0); 
    border: none;
    border-radius: 0px;
}
.dropdown-menu .dropdown-item:hover {
    color: rgba(255,0,0,1.0) important!;
    background-color: var(--custom-color25); 
}

.carousel-item {
  height: 100vh;
  min-height: 300px;
  background: no-repeat center center scroll;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


.carousel-caption h1 {
    text-align: center;
	color: white; 
    background-color: var(--custom-color9); 
	width: 100%;
    padding: 25px;
}


.carousel-caption-box{
    text-align: center;
    position: absolute;
	font-family: var(--font-family);
	line-height: calc(var(--line-height) * 1.5); 
	color: white; 
    background-color: var(--custom-color9); 
	width: 60%;
    padding: 60px;
    left: 50%;
    top: 50%;
	transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
}

.carousel-caption-box-text{
	font-size: calc(var(--font-size) * 1.0);
}

@media screen and (max-width:480px){
    .carousel-caption-box .carousel-caption-box-text { display:none; }
}

@media screen and (max-height: 480px){
    .carousel-caption-box { 
	width: 80%;
    padding: 10px;
    left: 50%;
    top: 50%;}
	.carousel-caption-box-text { display:none; }
	.logo-box {
    max-width: 150px;
    margin: 0 auto; }
}



.boxx {
    position: relative;
    display: block; }

.boxx-over {
    position: absolute;
    transition: all 0.2s ease;
	-webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    opacity: 1.0;
	background: var(--custom-color75); }

.boxx:hover .boxx-over {
    opacity: 1.0; }

.boxx-over-bott {
    width: 100%;
    height: 40px;
	left: 20px;
	right: 20px;
	bottom: 20px;
	width: auto;
	line-height: 40px;
	overflow: hidden;
	margin: 0px;
	padding: 0px;
	font-size: 0.8em;
	font-weight: 300;
	text-align: center;
	color: #fff; }

.boxx:hover .boxx-over-bott {
    height: 100%;
	left: 0px;
	right: 0px;
	bottom: 0px;
	padding-top: 20px;
	color: #fff; }

.boxx-over-pix {
	width: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    transform: scaleY(0); }

.boxx:hover .boxx-over-pix {
    transform: scaleY(1); }

.boxx-text-pix {
	position: absolute;
	width: 100%-40px;
    height: 40px;
	line-height: 40px;
	overflow: hidden;
	left: 20px;
	right: 20px;	
	bottom: 20px;
	margin: 0px;
	padding: 0px;
	font-weight: 300;
	text-align: center;
    font-size: calc(var(--font-size) * 1.2);
    color: #fff; 
	background: var(--custom-color75); }

.boxx-text {
    font-size: calc(var(--font-size) * 1.2);
    color: #fff; }

.service-box {
  max-width: 400px; }

.portfolio-box {
  position: relative;
  display: block;
  max-width: 650px;
  margin: 0 auto; }
  .portfolio-box .portfolio-box-caption {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    color: #fff;
    background: var(--custom-color8);
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s; }
    .portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
      position: absolute;
      top: 50%;
      width: 100%;
      transform: translateY(-50%);
      text-align: center; }
      .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
      .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
        padding: 0 15px;
        font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif; }
      .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase; }
      .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
        font-size: 18px; }
  .portfolio-box:hover .portfolio-box-caption {
    opacity: 1; }
  .portfolio-box:focus {
    outline: none; }
  @media (min-width: 768px) {
    .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
      font-size: 16px; }
    .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
      font-size: 22px; } }


.nav.nav-tabs {
    margin-right: 0px;
    border-bottom: 0;
    padding-right: 0px;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
	font-size: calc(var(--font-size) * 0.8); 
    font-weight: calc(var(--font-weight) * 6);
}
.nav-tabs .nav-link.active {
    background-color: var(--custom-color25) !important;
    color: rgba(59, 61, 62, 1.0);
    border-color: transparent !important;
}
.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: 0rem!important;
    border-top-right-radius: 0rem!important;
}
.tab-content>.active {
    background-color: var(--custom-color25) !important;
    color: rgba(59, 61, 62, 1.0) !important;
    min-height: 300px;
	font-size: calc(var(--font-size) * 1.0); 
}

.tab-content>.active .table td, .table th {
    vertical-align: middle !important;
    border-top: 1px solid transparent !important;
}

.tab-content>.active .table .thead-dark th {
    color: rgba(59, 61, 62, 1.0) !important;
    background-color: var(--custom-color50) !important;
    border-color: transparent;
}


.text-primary {
  color: #666 !important; }

.btn {
  font-family: var(--font-family);
  font-weight: calc(var(--font-weight) * 7);
  text-transform: uppercase;
  border: none;
  border-radius: 300px;
}

.btn-xl {
  padding: 1rem 2rem; }

.btn-primary {
  background-color: #666;
  border-color: #666; }
  .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    color: #fff;
    background-color: #666 !important; }
  .btn-primary:active, .btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(66, 66, 66, 0.5) !important; }
