html,
body {
	font-family: 'Open Sans', sans-serif;
	font-size: 100%;
	background-color: #f3f3f3;
}

/******************
General Layout
******************/

.justice-bg {
	background-image: url(../img/justice.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	padding-bottom: 200px;
}

.blue-bg {
	background-color: #0b5288;
	padding: 50px 0;
}

.boxed {
	padding: 25px 25px;
	margin-top: 30px;
	background-color: rgba(30,30,30,.3);
}

.move-up {
	padding: 25px 100px 40px;
	background-color: #fff;
	position: relative;
	top: -100px;
}

.mt-200 {
	margin-top: 200px;
}

.mt-120 {
	margin-top: 120px;
}

.mt-0 {
	margin-top: 0 !important;
}

.footer {
	background-color: #fff;
	margin-top: 80px;
	padding: 25px 0 15px;
}

/******************
Fonts
******************/

h1 {
	font-family: 'Open Sans', sans-serif;
	font-size: 2em;
	line-height: 1.5;
	margin-top: 50px;
}

h3 {
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
	margin-bottom: 30px;
	margin-top: 30px;
	font-weight: 300;
}

h6 {
	font-family: 'Open Sans', sans-serif;
	font-size: 1.1em;
	line-height: 1.5;
}

p {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 300;
}

.text-shadowed {
	text-shadow: 2px 2px rgba(0,0,0,.5);
}

/******************
Components
******************/

li {
	font-weight: 300;
	margin-bottom: 5px;
}

.accident-list {
	text-align: left;
	margin-top: 30px;
	margin-bottom: 40px;
}

.accident-list li {
	padding-bottom: 5px;
}

.btn-contact {
	background-color: #0b5288;
	border-color: #0b5288;
	padding: 15px 15px;
	display: block;
	margin: 0 auto;
	width: 90%;
	font-size: 1.2em;
	font-weight: 600;
	position: relative;
	top: -32px;
}

.btn-cta {
	background-color: transparent;
	border: 1px solid #0b5288;
	color: #0b5288;
	padding: 15px 15px;
	display: block;
	margin: 0 auto;
	width: 100%;
	font-size: 1.2em;
	font-weight: 600;
	margin-bottom: 10px;
}

.btn-cta:hover {
	background-color: #0b5288;
	border-color: transparent;
	color: #fff;
}

.btn-light {
	display: block;
	max-width: 250px;
	margin: 25px auto 0;
	padding: 15px 0;
	color: #0b5288;
	font-size: 1.3em;
	font-weight: 700;
}

.btn-light:hover {
	color: #0b5288;
}

.img-building {
	max-width: 200%;
	position: relative;
	left: -100%;
}

/******************
Navigation
******************/

.nav-container {
	background-color: #fff;
	padding-bottom: 5px;
}

.navbar-nav {
	margin-top: 7px;
}

.navbar-light .navbar-nav .nav-link {
	text-transform: uppercase;
	font-size: .9em;
	color: #222;
	letter-spacing: 1px;
	padding-left: 25px;
	font-weight: 400;
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
	color: rgba(0,0,0,.6);
}

.img-logo {
	max-width: 200px;
}

.footer-links ul {
	list-style: none;
	text-align: center;
	padding: 0;
}

.footer-links li {
	display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
}

.footer-links a {
	text-decoration: none;
	color: #aaa;
	text-align: center;
	font-size: .85em;
	font-weight: 300;
}
.footer-links a:hover {
	color: #000;
}

/* xs */
@media screen and (max-width: 575px) {

	.hidden-xs {
		display: none;
	}

	.move-up {
		padding: 25px 15px 40px;
		background-color: #fff;
		position: relative;
		top: 0;
	}

	.mt-200 {
		margin-top: 40px;
	}

	/***************
	Mobile Nav
	***************/

	.mt-120 {
		margin-top: 40px;
	}

	.img-logo {
		max-width: 180px;
		width: 180px;
	}

	.navbar-nav {
		padding: 20px 30px;
	}

	.navbar-nav .nav-link {
		padding-top: 10px;
		padding-bottom: 10px;
	}

	.collapse {
		width: calc(100vw - 50px);
		height: 100vh;
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		display: block !important;
		background-color: #fff;
		z-index: 999;
		transform: translateX(-100vw);
		transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-webkit-transition: all .2s ease-in-out;
	}

	.collapse.show {
		transition: transform .2s ease-in-out;
		-moz-transition: transform .2s ease-in-out;
		-webkit-transition: transform .2s ease-in-out;
		transform: translateX(0);
	}

	.navbar-light .navbar-toggler {
		border: 0;
		font-size: 1rem;
		cursor: pointer;
		display: inline-block;
		vertical-align: middle;
		width: 30px;
		height: 35px;
		padding: 0;
		transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-webkit-transition: all .2s ease-in-out;
	}

	.navbar-toggler-icon {
		width: 100%;
	}

	.navbar-toggler:after, 
	.navbar-toggler:before, 
	.navbar-toggler .navbar-toggler-icon {
		background-image: none;
		display: block;
		content: '';
		margin: 7px 0;
		height: 1px;
		border-radius: 3px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		-ms-border-radius: 3px;
		-o-border-radius: 3px;
		background-color: #222;
		transition: all .2s ease-in-out;
		-moz-transition: all .2s ease-in-out;
		-webkit-transition: all .2s ease-in-out;
	}

	.navbar-toggler:focus {
		outline: 0;
	}

	.navbar-toggler.active:before {
	  transform: translateY(8px) rotate(135deg);
	}

	.navbar-toggler.active:after {
	  transform: translateY(-8px) rotate(-135deg);
	}

	.navbar-toggler.active .navbar-toggler-icon {
	  transform: scale(0);
	}
}