* { box-sizing: border-box; font-family: proxima-nova, sans-serif; }
body { width: 100%; margin: 0; background-color: #FFF;}
ul, li { margin: 0; padding: 0;}
a { text-decoration: none !important; } 

h1, h2, h3 { text-align: center; font-family:  "Montserrat", Arial, Tahoma, sans-serif; }
h1.title { padding: 20px 0; font-weight: bold; color: #1b2330; } 

.container { width: 1080px; margin: auto; }

header {
	width: 100%;
	height: 90px;
	background-color: #1b2330;
	position: fixed;
	z-index: 1000;
}

header .logo {
	height: 90px;
	line-height: 90px;
	width: 420px;
	float: left;
}

header .logo > img {
	height: 80px;
	line-height: 90px;
} 

header nav#menu {
	width: 600px;
	float: right; 
}

nav#menu ul {
	float: right;
    margin-right: 15px;
    position: relative;
    width: auto;
    height: 90px;
	list-style: none outside none;
}

nav#menu ul:after {
	content: " ";
	background: none!important;
    border-color: transparent transparent #ccc;
    border-style: solid;
    border-width: 0 7px 7px;
    display: block;
    height: 0;
    left: 50%;
    top: auto;
    bottom: 0;
    width: 0;
    height: 4px;
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 203;
    opacity: 1;
}

nav#menu ul > a {
	border-bottom: 5px solid transparent;
    float: left;
    text-align: left;
    line-height: 90px;
    margin: 0 10px;
    text-transform: uppercase;
    font-size: 1.5em;
} 

nav#menu a {
	color: #8b989b;
}

nav#menu a:hover {
	color: #fff;
	cursor: pointer;
}

nav#menu a:after {
	
}

/* SLIDESHOW */

section#slideshow {
	width: 100%;
	height: 100vh;
	overflow: hidden;
}

section#slideshow img {
	width: 100%;
}

.slideshow-description {
	z-index: 100;
	position: absolute;
	margin-left: auto;
	margin-right: auto;
	left: 0;
	right: 0;
	margin-top: auto;
	margin-bottom: auto;
	top: 0;
	bottom: 0;
	width: 1080px;
	height: 200px;
	background-color: rgba(0,0,0,0.5);
	border-left: 5px solid white;
	border-right: 5px solid white;
} 

.slideshow-description:after {
	content: " ";
	position: absolute;
	width: 200px;
	height: 5px;
	bottom: 0;
	background-color: white;
}

.slideshow-description:before {
	content: " ";
	position: absolute;
	width: 200px;
	height: 5px;
	top: 0;
	right: 0;
	background-color: white;
}

 
.slideshow-text {
	text-align: center;
	line-height: 200px;
	color: white;
	text-transform: uppercase;
	font-size: 3em;
}


section.margin-s {
	padding-top: 80px !important;
}

/* ABOUT US */
section#about-us {
	padding: 30px 0;
	width: 100%;
	min-height: 500px;
}

.column {
	display: flex;
	flex-wrap: wrap;
}

.my-column {
	width: 50%;
	height: 200px;
	text-align: justify;
	text-justify: inter-word;
	padding: 10px;
}

img.about-us-img {
	width: 500px;
	padding: 10px;
} 

/* OFFER */

section#offer, section#article {
	width: 100%;
	min-height: 500px;
	background-color: #efefef;
}

.my-offer {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.my-offer > div {
	width: 300px;
	height: 400px;
	text-align: center;
	margin: 5px 10px;
}

.my-offer > div img {
	width: 300px;
	max-height: 213px;
} 

.my-offer a:hover img {
	transition: all ease-in-out .3s;
	transform: scale(1.05);
    -moz-transform: scale(1.05);
  	-webkit-transform: scale(1.05);
  	-moz-transition: all 0.3s;
  	-webkit-transition: all 0.3s;
  	transition: all 0.3s; 
  	overflow: hidden;

}

.my-offer h2 {
	color: #f22c21;
	font-size: 25px;
	font-weight: 800;
	letter-spacing: 0;
}

/* ARTICLE */

section#article {
	padding-top: 100px;
	padding-bottom: 30px;
}

.article-img {
	width: 100%;
	padding-bottom: 20px;
}

/* KONTAKT */

section#kontakt {
	width: 100%;
	min-height: 400px;
	background-color: #FFF;
}

section#kontakt iframe {
	width: 100%;
	height: 400px;
}

.my-container {
	display: table;
}

.contact-left {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.contact-left, .contact-right {
	width: 100%;
	float: left;
	padding: 10px;
}

.contact-card {
	width: 350px;
	height: 200px;
	margin: 5px 0;
	text-align: center;
	text-transform: uppercase;
}

.big-icon {
	font-size: 37px;
	color: red;
	margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {

	.container {
		width: 100%;
	}

	header {
		height: 40px;
		margin-bottom: 40px;
		margin-top: -30px;
	}

	header .logo {
		height: 40px;
		line-height: 40px;
	}

	header .logo > img {
		height: 35px;
		line-height: 40px;
	}

	nav {
		display: none;
	}

	.my-column {
		width: 100%;
		height: auto;
	}

	.my-column img {
		width: 100%;
	}

	section#slideshow, section#article {
		margin-top: 30px;
	}

	section#article {
		padding-top: 20px;
	}



}