* {
	margin: 0;
	padding: 0;
}
header{
	height: 60px;
	background: #262626;
	padding:0 50px;
}
.logo {
	width:30%;
	float: left;
	color: #fff;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 60px;
	font-size: 35px;
	font-family: bignoodletitling;
}
nav {
	width:68%;
	float: right;
}
nav ul {
	list-style: none;
	float: right;
}
nav ul li {
	display: inline-block;
}
nav ul li a {
	text-decoration: none;
	color: #fff;
	font-family: bignoodletitling;
	font-weight: bold;
	margin: 0 10px;
	line-height: 60px;
	text-transform: uppercase;
}
.banner {
	height:100%;
}
.banner img {
	width:100%;
	height: 90vh;
}
.cont {
	padding: 5%
}
.cont h2{
	font-size :35px;
	line-height: 1.7;
	font-family: bignoodletitling;
	margin-bottom:25px;
	text-align: center;
}
.cont h3{
	font-size :18px;
	line-height: 1.7;
	font-family:  merienda;
	margin-bottom:25px;
	text-align: center;
}
footer {
	background: #000;
	color: #ffff;
	padding: 15px 50px;
	text-align: center;
}
.cont-form {
	padding: 20px;
	margin: 0 auto;
	color: black;
	text-align: center;
}
.form{
	font-weight: 600;
}
.form-field{
	display: flex;
	justify-content: space-between;
}
input, select, select-bus {
	width: 20%;
	padding: 10px 15px;
}
.btn {
	background-color: black;
	color: #fff;
	padding: 10px 15px;
	border: none;
	font-size: 16px;
	width: 15%;
}
.container {
	display: block;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
}
.small {
	width: 370px;
	height: auto;
	position: relative;
	margin: 3px;
	border-radius: 5px;
}
.small:hover {
	-webkit-transform: scale(1.03, 1.03);
	transform: scale(1.03, 1.03);
}
.lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
}
a div {
	position: relative;
	margin: auto auto;
	text-align: center;
}
 
.lightbox:target {
	display: -webkit-box;
	display: flex;
}
 
.container a {
	text-decoration: none;
}
 
.container p {
	font-size: 20px;
	color: white;
	font-family: 'Poiret One';
}
table {
	border: 2px solid black;
	border-collapse:collapse;
	width: 100%;
}
table th{
	background-color: #7882cb;
	color: black;
	padding: 10px;
}
table td{
	padding: 12px;
	color:black;
	font-size: 1em;
	text-align: center;
}
table tr:nth child(odd){
	background-color: #797676;
}