/* Partial CSS Reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html, body {
    height: 100%;
    width: 100%;
    -webkit-text-size-adjust: 100%;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, select, input, option {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary {
    display: block;
}
audio, canvas, video {
    display: inline-block;
}
audio:not([controls]) {
    display: none;
    height: 0;
}
pre {
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
}

:focus {
    outline: none;
}

table {
    border: 0 none;
    border-collapse: collapse;
    border-spacing: 0;
}
caption, th, td {
    text-align: left;
    font-weight: normal;
}
td {
    vertical-align: top;
}

/* Global defaults */
html * {
    color: #151515;
    font-size: 20px;
    line-height: 1.5;
    font-family: Arial, Helvetica, sans-serif;
}

/* Headings */
h1,h2,h3,h4,h5,h6 {
	font-weight: normal;
}
h1:only-child,
h2:only-child,
h3:only-child,
h4:only-child,
h5:only-child,
h6:only-child {
	margin-bottom: 0;
}
h1 {
  text-align: center !important;
}
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
    color: #000;
}
h1 {
    font-size:40px;
    font-weight:bold;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 5px;
}
h2 {
    font-size:36px;
    font-weight:700;
    text-align: center;
}
.large-text {
	font-size: 75px;
	line-height: 1.25;
}


/* Block-level */
.flexbox {
    display: flex; 
    flex-wrap: wrap;
    align-items: stretch; 
    justify-content: flex-start;
}

.table {
    display: table;
    width: 100%;
    height: 100%;
    table-layout: fixed;
    float: none !important;
}
.container {
    max-width: 1780px;
    margin: 0 auto;
    padding: 0 70px;
}
.container.lg {
    max-width: 1920px;
}
.container.sm {
    max-width: 1500px;
}
main .table.page,
.table.auto-height {
    height: auto;
}
.main.container{
    margin-bottom: 50px;
}
.left-col {
    width:20%;
}
.main-col {
    width:55%;
}
.right-col {
    width:25%;
}
.table.auto-width {
    width: auto;
}
.table.auto-all {
    height: auto;
    width: auto;
}
.row {
    display: table-row;
}
.cell {
    display: table-cell;
    vertical-align: top;
    height: 100%;
    float: none !important;
}
.middle {
	vertical-align: middle;
}
.bottom {
	vertical-align: bottom;
}
.center {
    text-align: center;
}
main .table.page,
.table.auto-height {
	height: auto;
}
.table.auto-width {
	width: auto;
}
.table.auto-all {
	height: auto;
	width: auto;
}

.table-header-group {
	display: table-header-group;
}
.table-footer-group {
	display: table-footer-group;
}

/* Breadcrumbs */
#breadcrumbs {
    padding:25px 0;
}
.breadcrumbs {
    line-height: 1;
    color: #646464;
    font-weight:400;
    font-size:12px;
    font-style:italic;
}
.breadcrumbs li {
    display: inline-block;
    vertical-align: middle;
}
.breadcrumbs li:after {
    content: url("/images/arrows/breadcrumbs.png");
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    margin: 0 1px 0 4px;
    position: relative;
    top: 2px;
}
.breadcrumbs li:last-child {
    font-weight: 600;
}
.breadcrumbs li:last-child:after {
    content: none;
}

/* Navigation */
.nav-menu > li {
    list-style-type: none;
    padding-bottom:20px;
    font-size:20px;
    font-weight:700;
    margin:0;
}
.nav-menu > li > a {    
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size:20px;
    font-weight:700;
    margin:0;
}
.nav-menu > li > a:after {
    content: "";
    display: block;
    width: 89px;
    height: 2px;
    margin-top: 7px;
    margin: 7px 0 0 -4px;
    background-color: #e83d30;
}
.nav-menu ul li {
    margin: 11px 0 18px;
}
.nav-menu ul li a {
    display: block;
    font: 16px/24px Arial, Helvetica, sans-serif;
}
.nav-menu ul li a:hover,
.nav-menu li.active a {
    color: #6d98a9;
}
.nav-menu ul li a:after {
    content: "\f105";
    display: inline-block;
    margin: -2px 0 0 6px;
    vertical-align: middle;
    font: 16px/24px Font Awesome\ 5 Pro;
    font-weight: bold;
}

/* Links */
a{
   color: inherit; 
}
a,
input[type="submit"] {
    display: inline-block;
    outline: none;
    -webkit-transition: all 0.3s ease 0s; 
        transition: all 0.3s ease 0s;
}
a:link,
a:visited,
a:hover,
a:active {
    text-decoration: none;
    outline: none;
}
a[href^="tel:"] {
    color: inherit;
}
a img {
    border: none;
    -webkit-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
}
/*img {
    max-width: 100%;
}*/

/* Default Placeholder styles */
::-webkit-input-placeholder{
/* WebKit browsers */
    color: #151515;
}
:-moz-placeholder{
/* Mozilla Firefox 4 to 18 */
    color: #151515;
    opacity: .5;
}
::-moz-placeholder{
/* Mozilla Firefox 19+ */
    color: #151515;
    opacity: .5;
}
:-ms-input-placeholder{
/* Internet Explorer 10+ */
    color: #151515;
    opacity: .5;
}

/* Header */ 
header .address li, header .address li a, header .address li:after, .header-logo, header .address, header .header-logo {
	display: inline-block
}

header.cell {
    height: 145px;
    background: url(/images/layout/header_left.png) top left;
    font-size: 24px;
    width: 100%;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.4);
}
header .address {
	width: 53%;
	float: left;
	vertical-align: middle
}
header .header-logo {
	width: 25%;
	vertical-align: middle
}
header .address li {
	color: #000;
	margin: 14px 0 2px
}
header .address li a {
	color: #000;
	margin: 0
}
header .address li:after {
	content: "|";
	position: relative;
	margin: 0 3px 0 7px;
	color: #000
}
header .address li:last-child:after {
	display: none
}
header .address a, .address p, .header-logo a {
	display: inline-block
}
header .address p {
	color: #000;
	letter-spacing: .06px;
	padding: 0
}
header .address a {
	color: #000;
	margin: 0 0 0 10px
}
header .address a:hover {
	color: #4bac3b
}
.header-logo img {
	opacity: .9;
        border-radius: 10px;
        margin-top:15px;
	transition: opacity .3s linear 0s;
	-webkit-transition: opacity .3s linear 0s
}
.header-logo a img {
	opacity: .3;
	transition: opacity .3s linear 0s;
	-webkit-transition: opacity .3s linear 0s
}
.header-logo a {
	margin: 0 31px 0 0
}
.header-logo a:hover img {
	opacity: 1
}
.header-logo .equal-housing img {
	height: 59px;
	width: 61px;
	margin: 0 0 2px
}
.header-logo .realtor img {
	width: 52px;
	height: 61px;
	margin: 2px 0 0
}
.header-logo.right {
	float: right;
	/*margin: 0;*/
	position: relative
}
.header-logo.left {
	float: left;
	/*margin: 0;*/
	position: relative
}
.header-logo.right {
	float: right;
	/*margin: 0;*/
	position: relative
}
header .cell, header .table {
	float: none !important
}

header h1, header h2, header h3, header h4, header h5, header h6 {
    color: #000;
}
header h1 {
    font-size:40px;
    font-weight:bold;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 5px;
}
header h2 {
    font-size:36px;
    font-weight:700;
    text-align: center;
}

#main-banner {
    min-height:25px;
    display:block;
}

/* Footer */ 
footer .left-col {
    width:20% !important;
}
footer .main-col {
    width:55% !important;
}
footer .right-col {
    width:20% !important;
}
footer .address li, footer .address li a, footer .address li:after, footer .header-logo, footer .address, footer .footer-logo {
	display: inline-block
}
footer .address li,
footer .address li a {
	font-size: 18px;
	line-height: 20px
}
/*footer .address a, footer .address li a, footer .address p {
	font-size: 12px;
	line-height: 20px
}*/
footer.cell {
	height: 145px;
	background: url(/images/layout/bg-texture.gif) top left
}
footer .address {
	/*width: 60%;*/
	/*float: left;*/
	vertical-align: middle;
        font-size:16px;
}
footer .address .copyright,
footer .address .copyright a {
    font-size:12px;
    color:#9E9E9E;
}
footer .footer-logo {
/*	width: 20%;
	float: right;*/
	vertical-align: middle
}
footer .address li {
	color: #9E9E9E;
	margin: 14px 0 2px
}
footer .address .contact li {
	color: #9E9E9E;
	margin: 0 0 2px
}
footer .address li a {
	color: #9E9E9E;
	margin: 0
}
footer .address li:after {
	content: "-";
	position: relative;
	margin: 0 3px 0 7px;
	color: #9E9E9E
}
footer .address li:last-child:after {
	display: none
}
footer .address a, .address p, .footer-logo a {
	display: inline-block
}
footer .address p {
	color: #9E9E9E;
	letter-spacing: .06px;
	padding: 0
}
footer .address a {
	color: #9e9e9e;
/*	margin: 0 0 0 10px*/
}
footer .address a:hover {
	color: #4bac3b
}
.footer-logo a img {
	opacity: .3;
	transition: opacity .3s linear 0s;
	-webkit-transition: opacity .3s linear 0s
}
.footer-logo a {
	margin: 0 31px 0 0
}
.footer-logo a:hover img {
	opacity: 1
}
.footer-logo .equal-housing img {
	height: 59px;
	width: 61px;
	margin: 0 0 2px
}
.footer-logo .realtor img {
	width: 52px;
	height: 61px;
	margin: 2px 0 0
}
.footer-logo .jbsystem {
	float: right;
	margin: 0;
	position: relative
}
.footer-logo.left {
	float: left;
	margin: 0;
	position: relative
}
.footer-logo.right {
	float: right;
	margin: 0;
	position: relative
}
footer .cell, footer .table {
	/*float: none !important*/
}
.footer-logo .jbsystem:focus, .footer-logo .jbsystem:hover {
	opacity: .6
}
.footer-logo a.jbsystem img {
	opacity: 1;
	margin: 13px 0 0
}
.footer-logo a.jbsystem span {
	font-size: 12px;
	color: #9E9E9E;
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 0;
	letter-spacing: .04em
}

/* Alerts */
.alert-container {
	width: 100%;
	height: 40px;
	background-color: #93C6DB;
	display: flex;
	align-items: center;
	position: relative;
}
.alert-container .container {
	display: flex;
	justify-content: center;
	align-items: center;
}
.alertClose {
	position: absolute;
	right: 25px;
}
.alert-container a {
	margin-left: 25px;
	text-decoration: underline;
	font-weight: bold;
	color: #255270;
}
.logo-nav{
	z-index: 500;
}

/* misc */
.hide {
    display: none;
}