html, body {
  margin: 0px;
  padding: 0px;
}
body {
  background: rgba(0,0,0,0.9);
  color: #fff;
  font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
  font-size: 12px;
}

#logo {
  width: 160px;
  display: inline-block;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 10px;
}
#logo img  {
  max-width: 100%;
  height: auto;
}

.clear {
  clear: both;
}

#content {
  padding: 0px;
  width: 1000px;
  margin: 0 auto;
}

#content .blocks {
  display: block;
}

#content .blocks .block {
  display: inline-block;
  text-align: center;
  width: calc(50% - 30px);
  margin: 5px;
  padding: 10px;
  float: left;
  height: 500px;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

#content .blocks .block img {
  max-width: 100%;
  max-height: 50vh;
  height: auto;
}


#content .blocks .block-04 img {
filter: grayscale(1);
}

#content .blocks .block a,
#content .blocks .block .no-link {
  color: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
	position: relative;
  overflow: hidden;
}
#content .blocks .block a h2,
#content .blocks .block .no-link h2 {
  margin: 0px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 999;
  font-size: 22px;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8);
  -webkit-transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -o-transition: all .15s ease-in-out;
  transition: all .15s ease-in-out;
}

.blocks .block a::before {
	position: absolute;
	top: 0;
	left: -100%;
	z-index: 2;
	display: block;
	content: '';
	width: 50%;
	height: 100%;
	background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.3) 100%);
	-webkit-transform: skewX(-25deg);
	transform: skewX(-25deg);
}
.blocks .block a:hover::before,
.blocks .block no-link:hover::before {
	-webkit-animation: shine .75s;
	animation: shine .75s;
}
@-webkit-keyframes shine {
	100% {
		left: 125%;
	}
}
@keyframes shine {
	100% {
		left: 125%;
	}
}


.footer {
  margin: 50px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  text-align: center;
  font-family: Arial;
  font-weight: 300x;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}


.footer a {
  text-decoration: underline;
  color: rgba(255,255,255,0.8);
}




#map {
  padding: 15px;
  display: block;
}
#map img {
  max-width: 100%;
  height: auto;
}






/* sizes */

@media only screen and (min-width: 1000px) {
  #content {
    width: 1000px;
  }
  #content .blocks .block,
  #content .blocks .block a,
  #content .blocks .block .no-link {
    height: 500px;
  }
}

@media only screen and (max-width: 1000px) {
  #content {
    width: 100%;
  }
  #content .blocks .block,
  #content .blocks .block a,
  #content .blocks .block .no-link {
    height: auto;
  }
  
  #content .blocks .block-01,
  #content .blocks .block-02,
  #content .blocks .block-03,
  #content .blocks .block-04 {
  background: rgba(255,255,255,0.1);
  background-size: 100%;
  width: calc(50% - 20px);
  margin: 5px;
  padding: 5px;
  }
  
  #map {
    padding: 7px;
  }
}


