nav .navbar-nav li a{
  color: rgba(0,0,0,.9) !important;
}
a.hover-unerline {
	position: relative;
	padding-bottom: 2px;
}	
a.hover-unerline:after {    
	background: none repeat scroll 0 0 transparent;
	content: "";
	display: block;
	height: 2px;
	left: 50%;
	position: absolute;
	background: #ccc;
	transition: width 0.3s ease 0s, left 0.3s ease 0s;
	width: 0;
}
a.hover-unerline:hover:after { 
	width: 100%; 
	left: 0; 
}
.link-unstyled {
	font-style: inherit;
	color: inherit;
	background-color: transparent;
	font-size: inherit;
	text-decoration: none;
	font-variant: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	border-radius: inherit;
	border: inherit;
	outline: inherit;
	box-shadow: inherit;
	padding: inherit;
	vertical-align: inherit;
 }
.link-unstyled:visited {
	font-style: inherit;
	color: inherit;
	background-color: transparent;
	font-size: inherit;
	text-decoration: none;
	font-variant: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	border-radius: inherit;
	border: inherit;
	outline: inherit;
	box-shadow: inherit;
	padding: inherit;
	vertical-align: inherit;
 }
.link-unstyled:hover {
	font-style: inherit;
	color: inherit;
	background-color: transparent;
	font-size: inherit;
	text-decoration: none;
	font-variant: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	border-radius: inherit;
	border: inherit;
	outline: inherit;
	box-shadow: inherit;
	padding: inherit;
	vertical-align: inherit;
 }
.link-unstyled:active {
	font-style: inherit;
	color: inherit;
	background-color: transparent;
	font-size: inherit;
	text-decoration: none;
	font-variant: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	border-radius: inherit;
	border: inherit;
	outline: inherit;
	box-shadow: inherit;
	padding: inherit;
	vertical-align: inherit;
 }
.link-unstyled:focus {
	font-style: inherit;
	color: inherit;
	background-color: transparent;
	font-size: inherit;
	text-decoration: none;
	font-variant: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	border-radius: inherit;
	border: inherit;
	outline: inherit;
	box-shadow: inherit;
	padding: inherit;
	vertical-align: inherit;
 }
.link-unstyled:active:hover {
	font-style: inherit;
	color: inherit;
	background-color: transparent;
	font-size: inherit;
	text-decoration: none;
	font-variant: inherit;
	font-weight: inherit;
	line-height: inherit;
	font-family: inherit;
	border-radius: inherit;
	border: inherit;
	outline: inherit;
	box-shadow: inherit;
	padding: inherit;
	vertical-align: inherit;
}
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}
.photo-gallery {
  color:#313437;
  background-color:#fff;
}

.photo-gallery p {
  color:#7d8285;
}

.photo-gallery h2 {
  font-weight:bold;
  margin-bottom:40px;
  padding-top:40px;
  color:inherit;
}

@media (max-width:767px) {
  .photo-gallery h2 {
    margin-bottom:25px;
    padding-top:25px;
    font-size:24px;
  }
}

.photo-gallery .intro {
  font-size:16px;
  max-width:500px;
  margin:0 auto 40px;
}

.photo-gallery .intro p {
  margin-bottom:0;
}

.photo-gallery .photos {
  padding-bottom:20px;
}

.photo-gallery .item {
  padding-bottom:30px;
}

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.card-img-wrap {
  overflow: hidden;
  position: relative;
}
.card-img-wrap:after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  //background: rgba(255,255,255,0.3);
  //opacity: 0;
  //transition: opacity .25s;
}
.card-img-wrap img {
  transition: transform .25s;
  width: 100%;
}
.card-img-wrap:hover img {
  transform: scale(1.2);
}
.card-img-wrap:hover:after {
//  opacity: 1;
}

section:before {
	height: 54px;
	content: "";
	display: block;
}

.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}