@charset "UTF-8";
/* CSS Document */


/* ========================
   NORMALISE 
=========================== */


body, h1, h2, h3, h4, h5, h6, p, ul, li {
	margin: 0;
	font-weight: normal;
}

img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 100%;
}

button, button:focus {
	border: 0;
	outline: 0;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}


/* ========================
   Typo 
=========================== */

html {
	font-size: 18px;
	scroll-behavior: smooth;
}

p, a, li, h1, h2, h3, h4 {
	font-family: 'Montserrat', sans-serif;
	font-weight: 300;
	color: black;
	line-height: 1.4em;
	margin-top: 1.4em;
	margin-bottom: 1em;
}

li {
	margin: 0.5em 0;
}

h1 {
	text-indent: -9999px;
	font-size: 5px;
}

.legal h1 {
	text-indent: 0;
	font-size: 1.75em;
	text-transform: uppercase;
}

#welcome p, #service p, #service h3 {
	text-align: center;
}

h2 {
	font-size: 2.4rem;
	line-height: 1em;
	text-transform: uppercase;
	text-align: center;
}

.legal h2 {
	font-size: 1.5em;
	text-align: left;
	text-transform: none;
}

#welcome h2 {
	margin-top: 0;
}

.standort h3 {
	margin-top: 0;
}

h3, .standort h4, #pre-footer h2 {
	font-size: 1rem;
	font-weight: 500;
}

h4, .standort h3 {
	font-size: 1.5rem;
	font-weight: 100;
}

.large {
	font-size: 1.2rem;
}

a:hover {
	text-decoration: none;
}

#pre-footer h2 {
	text-align: left;
	color: white;
}

#pre-footer a {
	font-size: 1.4rem;
	margin: 0 0 0.5em;
	display: block;
}

#footer a {
	margin-left: 15px;
}


.button, .button-small {
	display: inline-block;
	margin-top: 25px;
	padding: 15px 45px;
	background-color: #B2ACAC;
	border-radius: 28px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-weight: 500;
	color: white;
}

.button:hover {
	opacity: 0.8;
}

.button-small {
	font-size: 0.75rem;
	padding: 10px 30px;
}

li {
	margin-bottom: 0.5em;
	list-style-type: disc;
	list-style-position: inside;
}


/* ========================
   Layout 
=========================== */

body {
	background-color: #F5F5F5;
}

.hamburger {
	display: none;
}

#header {
	width: 100%;
	background-color: rgba(255,249,249,0.9);
	position: absolute;
	top: 0;
}

#header img {
	width: 350px;
}

#nav li {
	display: inline-block;
	margin: 0;
}

#nav a {
	text-decoration: none;
	margin: 0 15px;
}

#nav a:hover {
	opacity: 0.8;
}

#hero-image {
	width: 100%;
	height: 75vh;
	border-bottom-right-radius: 100% 33%;
	background-image: url("../images/office-for-less_hero-image.jpg");
	background-color: #cccccc;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

#wrapper, .section, .service, .half-column, .box {
	box-sizing: border-box;
	align-items: center;
}

.box {
	width: 100%;
	max-width: 1200px;
	padding: 25px 50px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;	
}

#wrapper {
	width: 100%;
	margin: 0 auto;
	padding: 0 50px;
	max-width: 1200px;
}

.section {
	width: 100%;
	padding: 100px 0;
}

.columns {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.half-column {
	width: 50%;
	padding: 10px;
}
.half-column:last-child, .column:first-child {
	margin-top: 0;
}

.half-column:last-child, .column:last-child {
	margin-bottom: 0;
}

.standort {
	margin-bottom: 50px;
}

.standort:last-child {
	margin-bottom: 0;
}

.service {
	text-align: center;
	width: 25%;
	padding: 20px 10px;
}

.service img {
	width: 25%;
	height: auto;
	margin: 0 auto;
}

.divider {
	width: 100%;
	margin: 0 auto;
	border-bottom-width: 1px;
	border-bottom-color: black;
	border-bottom-style: solid;
}

.divider img {
	width: 88px;
	margin: 0 auto;
	margin-bottom: -44px;
}

#shout-out {
	padding: 0 10% 0 0;
}

#pre-footer {
	background-color: #B2ACAC;
	padding-top: 50px;
	border-top-right-radius: 100% 88%;
}
#footer {
	background-color: #B2ACAC;
}
#footer .box, #pre-footer .box {
	align-items: baseline;
}
#footer .box:last-of-type, #pre-footer .box:last-of-type {
	align-items: flex-end;
}


/* –––––– GALERIE –––––– */

.slider {
    position: relative;
    padding: 0;
    margin: 10px 10px 0 0;
}

.slide {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    opacity: 0;
    z-index: 1;
    -webkit-transition: opacity 1.5s;
    -moz-transition: opacity 1.5s;
    -o-transition: opacity 1.5s;
    transition: opacity 1.5s;
}
.showing {
    opacity: 1;
    z-index: 2;
}

.slider-nav {
	position: absolute;
	top: calc(50% - 15px);
	width: 100%;
	display: flex;
	display: -ms-flexbox;
	flex-direction: row;
	-ms-flex-direction: row;
	justify-content: space-between;
	-ms-flex-pack: space-between;
	z-index: 3;
}

.btn_arrow {
	opacity: 0.5;
	width: 50px;
	height: 50px;
	padding: 10px;
	cursor: pointer;
	background: none;
}
.btn_arrow:hover {
	opacity: 1;
}


@media (max-width:900px){
	#header img {
		width: 250px;
		height: auto;
	}
}

@media (max-width:800px){
	#standorte .half-column {
		width: 100%;
	}
	.service {
		width: 50%;
	}
	
	#footer .box {
		flex-direction: column;
	}
	
	#footer .box:last-of-type {
		align-items: initial;
	}
	
	html {
		font-size: 16px;
		scroll-behavior: smooth;
	}
	#header .box {
		flex-wrap: wrap;
	}	
	.hamburger {
		display: block;
		transform: scale(0.6);
	}
	#nav {
		display: none;
		width: 100%;
		order: 99;
	}	
	#nav {
		margin-top: 25px;
	}
	#nav li {
		display: block;
		margin: 10px 0;
	}
	#nav a {
		margin: 0;
	}
	
	#wrapper, .box {
		padding: 10px 25px;
	}
	
	.section {
		padding: 50px 0;
	}
	
	.slider {
		margin: 0;
	}
}

@media (max-width:500px){
	html {
		font-size: 14px;
	}
	h2 {
		font-size: 2rem;
	}
	#nav a {
		font-size: 1.2rem;
	}
	#wrapper, .box {
		padding: 10px 20px;
	}
	.half-column {
		width: 100%;
	}
	#header img {
		width: 250px;
		height: auto;
	}
	#shout-out {
		padding: 0 20%;
	}
	.service {
		width: 100%;
	}
	#footer a {
		display: inline-block;
	}
}

@media (max-width:350px) {
	#header img {
		width: 220px;
	}
	h2 {
		font-size: 1.8rem;
	}
}






