html
{
	height: 100%;
	box-sizing: border-box;
}

body
{
	background-color: #000;
	font-family: 'Lato', sans-serif;
	color: #ffff00;
	font-size: 18px;
	position: relative;
	margin: 0;
	padding-bottom: 6rem;
	min-height: 100%;
}

h1
{
	text-align: center;
	font-size: 26px;
	margin: 0px;
}

h2
{
	text-align: center;
	font-size: 20px;
	margin: 0px;
	color: #cccec4;
	line-height: 28px;
}

p
{
	text-align: justify;
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 0px;
}

header
{
	width: 100%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

nav
{
	width: 100%;
	height: 80px;
	margin-top: 20px;
	margin-bottom: 60px;
	background-color: #d13321;
}

nav > a
{
	display: block;
	width: 15%;
	margin-right: 5%;
	font-size: 28px;
	font-weight: bold;
	height: 60px;
	padding-top: 20px;
	text-decoration: none;
	color: #ffff00;
	float: left;
}

nav > a:first-child
{
	margin-left: 22.5%;
}

nav > a:hover
{
	background-color: #ffff00;
	color: #000;
}

#main
{
	width: 100%;
	min-height: 700px;
}

section
{
	width: 100%;
	height: auto;
}

article
{
	width: 48%;
	height: 400px;
	float: left;
}

#photo_main_div
{
	float: left;
	width: 46%;
	height: 400px;
	margin-left: 3%;
	margin-right: 3%;
}

.photo_main_inside_div
{
	position: relative;
	width: 50%;
	height: 200px;
	float: left;
	text-align: center;
	overflow: hidden;
}

.photo_main_inside_div img
{
	transition: all 0.5s ease-in-out;
	width: 92%;
	max-height: 92%;
	height: auto;
}

.photo_main_inside_div:hover img
{
	-webkit-transform: scale(1.3);
	-ms-transform: scale(1.3);
	transform: scale(1.3);
}

footer
{
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #d13321;
  font-weight: 700;
  font-size: 16px;
}

.contact_form
{
	width: 33%;
	max-height: 102px;
	float: left;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 5%;

}

.gallery_photo_div_vertical
{
	width: 22%;
	height: 300px;
	float: left;
	margin-left: 5%;
	margin-right: 5%;
	margin-bottom: 20px;
}

.gallery_photo_vertical
{
	width: 100%;
	height: 100%;
	border: 2px solid yellow;
	cursor: pointer;
}

.gallery_photo_div_horizontal
{
	width: 29%;
	height: 300px;
	float: left;
	margin-bottom: 40px;
}

.gallery_photo_horizontal
{
	width: 100%;
	height: 100%;
	border: 2px solid yellow;
	cursor: pointer;
}

.close
{
	position: absolute;
	top: 305px;
	right: 18%;
	color: red;
	font-size: 26px;
	font-weight: bold;
	cursor: pointer;
}

.close_button
{
	width: 40px;
	height: 40px;
}

.big_photo_horizontal
{
	width: 64%;
	position: absolute;
	top: 300px;
	left: 18%;
	border: 3px solid yellow;
}

.big_photo_vertical
{
	width: 40%;
	position: absolute;
	top: 300px;
	left: 30%;
	border: 3px solid yellow;
}

.bg_photo_big
{
	width: 100%;
	height: 100%;
	background-color: black;
}