/*=== MEDIA QUERY ===*/
@import url("https://fonts.googleapis.com/css?family=Muli:300,400,600,700,800,900");
body {
line-height: 1.5;
font-family: "Muli", sans-serif;
}
p, li, input, select, button {
font-family: "Muli", sans-serif;
font-size: 14px;
font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
font-family: "Muli", sans-serif;
font-weight: 600;
}

h1 {
font-size: 35px;
}
h2 {
font-size: 25px;
}
h3 {
font-size: 20px;
}
h4 {
font-size: 18px;
}
	.navbar{
		background: #e0e3e6;
	}
	.navbar-nav li{
		padding: 4px 30px;
		border-right: 1px solid grey;
		font-size: 20px;
	}
	.dropdown-menu, .navbar-nav li:focus,
	.dropdown-menu, .navbar-nav li:hover
	{
		background: rgba(0,0,0,0.1);
	}
	.dropdown-menu{
		background: lightgrey;
		border-radius: 0px;
		margin-top: -1px;
	}	
	.dropdown-menu a{
		border-bottom: 1px solid grey;
		font-size: 22px;
	}
		.social a{
			padding-right: 10px;
		}
		.social a i{
			background: darkblue;
			border:1px solid black;
			border-radius: 50%;
			font-size: 20px;
			width: 40px;
			height: 40px;
			padding: 10px;
			color: white;
		}

.box {
  position: relative;
  width: 100%;
}

.image {
  opacity: 1;
  display: block;
  transition: .5s ease;
  backface-visibility: hidden;
}

.middle {
  transition: .5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.box:hover .image {
  opacity: 0.7;
}

.box:hover .middle {
  opacity: 1;
}

.text {
  background-color: ;
  color: white;
  font-size: 25px;
  padding: 16px 32px;
}
