/*
Theme Name: 	SAR Consult
Description: 	The SAR Consult Wordpress theme!
Version: 		1.0
Author: 		Start Marketing
*/

/*
===========================
CONTENTS:

01 Sensible defaults
02 Typography
03 Media queries 
===========================
*/

@import url(https://fonts.googleapis.com/css?family=Lato:400,300,700);

/* ---------------------------------------------------------------------------------------------------------- 
01 Sensible defaults ----------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */


div,
article,
section,
header,
footer,
nav,
li					{ position:relative; /* For absolutely positioning elements within containers (add more to the list if need be) */ }
.group:after 		{ display:block; height:0; clear:both; content:"."; visibility:hidden; /* For clearing */ }
body 				{ background:#fff; /* Don't forget to style your body to avoid user overrides */ }
/*::-moz-selection 	{ background:#ff0; color:#333; }
::selection 		{ background:#ff0; color:#333; }*/

/* ---------------------------------------------------------------------------------------------------------- 
02 Typography -----------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */
/*

14 / 16	= 		0.875em 		(14px equivalent)
16 / 16	= 		1em 			(16px equivalent)
18 / 16 = 		1.125em 		(18px equivalent)
21 / 16 = 		1.3125em 		(21px equivalent)
24 / 16 = 		1.5em 			(24px equivalent)
30 / 16 = 		1.875em 		(30px equivalent)

*/

a {
	color: #2a7793;
}

body,
input,
textarea 			{ 
	font-family: Tahoma, Verdana, Segoe, sans-serif; 
	color: #3b3b3b; 
	line-height: 1.6em;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6 					{ color: #01526f;
    font-family: Lato;
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-weight: 300;
    /* This helps to identify headings at the initial build stage, but you should write something more precise later on */ }


body {
	background: url('img/background.jpg');
}

.clearfix {
	z-index: -1;
}


.navbar-default {
	background: none;
	margin-top: 15px;
	margin-bottom: 0;
}

.navbar-default .navbar-collapse {
	background: #01526f;
}

.navbar-default .nav {
	margin-left: -15px;
}

.navbar-default .navbar-collapse li a {
	font-size: 18px;
	color: #f8f8f8;
	font-family: Lato, helvetica, arial, sans-serif;
	font-weight: 300;
	border-left: 1px solid #f8f8f8;
	padding: 10px 20px;
}

.navbar-default .navbar-collapse li:first-child a {
	border-left: 0;
}

.navbar-default .navbar-collapse li.current_page_item a,
.navbar-default .navbar-collapse li a:hover {
	background: #f8f8f8;
	color: #151515;
}

header {
	padding-top: 35px;
}

img.alignleft {
	float: left;
	margin-right: 15px;
}

img.alignright {
	float: right;
	margin-left: 15px;
}

.header-details {
	color: #01526f;
    font-size: 18px;
    text-align: right;
    margin-top: 32px;
}

.header-details a {
	color: #01526f;
}

.page-content ol,
.page-content ul {
	padding-left: 20px;
}

footer .footer-inner {
	color: #fff;
	background: #01526f;
	padding: 10px 15px;
	margin-bottom: 25px;
	font-size: 12px;
}

footer .footer-inner ul {
	padding-left: 0;
	display: block;
	float: left;
	width: 100%;
	margin-bottom: 0;
	margin-left: -10px;
}

footer .footer-inner ul li {
	float: left;
	display: block;
	margin: 5px 10px;
}

footer .footer-inner li a {
	color: #fff;
	text-transform: uppercase;
}

.page-content img {
	max-width: 100%;
	height: auto;
}

hr {
	background: url('img/hr-bg.png') no-repeat center center;
	height: 10px;
	width: 864px;
	margin: 20px auto;
max-width: 100%;
}

.page-content .panel-heading {
	padding: 0;
	border-radius: 0;
}

.panel-collapse .panel-body {
	border-radius: 0;
}

.page-content .panel-heading a {
	padding: 10px;
	display: block;
	text-decoration: none;
	font-size: 18px;
}

.page-content .panel-heading a:hover {
	background: #E8E8E8;
}

.page-content img.wp-image-26 {
	float: left;
	margin-right: 5px;
	margin-top: 2px;
}

form.wpcf7-form {
	float: left;
	max-width: 320px;
}

form.wpcf7-form input.wpcf7-text {
	height: 30px;
	padding: 6px;
}

form.wpcf7-form input.wpcf7-text,
form.wpcf7-form textarea {
	border-radius: 0;
}

form.wpcf7-form textarea {
	height: 140px;
}

form.wpcf7-form .btn {
	color: #fff;
	background: #01526f;
	border-radius: 0;
}

form.wpcf7-form .btn:hover {
	background: #147496;
}

/* ---------------------------------------------------------------------------------------------------------- 
03 Media queries (using a mobile-first approach) ------------------------------------------------------------
---------------------------------------------------------------------------------------------------------- */

@media(max-width: 767px) {

	.navbar-default .navbar-collapse li a {
		border-left: 0;
	}
	
	img.alignright {
		float: none;
		margin: 0 auto;
		display: block;
	}

}


/* 400 and up */
@media screen and (min-width:400px) {

					{ /* Place your styles here for all widths greater than 400px */ }

}

/* Retina Display */
@media screen and (-webkit-min-device-pixel-ratio:2) {

					{ /* Place your styles here for all 'Retina' screens */ }

}