html {
	scroll-behavior: smooth;
}

body {
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	color: #0b2a68;
}

img {
	max-width: 100%;
}

h1 {
	font-size: 2rem;
	margin-bottom: 32px;
	margin-top: 0px;
	font-weight: 600;
}

.integrated{
	margin-bottom: 32px;
	margin-top: 0px;
}

.navigation {
	background-color: #0b2a68;
	display: flex;
	justify-content: space-between;
	padding-left: 16px;
	padding-right: 16px;
	padding-bottom: 8px;
	padding-top: 8px;
	z-index: 16;
	position: fixed;
	width: 100%;
	border-bottom: groove 2px;
	border-color: #0b2a68;
}

.navigation .logo {
	max-width: 150px;
}

.navigation button {
	position: relative;
	margin: 0;
	padding: 0;
	border: none;
	display: none;
	background-color: transparent;
	outline: none;
}

.navigation button span {
	background: #fff;
	display: block;
	height: 5px;
	width: 50px;
	margin-bottom: 10px;
	position: relative;
	transition: .3s all ease-in-out;
}

.navigation button.open span:nth-child(2) {
	width: 0;
	opacity: 0;
}

.navigation button.open span:nth-child(3) {
	transform: rotate(45deg);
	top: -10px;
}

.navigation button.open span:nth-child(1) {
	transform: rotate(-45deg);
	top: 20px;
}

.navigation ul {
	display: flex;
	list-style-type: none;
	align-items: center;
	justify-content: space-around;
	padding: 0;
	margin: 0;
	min-width: 250px;
	transition: .3s all;
}

.navigation a {
	color: white;
}

@media only screen and (max-width: 640px) {
	/* displays the burger nav   */
	.navigation button {
		display: block;
	}
	/* open and close toggle  */
	.navigation ul {
		top: 105px;
		right: -100%;
	}
	.navigation ul.show {
		top: 105px;
		right: 0;
	}
	/*  nav items  */
	.navigation ul,
	.navigation:active ul {
		position: fixed;
		background-color: #0b2a68;
		padding: 15px;
		box-sizing: border-box;
		display: block;
	}
	.navigation ul li {
		box-sizing: border-box;
		width: 100%;
	}

	.contact-box{
		padding-right: 140px;
	}
}

footer {
	background-color: #0b2a68;
	color: white;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
	padding: 1rem;
}

footer ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
	min-width: 250px;
	display: flex;
}

footer a {
	color: white;
}

footer a:hover,
footer a:focus {
	color: white;
}

.carousel-item .carousel-caption {
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

.carousel-item .carousel-caption p {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.carousel-indicators li {
	background-color: white;
	max-width: 10px;
	height: 10px;
	border-radius: 10px;
}

.carousel-indicators .active {
	background-color: #0b2a68;
}

.content-box {
	border-radius: 5px;
	padding: 30px;
	margin-bottom: 15px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);	
}

.content-box img {
	width: 90px;
}

.content-box h4 {
	font-weight: 600;
	font-size: 1.1em;
}

#company .content-box h4{
	padding-top: 8px;
	padding-bottom: 8px;
	line-height: 2.5ex;
	height: 8ex; /* 2.5ex for each visible line */
	overflow: hidden;
	display: flex;
	align-items: center;
}

#services .content-box p, #topics .content-box p {
	font-size: .8em;
}


#services .content-box h4, #topics .content-box h4 {
	justify-content: center;
	font-size: 1.1em;
}

.bg-white {
	background-color: white;
	color: #0b2a68;
}

.bg-blue {
	background-color: #0b2a68;
	color: white;
}

.bg-mountain {
	background-image: url('/assets/images/Slider_1_mitVerlauf.jpg');
	background-position: 0 35%;
	color: white;
}

.bg-mountain .col {
	position: relative;
	min-height: 200px;
}

.bg-mountain .content {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.gradient {
	background-image: linear-gradient(#63beec, #0b2a68);
	color: white;
}

.reverse-gradient {
	background-image: linear-gradient(#0b2a68, #63beec);
	color: white;
}

.headline-line-left-blue,
.headline-line-right-blue,
.headline-line-left-white,
.headline-line-right-white {
	position: relative;
}

.headline-line-left-blue::before,
.headline-line-left-white::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: -1px;
	width: 3px;
	height: 100%;
	border-left: 3px solid #0b2a68;
}

.headline-line-right-blue::after,
.headline-line-right-white::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: -1px;
	width: 3px;
	height: 100%;
	border-right: 3px solid #0b2a68;
}

.headline-line-left-white::before {
	border-left: 3px solid white;
}

.headline-line-right-white::after {
	border-right: 3px solid white;
}

.headline-line-left-blue,
.headline-line-left-white {
	padding-left: 15px;
}

.headline-line-right-blue,
.headline-line-right-white {
	padding-right: 15px;
}

section {
	padding-top: 50px;
	padding-bottom: 50px;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.btn-primary {
	background-color: #0b2a68;
}

.quote-arrow {
	width: 30px;
}

@media (max-width: 767px){
	.carousel-item .carousel-caption {
		width: 80%
	}

	.carousel-img{
		width: 80%;
	}
}

@media (min-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}

	.content-box {
		padding: 20px 30px;
	}

	footer ul {
		display: flex;
		align-items: center;
		justify-content: space-around;
		flex-wrap: wrap;
		min-width: 400px;
	}

	.carousel-item .carousel-caption {
		width: 610px;
	}

	.carousel-img {
		width: 610px;
	}
}

.overlay {
	font-family: 'Montserrat', sans-serif;
	color: #0b2a68;
}


.row-spacing {
    margin-left: 10%;
    margin-right: 10%;
}

.ci_color{
	color: #0b2a68;
}

.quote{
	padding-top: 45px;
}


.contact-box{
	padding-right: 140px;
}
/*
#services::before,
#team::before,
#kontakt::before { 
  display: block; 
  content: " "; 
  margin-top: -80px; 
  height: 80px; 
  visibility: hidden; 
  pointer-events: none;
}*/

.marg-64 {
	margin-bottom: 64px;
}

.disabled {
	display: none;
}

.vert-container {
	width: 100%;
	display: flex;
	padding-bottom: 16px;
}

.vert-element {
	width: 100%;
}

.img-container{
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 16px;
	margin-top: 32px;
}

.img-title{
	padding-top: 16px;
	padding-bottom: 16px;
}

.carousel-img {
	background-color: white;
	opacity: 1;
	-webkit-box-reflect: below 16px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent) , to(rgba(250, 250, 250, 0.5)));
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	transform: translateY(-20%) translateX(-0%);
}