@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');

*, *:after, *:before { 
   -webkit-box-sizing: border-box; 
   box-sizing: border-box; 
   outline: none;
}

body {
   font-family: 'Raleway', sans-serif;
}

a {
	color:;
	text-decoration: none;
}

a:hover, a:focus {
	color: #7D87AE;
}

.hidden {
	position: absolute;
	overflow: hidden;
	width: 0;
	height: 0;
	pointer-events: none;
}

.content {
	text-align: right;
}

.modal-overlay {
/* 	background: rgba(39, 179, 96, 1); */
   background: rgba(33, 33, 61, .5);
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	visibility: hidden;
}

.modal-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	overflow: hidden;
	pointer-events: none;
}

.modal {
	background: #fff;
	color: #666871;
	text-align: center;
	width: 400px;
	max-width: 90%;
	height: 350px;
	top: 0;
	bottom: 0;
	right: 0;
	position: absolute;
	margin: auto;
	pointer-events: auto;
	font-weight: bold;
	visibility: hidden;
}

@media screen and (max-width: 40em) {
	.modal { height: 350px; }
}

.modal h2 {
	font-size: 2.25em;
	margin: 0.5em 0 0.25em;
	color: #BDBFCA;
}

.open-modal {
   text-align: center;
	border: none;
	margin: 27em 0 7em 0;
	background: #0000ff;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 20px;
	padding: 1em 2em;
	border-radius: 40px;
   cursor: pointer;
	-webkit-transition: background 0.3s;
	transition: background 0.3s;
}

.open-modal:hover {
	background: #2ecc71;
}

.close-modal {
	color: #aaa;
	background: none;
	position: absolute;
	top: 10px;
	right: 10px;
	border: none;
	width: 20px;
	height: 20px;
	line-height: 15px;
	font-size: 22px;
	font-weight: bold;
   cursor: pointer;
}

.close-modal:hover {
	color: #666871;
}