body{
	color:#444444;
	font-size: 17px;
}

h1 {
	font-family:'Lato',Arial,serif;
	font-weight:600;
}

h2 {
	font-family:'Lato',Arial,serif;
	font-weight:300;
}

.footer{
	background-color:#F2F2F2;
	font-family:'Lato',Arial,serif;
	font-weight:300;
}

.footer h3{
	font-family:'Lato',Arial,serif;
	font-weight:400;
}



.darkredtext{
	color:#8B0000;
}

.redbtn{
	background-color:#8B0000;
	color:#FFFFFF;
	border-color:#8B0000;
}

.redbtn:hover{
	background-color:#A52A2A;
	border-color:#A52A2A;
	color:#FFFFFF;
}

label{
	font-weight:400 !important;
	color: #666666;
	font-weight: 400;
	font-size: 15px;
}

input[type="text"], input[type="email"], select, textarea {
	border-radius: 8px;
	box-shadow: inset #EFEFEF 1px 1px 2px;
	font-size: 17px;
	line-height: 32px;
	padding: 16px !important;
}


/**************************************************************************************
**
** Spacers and clear
**
***************************************************************************************/

.spacer5{height:5px;}
.spacer10{height:10px;}
.spacer15{height:15px;}
.spacer20{height:20px;}
.spacer25{height:25px;}
.spacer30{height:30px;}
.spacer45{height:45px;}
.spacer60{height:60px;}
.spacer90{height:90px;}
.spacer110{height:110px;}
.spacer115{height:115px;}
.spacer120{height:120px;}
.spacer125{height:125px;}
.spacer130{height:130px;}
.spacer140{height:140px;}
.spacer145{height:145px;}
.spacer150{height:150px;}
.spacer160{height:160px;}
.spacer180{height:180px;}

.clear{clear:both;}

/**************************************************************************************
**
** Inner padding
**
***************************************************************************************/

.innerpad5{padding:5px 5px 5px 5px;}
.innerpad10{padding:10px 10px 10px 10px;}
.innerpad15{padding:15px 15px 15px 15px;}
.innerpad20{padding:20px 20px 20px 20px;}
.innerpad25{padding:25px 25px 25px 25px;}

/**************************************************************************************
**
** Modern Navigation
**
***************************************************************************************/

.modern-nav {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	flex-wrap: wrap;
}

.nav-btn {
	padding: 14px 28px;
	background-color: #ffffff;
	color: #2a2a2a;
	border: 1px solid #999999;
	border-radius: 8px;
	text-decoration: none;
	font-family: 'Lato', Arial, sans-serif;
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 0.5px;
	transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	text-align: center;
	display: inline-block;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
	background-color: #2a2a2a;
	color: #ffffff;
	border-color: #2a2a2a;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	transform: translateY(-1px);
}

.nav-btn:active {
	transform: translateY(0);
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 640px) {
	.modern-nav {
		justify-content: center;
		gap: 8px;
	}
	
	.nav-btn {
		flex: 1;
		min-width: 95px;
		padding: 12px 20px;
		font-size: 13px;
	}
}