*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection{
  color: #fff;
  background: #007bff;
}

body{
	font-family: 'Montserrat', sans-serif;
	background-color: #fff;
}
.wrapper {
    margin: 0 auto;
	background-color:#FFF;
}
h2{
	font-size:24px;
	font-weight:400;
	text-transform:uppercase;
	text-align:center;
	margin: 30px 0 30px 0;
	display:block;
	width: 100%;
}
h3{
	font-size:14px;
	font-weight:400;
}
p {
	font-family:Verdana, Geneva, sans-serif;
	font-size:14px;
	line-height:18px;
	color: #000;
	
}

/*header*/
#header-main{width: 100%; height:auto;}
.banner{
	width: 100%;
	height: 100vh;
	background-image: url(img/header.jpg);
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat}
.banner-text{
	position:absolute;
	top: 20%;
	left: 50%;
	transform:translate(-50%,-50%);
	text-align:center;
}
.banner-text h1{
	font-size:32px;
	text-transform:uppercase;
}
.banner-text p{
	margin-top: 15px;
	color: #000;
	font-size:18px;
	font-weight:600;
}
.btn-area{
	margin-top: 15px;
}
.btn{
	display:inline-block;
	padding: 15px 40px;
	text-decoration:none;
	text-align:center;
	background:#F00;
	font-size:16px;
	color:#FFF;
	border-radius: 50px;
	text-transform: uppercase;
}
/*nav*/
.nav{
    border:1px solid #ccc;
    border-width:1px 0;
    list-style:none;
    margin:0;
    padding:0;
    text-align:center;
}
.nav li{
    display:inline;
}
.nav a{
    display:inline-block;
    padding:10px;
	color:#FFF;
	font-family:Verdana, Geneva, sans-serif;
	font-size:14px;
	font-weight:400;
	text-decoration:none;
}
.nav a:hover{
    color: #CCC;
}
/*gallery*/

#index-gallery{
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*min-height: 100vh;*/
}
#index-gallery-2{
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  /*min-height: 100vh;*/
}
.wrapper-gallery{
  /*max-width: 1100px;*/
  margin: 0 5vw;
}
.gallery{
  display: flex;
  flex-wrap: wrap;
}
.gallery .image{
  padding: 7px;
  width: calc(100% / 4);
  text-align:center;
}
.gallery .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery .image img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
/*.gallery .thumb-title {
  display: inline-block;
  width: 100%;
  color: #000;
  font-size: 10px;
  font-weight:400;
  padding-top: 10px;
  text-align: center;
}*/
.gallery .image:hover img .overlay{
  transform: scale(1.1);
}
.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 900px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details{
  display: flex;
  align-items: center;
  padding: 12px 15px 12px 10px;
  justify-content: space-between;
}
.preview-box .details .title{
  display: flex;
  font-size: 14px;
  font-weight: 400;
}
.details .title p{
  margin: 0 5px;
}
.details .title p.current-img{
  font-weight: 500;
}
.details .icon{
  color: #007bff;
  font-size: 20px;
  cursor: pointer;
}
.preview-box .image-box{
  display: flex;
  width: 100%;
  position: relative;
}
.image-box .slide{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  height: 50px;
  width: 60px;
  line-height: 50px;
  text-align: center;
  border-radius: 3px;
}
.slide.prev{
  left: 0px;
}
.slide.next{
  right: 0px;
}
.image-box img{
  width: 100%;
  border-radius: 0 0 3px 3px;
}
.shadow{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0,0,0,0.45);
}
/*description*/	
.wrapper-content{
	margin: 0 5vw;
}
#index-content{
	text-align:center;
	padding-bottom:30px;
}
/*map*/	
.wrapper-map{
	margin: 0 5vw;
}
#index-map{
	text-align:center;
	padding-bottom:30px;
}
/*footer*/
.wrapper-footer{
	margin: 0 5vw;
	padding-top:30px;
	padding-bottom: 30px;
}
#footer{
	padding 50px;
	background-color: #f2f2f2;
	font-size:14pt;
	margin-top: 40px;
	margin-bottom: 40px;
}

/*contact form*/
.contact-form{ 
  border-radius: 5px;
  padding: 0 20%;
}	
input[type=text], select, textarea {
  width: 100%;
  padding: 12px; 
  border: 1px solid #ccc; 
  border-radius: 4px; 
  box-sizing: border-box; 
  margin-top: 6px;
  margin-bottom: 16px; 
  resize: vertical;
}
input[type=submit] {
  background-color: #000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
input[type=submit]:hover {
  background-color: #999;
}

@media(max-width: 1000px){
  .gallery .image{
    width: calc(100% / 2);
  }
}
@media(max-width: 600px){
  .gallery .image{
    width: 100%;
    padding: 4px;
  }
}
