* {
	padding: 0;
	margin: 0;
}

body {
	overflow-x: hidden;
}

.bg-blue {
	background: blue;
}

.bg-red {
	background: red;
}

.bg-yellow {
	background: yellow;
}

.bg-green {
	background: green;
}

.btn-blue {
	background-color: blue;
	border-color: blue;
	color: white;
}

.btn-red {
	background-color: red;
	border-color: red;
	color: white;
}

.btn-yellow {
	background-color: yellow;
	border-color: yellow;
	color: white;
}

.btn-green {
	background-color: green;
	border-color: green;
	color: white;
}

.btn-blue:hover, .btn-red:hover, .btn-yellow:hover, .btn-green:hover {
	opacity: .8;
}

.text-blue {
	color: blue;
}

.text-red {
	color: red;
}

.text-yellow {
	color: yellow;
}

.text-green {
	color: green;
}

.border-blue {
	border-color: blue;
}

.border-red {
	border-color: red;
}

.border-yellow {
	border-color: yellow;
}

.border-green {
	border-color: green;
}

.h-600 {
	min-height: 600px;
}

.h-500 {
	min-height: 500px;
}

.h-400 {
	min-height: 400px;
}

.h-200 {
	min-height: 200px;
}

.h-150 {
	min-height: 150px;
}

.h-130 {
	min-height: 130px;
}

.map-responsive{
    overflow:hidden;
    padding-bottom:50%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}

.v-center {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 85vh;
	background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../images/banner.jpg);
	background-size: cover;
	background-position: center;
}

.logo {
	width: 200px;
	transition-duration: .5s;
	border: none;
	border-radius: 100%;
	transform: scale(1.25);
	background: #e2e2e2;
	box-shadow: 0 0 15px #e2e2e2;
}

.logo:hover {
	transform: scale(1.5);
}

.header {
	height: 10vh;
}

.footer {
	height: 5vh;
}

.contact {
	position: absolute;
	top: 50%;
	right: 0;
	transform: rotate(90deg) translate(0%, -100%);
}

.overlay {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-x: hidden;
  transition: 0.5s;
}

.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}