@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700,800&display=swap&subset=latin-ext');

/*
 * MAIN
 */
body {
	background-color: #fff;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
	color: #000;
	font-size: 16px;
	overflow-x: hidden;
}
a, a:active, a:visited {
	text-decoration: none;
	color: #000;
}

a:hover {
	text-decoration: underline;
}

/*
 * COLUMNS
 */
.row {
	display: flex;
	flex-wrap: wrap;
	gap:15px;
	flex-wrap: wrap;
	justify-content: center;
}

.row .col-33 {
	flex-grow: 1;
	width: calc(33% - 15px);
}
.row .col-50 {
	flex-grow: 1;
	width: calc(50% - 15px);
}
.row .col-100 {
	flex-grow: 1;
	width: 100%;
}
/*
 * GALLERY
 */
.gallery { position:relative; margin: 0 15%; }
.gallery img {
  object-fit: cover;
  width: calc(100% - 20px);
  aspect-ratio: 1/1;
}
img.gallery-100 {
  aspect-ratio: 3/1;
  width: calc(100% - 20px);
  border: 10px solid #fff;
}
/*
 * HEADER
 */
header {
	position: relative;
	background-image: url('../img/header-bg.jpg');
	background-size: cover;
	height: 150vh;
	width: 100%;
	display: block;
	clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

header .end-decor {
	position: absolute;
    bottom: 0;
    height: 15%;
    width: 100%;
    display: block;
    background-color: rgba(172,167,123,0.7);
    clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
}

header .topbar {
	padding: 30px 0px 130px 0px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
	display: block;
	content: "";
	position: relative;
	background-color: rgba(255,255,255,0.4);
	width: 100%;
	z-index: 90;
	}

header .logo {
	max-width: 450px;
	width: 100%;
	display: block;
}

header .address {
	margin-left: 80px;
    position: relative;
}

header .address::before {
	width: 36px;
    height: 36px;
    background-color: #aca77b;
    display: table;
    content: "";
    position: absolute;
    margin-left: -50px;
    border-radius: 50%;
	background-image: url('../img/map_marker.svg');
	background-position: center center;
	background-size: 24px 24px;
	background-repeat: no-repeat;
}
/*
 * SECTION - MAP
 */
.section-map::before {
    background-image: url(../img/map_arrow.png);
    position: absolute;
    height: 150vh;
    width: 100%;
    content: "";
    display: block;
    z-index: 200;
    background-position: 25% bottom;
	background-size: 450px auto;
	background-repeat: no-repeat;
    bottom: 27%;
    left: 0%;
}
.section-map {
	position:relative;
	display:block;
	width:100%;
	height: 100vh; 
    background-image: linear-gradient(to top, rgba(255,255,255,0) 0%, rgba(255,255,255,1)), url('../img/map.jpg');
	background-size: cover;
	background-position: center center;
}

.section-map .end-decor {
	position: absolute;
    bottom: 0;
    height: 15%;
    width: 100%;
    display: block;
    background-color: rgba(172,167,123,1);
    clip-path: polygon(0 0%, 100% 70%, 100% 100%, 0 100%);
}

.section-map .address {
	display: inline-block;
    right: 10%;
	top: 10%;
    position: absolute;
	    z-index: 200;
	
}
.section-map .address p {
    margin: 0;
    text-align: right;
    position: relative;
    display: block;
    margin-right: 50px;
}
.section-map .address p::after {
    width: 50px;
    height: 50px;
    content: "";
    position: absolute;
    background-image: url(../img/map_marker.svg);
    background-size: 50px 50px;
    top: -5px;
    background-repeat: no-repeat;
    right: -55px;
    filter: invert(68%) sepia(33%) saturate(302%) hue-rotate(30deg) brightness(170%) contrast(88%);
}
.section-map .address h3 {
	font-weight: bold; 
	font-size: 76px;
	margin: 0;
	text-align: right;
	margin-right: 50px;
}
/*
 * SECTION - OUTSIDE
 */

.section-outside {
	position:relative;
	display:block;
	width:100%;
	height: 120vh; 
    background-image: url('../img/outside-bg.jpg');
	background-size: cover;
	background-position: center center;
}

.section-outside h3 {
	display: inline-block;
    right: 10%;
	top: 7%;
    position: absolute;
	font-weight: bold; 
	font-size: 76px;
	margin: 0;
	
}
.section-outside-info {
	position: relative;
	display: block;
	margin-bottom: -10%;
}

.section-outside-info .gallery {
	position: relative;
    margin: 0 15%;
    transform: translate(0%, -50%);
}
.section-outside-info .gallery .col-33 img {
	border: 10px solid #fff;
}
.section-outside-info .outside-txt {
	aspect-ratio: 1/1;
	background-color: #fff;
	padding: 10px 20px;
	overflow: hidden;
	display:block;
	position:relative;
	width: calc(100% - 30px);
}

.section-outside-info .outside-txt .end-decor {
    position: absolute;
    bottom: 2%;
    height: 15%;
    width: calc(100% + 30px);
	margin-left: -30px;
    display: block;
    background-color: rgba(172,167,123,1);
    clip-path: polygon(0 0%, 100% 70%, 100% 100%, 0 100%);
}

.outside-img-desc {
	text-align: center;
	margin: 0px 15px;
}

/*
 * SECTION - INSIDE
 */

.section-inside {
	position:relative;
	display:block;
	width:100%;
	height: 100vh; 
    /* Fallback */
    background-image: url('../img/inside-bg.jpg');
	background-size: 100% auto;
	background-position: center right;
	background-repeat: no-repeat;
}

.section-inside h3 {
	display: inline-block;
    right: 10%;
	top: 7%;
    position: absolute;
	font-weight: bold; 
	font-size: 76px;
	margin: 0;
}
/*
 * SECTION - SHOP AREA
 */
.section-shoparea {
	position:relative;
	display:block;
	width:100%;
	aspect-ratio: 1/1;
    background-image: linear-gradient(to top, rgba(255,255,255,0) 90%, rgba(255,255,255,1)), url('../img/shoparea-bg.jpg');
	background-size: cover;
	background-position: center center;
	    z-index: 100;
}

.section-shoparea::after {
    position: absolute;
    bottom: -10%;
	content: '';
    height: 10%;
    width: calc(100% + 30px);
	margin-left: -30px;
    display: block;
    background-color: rgba(172,167,123,1);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 70%);
	z-index: 100;
}

.section-shoparea .info-box {
	display: inline-block;
    left: 5%;
	top: -18%;
    position: absolute;
	margin: 0;
	max-width: 320px;
}

.section-shoparea .info-box h3 {
	font-weight: bold; 
	font-size: 55px;
	margin: 10px 0px;
	line-height: 55px;
}

.section-shoparea-gallery {
    transform: translate(0%, -80%);
	margin-bottom: -20%;
	z-index: 200;
    position: relative;
}
.section-shoparea-gallery .col-33 img {
	border: 10px solid #fff;
}
/*
 * SECTION - BUILDING STORAGE
 */

.section-buildingstorage {
    position: relative;
    display: block;
    width: 100%;
    height: 120vh;
    background-image: url(../img/employeesarea-arrow.jpg);
    background-size: auto auto;
    background-position: top left;
    background-repeat: no-repeat;
}
.section-buildingstorage .info-box {
	display: inline-block;
    left: 30%;
	top: 50%;
    position: absolute;
	margin: 0;
	max-width: 500px;
}

.section-buildingstorage .info-box h3 {
	font-weight: bold; 
	font-size: 55px;
	margin: 10px 0px;
	line-height: 55px;
}

.section-buildingstorage-gallery {
    transform: translate(0%, 60%);
	margin-top: -20%;
	z-index: 200;
    position: relative;
}
.section-buildingstorage-gallery .col-33 img {
	border: 10px solid #fff;
}
.section-buildingstorage-largeimg {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url('../img/buildingstorage-large.jpg');
	background-size: cover;
	background-position: center center;
}

.section-buildingstorage-largeimg .end-decor {
	position: absolute;
    bottom: 0;
    height: 15%;
    width: 100%;
    display: block;
    background-color: rgba(172,167,123,1);
    clip-path: polygon(0 0%, 100% 70%, 100% 100%, 0 100%);
}
/*
 * SECTION - EMPLOYEES AREA
 */

.section-employeesarea {
    position: relative;
    display: block;
    width: 100%;
    height: 120vh;
    background-image: url(../img/employeesarea-arrow.jpg);
    background-size: auto auto;
    background-position: top left;
    background-repeat: no-repeat;
}
.section-employeesarea .info-box {
	display: inline-block;
    left: 30%;
	top: 50%;
    position: absolute;
	margin: 0;
	max-width: 500px;
}

.section-employeesarea .info-box h3 {
	font-weight: bold; 
	font-size: 55px;
	margin: 10px 0px;
	line-height: 55px;
}

.section-employeesarea-gallery {
    transform: translate(0%, 60%);
	margin-top: -20%;
	z-index: 200;
    position: relative;
}
.section-employeesarea-gallery .col-33 img {
	border: 10px solid #fff;
}
.section-employeesarea-largeimg {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url('../img/employeesarea-large.jpg');
	background-size: cover;
	background-position: center center;
}

.section-employeesarea-largeimg .end-decor {
	position: absolute;
    bottom: 0;
    height: 15%;
    width: 100%;
    display: block;
    background-color: rgba(172,167,123,1);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
}
/*
 * SECTION - CITY CENTRE
 */

.section-citycentre {
	position:relative;
	display:block;
	width:100%;
    /* Fallback */
    background-image: url('../img/citycentre.jpg');
	background-size: 100% auto;
	background-position: center right;
	background-repeat: no-repeat;
	aspect-ratio: 1/1;
}

/*
 * SECTION - CLIENTS
 */
 
.section-clients {
	position:relative;
	display:block;
	width:100%;
	height:100vh;
    /* Fallback */
    background-image: url('../img/clients-arrow.jpg');
	background-size: 30% auto;
	background-position: 90% -15%;
	background-repeat: no-repeat;
}
.section-clients .info-box {
	display: inline-block;
    left: 10%;
	top: 15%;
    position: absolute;
	margin: 0;
	max-width: 500px;
}
.section-clients .info-box h3 {
	font-weight: bold; 
	font-size: 55px;
	margin: 40px 0px;
	line-height: 55px;
}
.section-clients .info-box h4 {
	font-weight: bold; 
	font-size: 55px;
	margin: 40px 0px;
	line-height: 55px;
}

.section-clients-gallery {
    transform: translate(0%, 60%);
	margin-top: -20%;
	z-index: 200;
    position: relative;
}
.section-clients-gallery .col-33 img {
	border: 10px solid #fff;
}
.section-clients-largeimg {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url('../img/clients-large.jpg');
	background-size: cover;
	background-position: center center;
}

.section-clients-largeimg .end-decor {
	position: absolute;
    bottom: 0;
    height: 15%;
    width: 100%;
    display: block;
    background-color: rgba(172,167,123,1);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
}
/*
 * SECTION - COMPETITION
 */
.section-competition {
	position:relative;
	display:block;
	width:100%;
	min-height:80vh;
    /* Fallback */
    background-color: #aca77b;
	background-image: url('../img/competition-arrow.jpg');
	background-size: 90% auto;
	background-position: 100% 0%;
	background-repeat: no-repeat;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 90%);
	z-index: 100;
}
.section-competition .info-box {
	display: inline-block;
    left: 35%;
	top: 10%;
    position: absolute;
	margin: 0;
	max-width: 500px;
}
.section-competition .info-box h3 {
	font-weight: bold; 
	font-size: 55px;
	margin: 40px 0px;
	line-height: 55px;
}
.section-competition .info-box h4 {
	font-weight: bold; 
	font-size: 55px;
	margin: 40px 0px;
	line-height: 55px;
}
.section-competition .end-decor {
	position: absolute;
    bottom: 0;
    height: 15%;
    width: 100%;
    display: block;
    background-color: rgba(172,167,123,1);
}
.section-competition .gallery { padding-top: 30%; padding-bottom: 15%; position:relative; }
.section-competition .gallery img {
  object-fit: cover;
  width: calc(100% - 20px);
  aspect-ratio: 2/1;
}
/*
 * SECTION - ETTELBRUCK
 */
.section-ettelbruck {
	position:relative;
	display:block;
	width:100%;
	min-height: 80vh;
    background-image: url('../img/ettelbruck-arrow.jpg');
	background-size: 80% auto;
	background-position: 50% 0%;
	background-repeat: no-repeat;
	margin-top: -20%;
	z-index: 50;
}
.section-ettelbruck h3 {
	display: inline-block;
    right: 10%;
	bottom: 30%;
    position: absolute;
	font-weight: bold; 
	font-size: 76px;
	margin: 0;
}
.section-ettelbruck-gallery {
    transform: translate(0%, 60%);
	margin-top: -20%;
	z-index: 200;
    position: relative;
}
.section-ettelbruck-gallery .col-33 img {
	border: 10px solid #fff;
}
.section-ettelbruck-largeimg {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
    background-image: url('../img/ettelbruck-large.jpg');
	background-size: cover;
	background-position: center center;
}

.section-ettelbruck-largeimg .end-decor {
	position: absolute;
    bottom: 0;
    height: 15%;
    width: 100%;
    display: block;
    background-color: rgba(172,167,123,1);
    clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
}
.section-ettelbruck2-gallery {
    transform: translate(0%, 30%);
	margin-top: -20%;
	z-index: 200;
    position: relative;
	margin-bottom: 10%;
}
.section-ettelbruck2-gallery .col-33 img {
	border: 10px solid #fff;
}
/*
 * SECTION - CONTACT
 */
.section-contact {
	display: block;
	height: auto;
	transform: translate(0%, -150px);
	background-image: url('../img/copyright_arrow.jpg');
	background-size: 40% auto;
	background-position: center right;
	background-repeat: no-repeat;
	aspect-ratio: 2.6/1;
	text-transform: uppercase;
}
.section-contact .address {
	display: block;
    margin-left: 10%;
}
.section-contact .address p {
    margin: 0;
    position: relative;
    display: block;
}
.section-contact .address h3 {
	font-weight: bold; 
	font-size: 76px;
	margin: 0;
}
.section-contact .copyright {
	display: block;
    right: 15%;
	top: 20%;
	position: absolute;
}
/*
 * FOOTER
 */
footer {
	display: block;
	position: absolute;
	width: 100%;
	z-index: 100;
}

footer::after {
	margin-top: 10vh;
	clip-path: polygon(0 0, 100% 13%, 100% 100%, 0% 100%);
	display: block;
	content: "";
	position: relative;
	background-color: #aca77b;
	width: 100%;
	height: 50vh;
	z-index: 90;
}
/*
 * RESPONSIVE
 * @media screen and (min-width: 992px){ }
 */
@media screen and (max-width: 1200px){
	.section-contact {
		transform: translate(0%, -0px);
	}
	.section-contact .copyright {
		display: block;
		right: 5%;
		top: 10%;
		position: absolute;
	}
	.outside-txt { font-size: 12px; }
	.section-map::before {
		bottom: 70vh;
		    left: -20vw;
	}
	.section-inside h3 {
		top: 20%; 
	}
}
 
@media screen and (max-width: 767px){
	.row .col-33 {
		flex-grow: 1;
		width: 100%;
	}
	.section-competition .gallery {
		padding-top: 70%;
	}
	.section-competition .info-box {
		left: 5%;
		top: 15%;
	}
	.section-ettelbruck {
    min-height: 65vh;
	}
	.section-buildingstorage .info-box {
    left: 0%;
    width: 90%;
    margin: 0 5%;
	}
	.section-employeesarea .info-box {
    left: 0%;
    width: 90%;
    margin: 0 5%;
	}
	.section-clients .info-box {
    left: 0%;
    width: 90%;
    margin: 0 5%;
	}
	.section-clients {
    height: 35vh; 
	}
	header .logo {
		max-width: 250px;
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 30px;
	}
	header .address {
		position: relative;
		display: table;
		margin-left: auto;
		margin-right: auto;
	}
	.section-outside-info .gallery {
		transform: translate(0%, -0%);
		margin: 0 5%;
	}
	.section-outside-info .outside-txt {
		margin: 0px 10px;
		width: calc(100% - 60px);
	}
	.section-outside-info {
		transform: translate(0%, -5%);
	}
	.section-citycentre {
		position:relative;
		display:block;
		width:100%;
		/* Fallback */
		background-image: url('../img/citycentre.jpg');
		background-size: 145% auto;
		background-position: 65% center;
		background-repeat: no-repeat;
		aspect-ratio: 0.6/1;
	}
	.section-shoparea-gallery {
		transform: translate(0%, 0%);
	}
	.section-shoparea {
		margin-top: 30%;
	}
	.section-shoparea .info-box {
		top: -54%; 
	}
	.section-shoparea-gallery {
		transform: translate(0%, -5%);
	}
	.section-buildingstorage {
		background-position: 1300% 300%;
		height: 100vh;
	}
	.section-employeesarea {
		background-position: 1300% 300%;
		height: 100vh;
	}

	.section-buildingstorage .info-box {
		top: 38%;
	}
	.section-buildingstorage-gallery {
		transform: translate(0%, 0%);
		margin-top: -20%; 
	}
	.section-employeesarea {
		background-position: 1300% 300%;
	}
	.section-employeesarea .info-box {
		top: 28%;
	}
	.section-employeesarea-gallery {
		transform: translate(0%, 0%);
		margin-top: -20%; 
	}
	.section-contact {
		background-size: 30% auto;
	}
	.section-contact .copyright {
		display: block;
		position: unset;
		width: 100%;
		text-align:center; 
		margin-top: 80px;
	}
	.section-ettelbruck h3 {
		bottom: 15%; 
	}
	.section-ettelbruck-gallery {
    transform: translate(0%, 20%); 
	}
	.section-ettelbruck2-gallery {
		margin-bottom: %; 
		transform: translate(0%, 0%);
		    margin-top: -7%;
	}
	.section-map .address {
    display: inline-block;
    right: 10%;
    top: 10%;
	}
}

@media screen and (max-width: 600px){
	 body { font-size: 12px; }
	 h3, h4 { font-size: 36px !important; }
	 header .address p { margin-top: 0; }
}
@media screen and (max-width:400px){
	 h3, h4 { font-size: 24px !important; }
	.section-ettelbruck {
		min-height: 40vh; 
	}
}