/*
Theme Name:     PHP Demo Site
Author:         Mike Camire
Author URI:     https://www.leadpointe.com
*
* Table of Contents
****************************************
* Import / Fonts
* Body (Reset)
* Header & Footer
* Menu & Sidebar
* Headlines
* Forms
* Buttons
* Content
* Common / Override Style
*/

/* Import Fonts (Google web fonts stored on AWS for more stability)
------------------------------------------------------------ */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), local('OpenSans'), url(fonts/open-sans.woff) format('woff');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local('Open Sans Bold'), local('OpenSans-Bold'), url(fonts/open-sans-bold.woff) format('woff');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 300;
  src: local('Oswald Light'), local('Oswald-Light'), url(fonts/oswald-light.woff) format('woff');
}
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: local('Oswald Regular'), local('Oswald-Regular'), url(fonts/oswald.woff) format('woff');
}


/* Body (Reset)
------------------------------------------------------------ */
html, body {
	height: 100%;
}
body {
	margin: 0; 
	padding: 0; 
	border: none; 
	line-height: 100%;
	font-family: 'Open Sans',arial,tahoma,verdana; 
	color: #868686; 
	background:#fff;
}
::-moz-selection {
	background-color: #3B51A6;
	color: #fff;
}
::selection {
	background-color: #435071;
	color: #fff;
}
div { 
	margin: 0; 
	padding: 0; 
}
p { 
	display: block;
	margin: 0 0 20px; 
	padding: 0; 
	line-height: 1.7em;
}
a {
	color: #335A85;
}
a:hover {
	color: #333;
}
ul, ul li { 
	list-style-type: none;
	margin: 0; 
	padding: 0;
}
fieldset { 
	padding: 15px;
}
img {
	max-width: 100%;
	height: auto;
	border: none; 
	padding: 0; 
	margin: 0; 
	vertical-align: middle;
}
.clearfix:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
}
.clearfix { 
     display: inline-block;
}


/* Header and Footer
------------------------------------------------------------ */
#top-wrap {
	background: #435071;
	position: relative;
	box-shadow: 0 1px 0 #4D4D4D inset, 0 2px 3px rgba(0, 0, 0, .50);
}
#top-wrap .btn {
	box-shadow: none;
	border-radius: 0;
}
#top-wrap .phone-wrap {
	color: #f7f7f7;
	line-height: 45px;
	display: block;
	margin-left: 0px;
}
.blog-entry-wrap {
	min-height: 500px;
}
.content-header {
	padding: 20px 0;
}
#footer-wrap {
	background: #333;
	padding: 40px 0 20px 0;
	border-top: 15px solid #575757;
	font-size: .73em;
}
#footer-wrap .address {
	font-size: 1rem;
	font-weight: bold;
}


/* Menu & Sidebar
------------------------------------------------------------ */
#menu-wrap .menu > ul:before,
#menu-wrap .menu > ul:after {
     visibility: hidden;
     display: block;
     font-size: 0;
     content: " ";
     clear: both;
     height: 0;
}
#menu-wrap i.icon-home {
	position: relative;
	top: -2px;
}
#menu-wrap .menu {
	text-align: right;
}
#menu-wrap .menu > ul {
	margin: auto 0;
}
#menu-wrap .menu > ul > li {
	display: inline-block;
	position: relative;
}
#menu-wrap .menu > ul > li a {
	color: #435071;
	display: block;
	padding: 40px 15px;
	font-family: 'Oswald','Open Sans',arial;
	text-decoration: none;
}
#menu-wrap .menu .children { 
	display: none; 
	position: absolute; 
	background: #EDEDED;
	margin-left: -1px;
    border-color: #ccc;
    border-style: solid;
    border-width: 0 1px 1px 0;
	top: 70px;
	left: 10px;
	z-index: 200;
}
#menu-wrap .menu .children li { 
	padding: 0; 
	margin: 0; 
	float: none;
}
#menu-wrap .menu .children li a { 
	padding: 10px;
	min-width: 160px;
	font-size: 14px; 
	font-weight: normal;
	text-align: left;
}
#menu-wrap .menu .children li a:hover {
	background: #435071;
	color: #f7f7f7;
}
#sidebar-wrap {
	background: #EEEEEE;
}
#sidebar-widgets > ul > li {
	padding: 15px 0;
}
#sidebar-widgets > ul > li > ul > li a {
	display: block;
	font-size: .83em;
	color: #555555;
	text-decoration: none;
	background: url(https://s3.amazonaws.com/interactiveweb/gfx/list.png) no-repeat 15px 5px;
	padding: 0 10px 20px 30px;
}
#sidebar-widgets > ul > li > ul > li a:hover {
	text-decoration: underline;
}
#sidebar-wrap .widget-title {
	color: #777;
	font-size: 1.5rem;
	text-indent: 15px;
	position: relative;
	margin-bottom: 1.5rem;
	font-family: 'Open Sans',arial;
}

#sidebar-wrap .widget-title:after {
    background-color: #777;
    bottom: -5px;
    content: "";
    height: 2px;
    left: 15px;
    position: absolute;
    width: 50px;
}


/* Headlines
------------------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6
{
	font-family: 'Oswald','Open Sans',arial;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	color: #435071;
	margin: 0 0 1rem;
}
h1 {
	font-size: 2.4rem;
}
h2 {
	font-size: 2rem;
}
h2.entry-title {
	font-size: 1.6rem;
}
h3 {
	font-size: 1.8rem;
}
h4 {
	font-size: 1.6rem;
}
h5 {
	font-size: 1.4rem;
}
h6 {
	font-size: 1.2rem;
}


/* Fonts
------------------------------------------------------------ */
i { 
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1rem;
	vertical-align: middle;
}
i.large {
	font-size: 3.5rem;
}
i.xlarge {
	font-size: 5rem;
}
.shadow {
	text-shadow: 2px 5px 2px rgba(150, 150, 150, .50);
}
.shadow-alt {
	text-shadow: 2px 5px 2px rgba(0, 0, 0, .75);
}
.color-alt {
	color: #435071;
}
.color-alt1 {
	color: #f3f3f3;
}
.color-alt2 {
	color: #868686;
}



/* Forms
------------------------------------------------------------ */
textarea.form-error,
select.form-error,
input[type="text"].form-error,
input[type="password"].form-error {
    border-color: #ed6b6b;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15) inset, 0 0 8px rgba(238, 117, 117, 0.7);
}
textarea,
select,
input[type="text"]:focus, 
input[type="password"]:focus {
    border-color: #6BACED;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15) inset, 0 0 8px rgba(82, 168, 236, 0.7);
}


/* Buttons
------------------------------------------------------------ */
.btn {
	display: inline-block;
	color: #f7f7f7;
	padding: 1em 1.7em;
	font-size: .9em;
	font-weight: bold;
	font-family: 'Open Sans',arial;
	text-decoration: none;
	box-shadow: 0 4px 10px rgba(68, 68, 68, 0.5);
	background: #444;
	border-radius: 5px;
}
.btn-small {
	padding: .3em 1em;
	font-size: .80rem;
}
.btn:hover {
	color: #f7f7f7;
	background: #B01D18;
}
.btn-alt {
	background: #B01D18;
}
.btn-alt:hover {
	background: #444;
}
.btn-alt2 {
	background: #435071;
}
.btn-alt2:hover {
	background: #B01D18;
}
.btn-action-call {
	font-size: 1.4rem;
}


/* Content
------------------------------------------------------------ */
.section {
	padding: 3rem 0;
}
#content-wrap {
	padding-top: 20px;
	padding-bottom: 40px;
}
.bg-alt {
	background: #435071;
	color: #f7f7f7;
}
.bg-alt1 {
	background: #EEEEEE; 
}
.bg-alt2 {
	background: #777;
	color: #f7f7f7;
}
.bg-alt3 {
	background: #DFDFDF;
}
.home-callout .icon-arrow-right {
	position: absolute;
	right: 0;
	top: 30%;
	font-size: 2em;
}
#contact-map {
	height: 250px;
	border-bottom: 5px solid #DFDFDF;
}
.arrow-down-wrap {
	border-top: 10px solid #313A52;
	text-align: center;
	
}
.arrow-down-wrap-alt {
	background: #435071;
	border-top: 10px solid #C85E5A;
	text-align: center;
}
.arrow-down-wrap-alt1 {
	border-top: 10px solid #9A9A9A;
	background: #EEEEEE;
	text-align: center;
}
ul.list {
	margin: 20px 0;
}
ul.list li {
	line-height: 1.5em;
	margin-bottom: 15px;
	margin-left: 30px;
}
ul.list li i {
	font-size: 1.3em;
	position: absolute;
	margin-left: -30px;
	margin-top: 2px;
}

.entry-content {
    border-bottom: 1px solid #CCCCCC;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
.entry-link {
    text-align: right;
}


/* Common / Override Style
------------------------------------------------------------ */
small {
	display: inline;
	font-size: .73em;
}
strong { 
	font-weight: 700;
}
.thin {
	font-weight: 300;	
}
.center {
	text-align: center;
}
.align-left {
	text-align: left;
}
.align-right {
	text-align: right;
}
.relative {
	position: relative;
}
.hidden {
	display: none;
}
.block {
	display: block;
}
.iblock {
	display: inline-block;
}
.floatl {
	float: left;
	margin-right: 15px;
	margin-bottom: 15px;
}
.floatr {
	float: right;
	margin-left: 15px;
	margin-bottom: 15px;
}
.round {
	border-radius: 10px;
}
.circle {
	border-radius: 100%;
}
.circle-outline {
	box-shadow:  0px 3px 15px 0px rgba(0, 0, 0, .5);
	display: inline-block;
	border-radius: 15%;
	padding: 20px;
	border: 2px solid #ccc;
}
.circle-outline-alt {
	display: inline-block;
	border-radius: 100%;
	padding: 25px;
	border: 2px solid #868686;
}
.border {
	border: 1px solid #ccc;
}
.box-shadow {
	box-shadow: 2px 5px 2px rgba(0, 0, 0, .75);
}
.indent {
	margin-left: 30px;
}
.indent-60 {
	margin-left: 60px;
}
.mb0 {
	margin-bottom: 0px !important;
}
.mb10 {
	margin-bottom: 10px;
}
.mb20 {
	margin-bottom: 20px;
}
.mb40 {
	margin-bottom: 40px;
}
.mt20 {
	margin-top: 20px;
}
.p15 {
	padding: 15px;
}



