@import url('https://fonts.googleapis.com/css?family=Lato:400,700');


body {
	overflow-x: hidden;
	font-family: 'Lato', sans-serif;
	color: #505962;
}

.offset:before {
	height: 5.99rem;
	margin-top: -5.99rem;
	content: "";
	display: block;

}

/*Navbar*/

.navbar {
	text-transform: uppercase;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: .1rem;
	background: rgba(0, 0, 0, .6)!important;

}

.navbar-brand img {
	height: 4.7rem;
}

.navbar-nav li{
	padding-right: .7rem;
}

/*Slider*/
.carousel-item {
	height: 100vh;
	max-width: 100%;}

.carousel-caption {
	position: absolute;
	top:30%;
	color: #ffffff;
}

.carousel-caption h1{
	font-size: 3.5rem;
	font-weight: 700; 
	text-shadow: .1rem .1rem .9rem black;

}

}




/*============= COURSE SECTION =============*/

.narrow {
  width: 75%;
  margin: 0 auto;
  padding-top: 2rem;
}
.btn-md {
  border-width: medium;
  border-radius: 0;
  padding: .6rem 1.1rem;
  text-transform: uppercase;
  margin: 1rem;
}

.btn-lg {
	border-radius: 0;
	font-size: 1.5rem;
}
.jubotron {
	border-radius: 0;
	padding: 3rem 0 2rem;
	margin-bottom: 0;
}
h3.heading {
	font-size: 1.9rem;
	font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 1.9rem;
}
.heading-underline {
	width: 10rem;
	height: .2rem;
	background-color: #C9010C;
	margin: 0 auto 2rem;
}

/*Portfolio*/
.portfolio img {
	max-width: 100%;
	transition: transform .5s ease;
}
.row.no-padding [class*=col-]{
	padding: 0;

}
.portfolio img:hover {
	transform: scale(1.1);
	cursor: zoom-in;
}
.portfolio {
	overflow: hidden;
}

.impressum {
	padding-top: 6rem;

}

.link{
	color: #3792cb;
}
.link:hover {
	color: #b5e2ff; 
	text-decoration: none;


}

/*contact*/
footer{
	background-color: rgb(60, 60, 60);
	color: white;
	padding: 2rem 0 3rem;
	margin-top: 1rem;
}
footer img {
	margin: 1.5rem 0;
}
footer a {
	color: white;
}
footer svg.svg-inline--fa{
	font-size: 1.6rem;
	margin: 1.2rem .5rem 0 0;

}
hr.socket{
	border-top: .2rem solid #666;
	width: 100%;
}

@media (max-width: 767px){
	.navbar-brand img {
	height: 3.0rem;
	}

	.carousel-caption h1 {
		font-size: 2rem

	}
	.btn-lg {
		font-size: 1rem;
		padding-bottom: 0.5rem;
	}
}



/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/