*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

ul, ol, li, dl{
	padding: 0;
	margin: 0;
	list-style-type: none;
}

html, body, h1, h2, h3, h4, h5, h6, p{
	margin: 0;
}

a{
	text-decoration: none;
	outline: none;
	color: inherit;
}

a img{
	border: none;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{ 
    display: block;
}

#fancybox-wrap, #fancybox-wrap *{
	box-sizing: content-box;
}

.container{
	width: 1170px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
}

.row{
	width: 100%;
	margin: 0 auto;
}

/*** hamburger ***/
.hamburger-menu {
    display: none;
    position: absolute;
    top: 10px;
    right: 15px;
    margin: auto;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.bar,
.bar:after,
.bar:before {
    width: 50px;
    height: 5px;
}

.bar {
    position: relative;
    transform: translateY(25px);
    background: white;
    transition: all 0ms 300ms;
}

.bar.animate {
    background: rgba(255, 255, 255, 0);
}

.bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 15px;
    background: white;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 15px;
    background: white;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}

.bar.animate:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
/*** base ***/


html{
	font-size: 62.5%;	
}

body{
	font-size: 1.6rem;
	font-family: 'Montserrat', sans-serif;
}

.subpage .content{
	overflow: hidden;
}

.content p{
	line-height: 150%;
}

.content p:not(:last-of-type){
	margin-bottom: 12px;
}

.sub-header{
	padding-bottom: 10px;
}

.content ul li{
	list-style-type: disc;
	list-style-position: inside;
	margin-bottom: 6px;	
}

.content ol{
	padding-left: 15px;	
}

.content ol li{
	list-style-type: decimal;
	margin-bottom: 6px;
}

.news{
	padding-bottom: 25px;
}

#foto{
	text-align: center;
}

#foto li{
	float: left;
	width: 23%;
	margin: 1%;
	list-style-type: none;
}

#foto li img{
	width: 100%;
	height: auto;
}

.contact-content{
	float: left;
	width: 60%;
}

.contact-form{
	float: right;
	width: 35%;
}

form{
	float: right;
	width: 100%;
	overflow: hidden;	
	position: relative;
	display: block;
	padding-left: 1px;
	font-family: inherit;
}

form input[type="text"], form textarea, form input[type="email"]{
	border: 0px;
	padding: 10px;
	width: calc(100% - 1px);
	color: #404040;	
	font-family: inherit;
	font-size: .9em;
	background: rgba(189, 138, 81, .1);
	border-bottom: 1px solid #fff;
	margin-bottom: 2px;
}

form textarea{
	min-height: 140px;
	max-height: 140px;
	padding: 10px;
	overflow: auto; 
	font-size: .9em;
	font-family: inherit;
}

form input[type="submit"] {
	background: #DAA946;
	border: medium none;
	color: #fff;
	cursor: pointer;
	display: block;
	font-family: inherit;
	letter-spacing: 1px;
	padding: 10px 0;
	width: 100%;
	border:0;
	margin: 0px;
	font-size: 1em;
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;	
}

form input[type="submit"]:hover{
	background: #91702E;
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;
}

form span{
	display: inline-block;
	margin-top: 5px;
	margin-bottom: 3px;
}

.komunikat {
    background: green;
    color: #fff;
    top: 0;
    left: 0;
    padding: 10px 0;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 999;
    font-size: 1.7rem;
}

.pagin{
	text-align: center;
}

.pagin a{
	display: inline-block;
	border: 1px solid #000;
	padding: 5px 7px;
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;
	margin: 4px 0;
}

.pagin a:hover, .pagin a.selected{
	background: #000;
	color: #fff;
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;		
}

.cookies{
	text-align: center;
	padding: 5px 0;
}

footer{
	text-align: center;
	padding: 25px 15px;
	font-size: 1.2rem;
	opacity: .6;
	border-top: 1px solid rgba(0,0,0,.1);
}

/***/
header{
	height: 400px;
	background: url(../images/img1.jpg) no-repeat center / cover;
}

header > .container{
	height: 286px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

header h1{
	color: #DAA946;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 25px;
}

header h2{
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 500;
}

header h2 span{
	display: inline-block;
	margin: 0 10px;
}

.nav-container{
	border-top: 1px solid rgba(255,255,255,.2);
}

nav{
	height: 114px;
	display: flex;
	flex-direction: row;	
		align-items: center;
}

nav ul{
	text-align: center;


	margin: 0 auto;
/*	justify-content: space-around;*/
}

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

nav a{
	display: inline-block;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: .3rem;
	white-space: nowrap;
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;		
}

nav a:hover, nav .active a{	
	color: #DAA946;
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;		
}

.home section{
	padding: 40px 0;
}

.home section h3{
	text-transform: uppercase;
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 30px;
	color: #2F2F2F;
}

.more{
	text-transform: uppercase;
	text-align: center;
	display: block;
	margin: 25px 0;
	color: #DAA946;
	letter-spacing: .2rem;
	margin-bottom: 0px;
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;	
}

.more:hover{
	color: #7E5C36;
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;		
}

#map-canvas{
	height: 400px;
	width: 100%;
}

.team{
	background: url(../images/img2.jpg) no-repeat center / cover;
	color: #fff;
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;	
}

section.team h3, .team p{
	color: #fff;
}

.team .more{
	color: rgba(255,255,255,.3);
}

.team .more:hover{
	color: rgba(255,255,255,.5);
	-webkit-transition: all 0.3s, -webkit-transform;
	-moz-transition: all 0.3s, -moz-transform;
	transition: all 0.3s, transform;		
}

.home section div div{
	line-height: 160%;
}

.subpage .content{
	margin-top: 40px;
	margin-bottom: 25px;
	color: #2F2F2F;
}

.sub-header{
	text-transform: uppercase;
	margin-bottom: 30px;
	font-size: 2.6rem;
}

.subpage .content li{
	line-height: 160%;
}

ul ul{
	padding-left: 20px;
	padding-top: 3px;
	list-style-type: circle
}

ul ul li{
	list-style-type: circle!important;
	display: list-item;
}

/**** media queries ****/
@media (max-width: 1200px){ 
	.container{
		width: 100%;
	}
}

@media (max-width: 970px){ 
	header{
		height: 280px;
	}
	.nav-container{
		border-top: 0; 
	}
	nav{
		display: none;
		position: absolute;
		left: 0px;
		top: 0px;
		width: 240px;
		margin-left: 0px;
		margin-top: 0px;
		z-index: 9;
	}
	nav li{
		margin-left: 0px;
		width: 100%;
		float: none;
	}
	nav a{
		margin: 0 auto;
		display: block;
		width: 100%;
		padding: 15px;
		background: #7E5C36;
		font-size: 1.75rem;
		border-bottom: 1px solid rgba(255,255,255,.2);
	}
	nav li:last-of-type a{
		border-bottom: 0px;
	}
	nav a:hover, nav .active a{
		border-bottom: 1px solid rgba(255,255,255,.2);
	}
	.hamburger-menu{
		display: block;
	}
	.contact-content{
		width: 100%;
	}
	.contact-form{
		width: 100%;
		margin-top: 25px;
	}
}