@charset "utf-8";
/* CSS Document */

body {
	width: 100%;
	background-color: #222;
	margin: 0;
	font-family: sans-serif;
}

#content {
	background-color: #aaa;
	width: 98%;
	max-width: 960px;
	min-height: 100px;
	margin: 20px auto;
	border-radius: 10px;
}

#footer {
	width: 100%;
	max-width: 960px;
	margin: 0px auto;
	color: #888;
	font-size: 0.8em;
	text-align: center;
}

#title_banner {
	width: 80%;
	max-width: 280px;
	margin: auto;
}

#title_img {
	width: 100%;
	margin: 10px auto;
	align-content: center;
}

.full_sect {
	width: 90%;
	margin: auto;
}

.side-sect {
	width: 90%;
	margin: 10px auto;
	min-height: 100px;
	display: flex;
	flex: wrap;
}

.sect_img {
	width: 40%;
}

.sect_img img {
	display: block;
	width: 70%;
	margin: 10px auto;
}

.rotate {
	box-shadow: 2px 4px 5px 0px rgba(0,0,0,0.2);
	transition: 0.3s;
}

.rotate:hover {
	transform: rotate(2deg);
	box-shadow: 2px 4px 5px 0px rgba(0,0,0,0.8);
}

.sect_text {
	width: 60%;
}
.sect_text p {
	margin-right: 10%;
}

.spacebreak {
	width: 90%;
	margin: auto;
	height: 25px;
}
.linebottom {
	padding-bottom: 10px;
	border-bottom: dashed 2px #888;
}

h2 {
	margin-top: 10px;
	font-size: 2em;
}

a {
	text-decoration: none;
	color: inherit;
}

.calltoaction {
	display: inline-block;
	margin: 20px 10px 10px 0px;
	padding: 10px;
	background-color: #001764;
	border-radius: 5px;
	border: solid 2px #222;
	color: white;
	font-weight: bold;
	transition: 0.3s;
}
.calltoaction:hover {
	background-color: #1889E5;
	box-shadow: 1px 3px 3px 0px rgba(0,0,0,0.5);
	transform: rotate(1deg);
	cursor: pointer;
}