@import url('https://fonts.googleapis.com/css?family=Droid+Sans');

* {
	font-family: 'Droid Sans', sans-serif, 'Helvetica', 'Arial';
}
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}
.section {
	min-height: 100vh;
	width: 100vw;
}
.content {	
	max-width: 1280px;
	margin: 0 auto;
	text-align: justify;
}
.hero {
	background: url(../images/cover.jpg) center center fixed;
	background-size: cover;
	position: relative;
	text-align: center;
}
.hero img {
	position: absolute;
	width: 90px;
	bottom: 45px;
	left: calc(50% - 45px);
	z-index: 999;
	opacity: .5;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}
.hero img:hover {
	opacity: 1;
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.filter {
	position: absolute;
	top: 0;
	background: #e67e22;
	opacity: .5;
}
.logo {
	position: fixed;
	top: 0px;
	left: 0px;
	background: #fff;
	padding: 10px;
	z-index: 99;
	box-shadow: 0 3px 5px rgba(0,0,0,.2);
}
.logo img {
	width: 100px;
	max-width: 15vw;
}
.menu-btn img {
	position: fixed;
	top: 0px;
	right: 0px;	
	box-shadow: 0 3px 5px rgba(0,0,0,.2);
	z-index: 99;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}
.up-btn {
	position: fixed;
	bottom: 0px;
	right: 0px;
	background: #fff;
	box-shadow: 0 -3px 5px rgba(0,0,0,.2);
	z-index: 99;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	cursor: pointer;
}
.menu-btn img:hover, .up-btn:hover {
	opacity: 1;
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}
.menu-btn img, .up-btn img{
	width: 60px;
	max-width: 15vw;
}
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    background-color: rgba(255,255,255,.95);
    overflow-x: hidden;
    padding-top: 60px;
    transition: 0.5s;
}

.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: #717171;
    display: block;
    transition: 0.3s
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover, .offcanvas a:focus{
    color: #a94442;
}

/* Position and style the close button (top right corner) */
.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
}
.gallery {
	position: relative;
	background: #FFF;
	padding: 50px;
	max-width: 1280px;
	margin: 0 auto;
}
.gallery h1 {
	text-align: center;
}
.gallery img {
	width: 100%;
	z-index: -999;
}
.gallery .load-more {
	position: absolute;
	bottom: -30px;
	background: white;
	font-size: 25px;
	padding: 10px 30px;
	border-radius: 50px;
	left: calc(50% - 62px);
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	max-width: 100%;
	box-shadow: 0 -3px 5px rgba(0,0,0,.2);
}
.gallery .load-more:hover {
	position: absolute;
	bottom: -30px;
	background: white;
	font-size: 25px;
	padding: 10px 30px;
	border-radius: 50px;
	left: calc(50% - 62px);
	opacity: .9;
	-moz-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

.item {
	padding: 0;
	margin: 0;
	position: relative;
	cursor: pointer;
	padding: 10px;
}
.item .background {
	background: rgb(230, 126, 34);
	border-radius: 2px;
}
.item img {
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	-ms-transition: all 0.5s;
	transition: all 0.5s;
	max-width: 100%;
	box-shadow: 3px 3px 10px rgba(0,0,0,.22);
	border-radius: 2px;
}
.item img:hover {
	opacity: .6;
}
.about {
	background: rgba(230, 126, 34, 0.7);
	padding: 20px;
}

h1 {
	text-align: center;
	margin-bottom: 50px;
}

.about h1 {
	color: #fff;
}

.about p {
	font-size: 22px;
	color: #482312;
}
.contact {
	text-align: center;
	color: #a94442;
	background: url(../images/hero.jpg) center center fixed;
	background-size: cover;
	padding-top: 60px;
	padding-bottom: 60px;
}
.contact h1 {
	color: white;
}
.contact .input-group {
	display: block;
	margin-bottom: 20px;
}
.contact input, .contact textarea {
	background: white;
	border: none;
	border-radius: 2px;
	color: #111;
	padding: 10px;
	font-size: 20px;
	width: 80vw;
}
.contact input[type="submit"] {
	background: rgba(255,255,255,.8);
    -webkit-transition: background-color .25s linear;
    -moz-transition: background-color .25s linear;
    -o-transition: background-color .25s linear;
    -ms-transition: background-color .25s linear;
    transition: background-color .25s linear;
}
.contact input[type="submit"]:hover {
	background: #a94442;
	color: white;
}
.contacts {
	font-size: 20px;
	overflow: hidden;
}
.contacts .list {
	margin-top: 30px;
	color: #482312;
}
.contacts li {
	list-style: none;
	padding: 10px;
}
.contacts i {
	font-size: 25px;
	padding: 10px;
}
.contacts .social {	
	padding: 10px;
}
.contacts a {
	text-decoration: none;
}
.contacts .social img {
	width: 25px;
	height: 25px;
	margin-right: 10px;
	border-radius: 50%;
}
.contacts .map {
	padding: 0;
}
.image-container {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	text-align: center;
	background: rgba(0,0,0,.85);
	display: none;
	z-index: 9999;
}
.image-container .close-zoom {
	position: fixed;
	top: 0;
	right: 10vw;
	font-size: 60px;
	color: #a94442;
	text-decoration: none;
}
.image-container .zoomed {
	position: absolute;
	max-height: 90%;
	max-width: 50%;
	left: 50%;
	margin: auto;
  	position: absolute;
  	top: 0; left: 0; bottom: 0; right: 0;
	border-radius: 5px;
}
#map {
	margin-bottom: -10px;
}
@media screen and (min-width: 960px) {
	.logo {
		padding: 20px;
	}
    .about {
		padding: 100px;
	}
	.about p {
			font-size: 50px;
	}
	h1 {
			font-size: 50px;
	}
	.contact {
		padding: 60px;
	}
	.contact input, .contact textarea {
		width: 600px;
		font-size: 26px;
	}
}
@media screen and (max-width: 500px) {
	.contacts {
		font-size: 16px;
	}
	.contacts ul {
		padding-left: 0;
	}
}
