/*
Design
*/
html,
body {
	margin: 0;
	padding: 0;
}

body {
	background: #fff;
	border-top: solid 12px #0a6fa5;
	font-family: 'Rubik', sans-serif font-size: 15px;
	line-height: 20px;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

a {
	color: inherit;
}

dl:after {
	content: '';
	display: block;
	clear: both;
}

dt,
dd {
	display: block;
	padding: 10px 0;
	margin: 0;
	float: left;
}

dt {
	width: 30%;
	clear: left;
}

dd {
	width: 70%;
}

dd+dt,
dd+dt+dd {
	border-top: 1px solid #ccc;
}

table {
	width: 90%;
}

td {
	border-bottom: 1px solid #ccc;
	padding: 10px 0;
	text-align: left;
	vertical-align: top;
}

.our-btns {
	background-color: #6dac29 !important;
}

#header {
	padding: 20px;
	background: #333;
	max-width: 100%;
	background-color: #fff;
}

#header h2 {
	color: #333;

}

#home {
	color: #fff !important;
}


#content {
	background: #fff;
	padding: 20px;
}

#footer {
	background: #333333;
	color: #6dac29;
	padding: 20px;
	text-align: center;
}

#hidden_option {
	display: none;
}

#btn-devs button {
	background: #6dac29;
	font-weight: bold;
	color: #fff;
}

.modal {
	border-radius: 0px !important;
}

.modal-content {
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
}

.modal-dialog {
	border: 0px !important;
}

input:hover {
	moz-shadow: inherit !important;
}

/**/
.parent {
	height: 500px;
	position: relative;
	background-size: cover;
}

.overlay {
	background-color: rgba(0, 0, 0, .5);
	color: white;
	border: solid 1px white;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	/*animate*/
	transition: all .3s ease-in;
}

/* hover effect*/
.parent:hover .overlay {
	opacity: 0;
}