*{
	margin: 0;
	padding:0;
	font-family: 'Playfair Display', serif;
	box-sizing: border-box;
}

body{
	min-height: 100vh;
	width: 100%;
	background-position: center;
	background-size: cover;
	position: relative;
}


.hero-image {
  background-image: url(hands.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  z-index: 10;
  position: relative;
}

.footer #button{
	width:20px;
	height:5px;
	bottom: 0.25px;
	border: #333333 15px solid;
	border-radius:35px;
	margin:0 auto;
	position:relative;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}
.footer #button:hover{
	width:35px;
	height:35px;
	border: black 12px solid;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	position:relative;
}
.footer {
	bottom:0;
	left:0;
	position:fixed;
    width: 100%;
    height: 2em;
    overflow:hidden;
    margin:0 auto;
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	z-index:999;
}
.footer:hover {
	-webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
	height: 10em;
}
.footer #container{
	margin-top:5px;
	width:100%;
	height:100%;
    position:relative;
    top:0;
    left:0;
	background: #333333;
}
.footer #cont{
  position:relative;
  top:-45px;
  right:190px;
  width:150px;
  height: auto;
  margin:0 auto;
}
.footer_center{
	width:500px;
	float:left;
    text-align:center;
}
.footer h3{
	font-family: 'Playfair Display', serif;
	font-size: 30px;
	font-weight: 100;
	margin-top:100px;
	margin-left:40px;
	color: white;
}

.wrapper{
  position: absolute;
  top: 20%;
  left: 60%;
  background: #333333;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0,0,0,.6);
  border-radius: 10px;
  border-color:#141;
  
 }

.wrapper header{
	font-size: 22px;
	font-weight: 200px;
	padding: 5px 5px;
	color: #ffffff;
	font-family: 'Playfair Display', serif;
	text-align: center;
	opacity: 0.9;
}

.wrapper form{
	margin: 20px 20px;
}

form .dbl-field{
	align-items: center;
	margin-bottom: 25px;
	justify-content: space-between;
}

.dbl-field .field{
	height: 50px;
	position: relative;
	width: calc(100% / 1 - 13px);
}

.field{
	margin: 5px;
}

form .field input{
	height: 100%;
	width: 100%;
	outline: none;
	padding: 0 18px 0 48px;
	font-size: 14px;
	border-radius: 5px;
	border: 0.5px solid white;
	background: #333333;
	opacity: 0.8;
	font-family: 'Playfair Display', serif;
}

form .field input::placeholder{
	color: #bfbfbf;
}

form .field input:focus{
	border: 3px solid #b51a00;
}

.wrapper form i{
	position: absolute;
	left: 20px;
	top: 50%;
	font-size: 15px;
	pointer-events: none;
	transform: translateY(-50%);
	color: #ffffff;
}

form .field input:focus ~ i{
	color: #b51a00;
}

form .button-area{
	margin: 25px 0;
}

.button-area button{
	font-size: 16px;
	border: none;
	color: white;
	cursor: pointer;
	border-radius: 10px;
	background: #b51a00;
	padding: 13px 25px;
	font-family: 'Playfair Display', serif;
}

.button-area button{
	width: 98%;
}

.button-area span{
	color: #b51a00;
	text-align: center;
	padding: 10px;
	display: none;
	margin: auto;
}


	h1{
		text-align: center;
	}

	h2{
		text-align: center;
	}

	p{
		text-align: center;
	}
	
	nav img{
		width: 450px;
	}

	.nav-links{
		flex: 1;
		text-align: right;
	}

	.nav-links ul li{
		list-style: none;
		display: inline-block;
		padding: 0px 30px;
		position: relative;
	}

	nav{
		display: flex;
		padding: 2% 3%;
		justify-content: space-between;
		align-items: center;
		
	}

	.nav-links ul li a{
		color: black;
		text-decoration: none;
		font-size: 15px;
	}

	.nav-links ul li::after{
		content: '';
		width: 0%;
		height: 2px;
		background: #ff2600;
		display: block;
		margin: auto;
		transition: 0.5s;
	}

	.nav-links ul li:hover::after{
		width: 100%;
	}

	nav .fa{
		display: none;
	}







	@media(max-width: 768px){
	.wrapper header{
		text-align: center;
	}

	.wrapper{
  		position: absolute;
  		top: 20%;
  		left: 40%;
  		width: 280px;
  		padding: 20px;
  		background: #333333;
  		box-sizing: border-box;
  		border-radius: 5px;
 	}

	form .dbl-field{
		flex-direction: column;
	}

	.dbl-field .field{
		width: 100%;
	}

	form .button-area{
		flex-direction: column;
	}

	.button-area button{
		width: 100%;
	}

	.button-area span{
		text-align: center;
		margin-left: 20px 0;
	}

	nav img{
		display: block;
  		margin-left: auto;
  		margin-right: auto;
  		width: 400px;
	}

	.nav-links ul li{
		display: block;
	}
	.nav-links{
		position: absolute;
		background: #ebebeb;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -200px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}

	nav{
		display: flex;
		padding: 2% 3%;
		justify-content: space-between;
		align-items: center;
	}

.nav-links ul li a{
	color: black;
	text-decoration: none;
	font-size: 15px;
}

.nav-links ul li::after{
	content: '';
	width: 0%;
	height: 2px;
	background: #ff2600;
	display: block;
	margin: auto;
	transition: 0.5s;
}

	.nav-links ul li:hover::after{
	width: 100%;
	}

	nav .fa{
		display: block;
		color: black;
		font-size: 22px;
		cursor: pointer;
		text-align: left;
		margin: 10px;
	}

}






@media(max-width: 320px){
	.wrapper header{
		text-align: center;
	}

	.wrapper{
  		position: absolute;
  		top: 20%;
  		left: 18%;
  		width: 200px;
  		padding: 20px;
  		background: #333333;
  		box-sizing: border-box;
  		border-radius: 5px;
 	}

	form .dbl-field{
		flex-direction: column;
	}

	.dbl-field .field{
		width: 100%;
	}

	form .button-area{
		flex-direction: column;
	}

	.button-area button{
		width: 100%;
	}

	.button-area span{
		text-align: center;
		margin-left: 20px 0;
	}

	nav img{
		display: block;
  		margin-left: auto;
  		margin-right: auto;
  		width: 200px;
	}

	.nav-links ul li{
		display: block;
	}
	
	.nav-links{
		position: absolute;
		background: #ebebeb;
		height: 100vh;
		width: 200px;
		top: 0;
		right: -250px;
		text-align: left;
		z-index: 2;
		transition: 1s;
	}

	nav{
		display: flex;
		padding: 2% 3%;
		justify-content: space-between;
		align-items: center;
	}

	.nav-links ul li a{
		color: black;
		text-decoration: none;
		font-size: 15px;
	}

	.nav-links ul li::after{
		content: '';
		width: 0%;
		height: 2px;
		background: #ff2600;
		display: block;
		margin: auto;
		transition: 0.5s;
	}

	.nav-links ul li:hover::after{
		width: 100%;
	}

	nav .fa{
		display: block;
		color: black;
		font-size: 22px;
		cursor: pointer;
		text-align: left;
		margin: 10px;
	}

}


