﻿/*==============================
GENERAL STYLES
==============================*/

@import url(http://fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,300);

body {
    font-family: 'Open+Sans', sans-serif;
    line-height: 25px;
	padding-top: 80px;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
}
/* Custom Padding */
.pad-right-10 { padding-right: 10px; }
.pad-right-27 { padding-right: 27px; }
.pad-top-15 { padding-top: 15px; }
.pad-top-25 { padding-top: 25px; }
.pad-bottom { padding-bottom: 10px; }
.pad-bottom-20 { padding-bottom: 20px; }
.img-width-150 {width: 150px; }
.map-pad { 
	padding-top: 30px; 
	margin-bottom: 20px;
}
/* Custom Headers */
.contact h3{
	margin-top: 0px;
}
.contact h4{
	margin-top: 0px;
}
/* Custom Font Awesome Icons */
@media (max-width: 768px){
	.fa-star{
		color: #FCC200;
		font-size: 9px;
	}
	.fa-star-o{
		color: #FCC200;
		font-size: 9px;
	}
}
@media (min-width: 768px){
	.fa-star{
		color: #FCC200;
	}
	.fa-star-o{
		color: #FCC200;
	}
}
/* Custom Font Color */
.blue {
	color: #010066;
	font-weight: bold;	
}
.red {
	color: #ff0000;	
}
.sold {
    text-decoration: line-through;
}
/*==============================
NAVBAR STYLES
==============================*/
.navbar {
	box-shadow: 0 0px 15px #3d3d3d;
	padding: 2px 15px 2px 15px;
    -webkit-transition: background .8s ease-out,padding .8s ease-out;
    -moz-transition: background .8s ease-out,padding .8s ease-out;
    transition: background .8s ease-out,padding .8s ease-out;
}
.navbar-default {
    background-color: #ffffff;
    border-color: transparent;
}
.navbar-default .navbar-brand, .navbar-default .navbar-brand:hover {
    color: #ffffff;
    font-size: 20px;
    text-transform: uppercase;
}
.navbar-brand {
	padding: 0;
	height: 75px;
}
.navbar-brand img {
    height:75px;
}
@media (min-width: 768px){
	.navbar-right {
	  float: right !important;
	  margin-top: 15px;
	  margin-right: -15px;
	}
	.navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
	margin-left: 0px;
	}
}
.navbar-toggle {
	padding: 9px 0px;
	margin-top: 23px;
	margin-right: 0px;
}
.navbar-default .navbar-toggle {
    border-color: transparent;
}
.navbar-default .navbar-toggle .icon-bar {
    background-color: #010165;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: rgba(0, 0, 0, 0);
}
.navbar-default .navbar-nav > li > a {
    color: #010165;
}
.navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #000;
    text-decoration: none;
}

/* CLASS FOR REMOVING PADDING IN NAVBAR*/
.navbar-pad-original {
    padding: 0px;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #ffffff;
    background-color: #08a1e5;
}
/*==============================
NAV TABS STYLES
==============================*/
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
	border-radius: 0px;
}
.nav-tabs > li > a:hover {
	border-radius: 0px;
	color: #ffffff;
	background-color: #08a1e5;  
}
/*==============================
SLIDE SHOW STYLES
==============================*/
.carousel-fade .carousel-inner .item {
	opacity: 0;
	transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
	opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
	left: 0;
	opacity: 0;
	z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
	opacity: 1;
}

.carousel-fade .carousel-control {
	z-index: 2;
}

/*
WHAT IS NEW IN 3.3: "Added transforms to improve carousel performance in modern browsers."
now override the 3.3 new styles for modern browsers & apply opacity
*/
@media all and (transform-3d), (-webkit-transform-3d) {
    .carousel-fade .carousel-inner > .item.next,
    .carousel-fade .carousel-inner > .item.active.right {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.prev,
    .carousel-fade .carousel-inner > .item.active.left {
      opacity: 0;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
    .carousel-fade .carousel-inner > .item.next.left,
    .carousel-fade .carousel-inner > .item.prev.right,
    .carousel-fade .carousel-inner > .item.active {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
    }
}

.carousel-caption h1 {
    text-align: left;
    font-size: 15px;
    font-weight: ;
    text-transform: uppercase;
    background-color: rgba(1, 0, 106, 0.80);
    max-width: 250px;
    padding: 15px 25px;
}
.carousel-caption h2 {
    text-align: left;
    font-size: 12px;
    font-weight: ;
    text-transform: uppercase;
    background-color: rgba(1, 0, 106, 0.80);
    max-width: 200px;
    padding: 15px 25px;
}
/* SLIDESHOW MEDIA QUERIES TO HIDE ANIMATED HEADINGS WHEN SCREEN IS SMALL*/
@media (max-width:768px) and (min-width:100px) {
    .carousel-caption h1, .carousel-caption h2 {
        display: none;
    }
}

/*==============================
CAROUSEL FADE TRANSITION
==============================*/
#fade-quote-carousel.carousel {
	padding-bottom: 0px;
}
#fade-quote-carousel.carousel .carousel-inner .item {
	opacity: 0;
	-webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel.carousel .carousel-inner .active {
	opacity: 1;
	-webkit-transition-property: opacity;
      -ms-transition-property: opacity;
          transition-property: opacity;
}
#fade-quote-carousel blockquote {
    text-align: center;
    border: none;
	font-size: 18px;
}

/*==============================
750x500 PICTURE SLIDER
==============================*/
/* Indicators list style */
.article-slide .carousel-indicators {
    bottom: 0;
    left: 0;
    margin-left: 5px;
    width: 100%;
}
/* Indicators list style */
.article-slide .carousel-indicators li {
    border: medium none;
    border-radius: 0;
    float: left;
    height: 54px;
    margin-bottom: 5px;
    margin-left: 0;
    margin-right: 5px !important;
    margin-top: 0;
    width: 100px;
}
/* Indicators images style */
.article-slide .carousel-indicators img {
    border: 2px solid #FFFFFF;
    float: left;
    height: 54px;
    left: 0;
    width: 100px;
}
/* Indicators active image style */
.article-slide .carousel-indicators .active img {
    border: 2px solid #428BCA;
    opacity: 0.7;
}

/*==============================
PANEL STYLES
==============================*/
.panel {
	margin-bottom: 20px;
	background-color: #fff;
	border: 0px solid transparent;
	border-radius: 0px;
	-webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
	box-shadow: 0 1px 15px rgba(0, 0, 0, .25);
}
.panel-default {
	border-color: transparent;
}
.panel-default > .panel-heading {
	color: #fff;
	background-color: #08a1e5;
	border-color: #transparent;
}
.panel-heading {
	padding: 5px 15px;
	border-bottom: 1px solid transparent;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
}
.panel-body {
	padding: 15px;
}
.panel-body .lft-img-margin {
	margin: 5px 20px 5px 0px;
}

/*==============================
SECTION STYLES
==============================*/
.section-title.center {
  padding: 30px 0;
}
.section-title.center .line {
  border-top: 4px solid #010066;
  height: 10px;
  width: 100px;
  text-align: center;
  margin: 0 auto;
  margin-top: 20px;
}
/* Header Section */
.header-section {
	text-align: center;
	background: #010066;
	padding-top: 5px;
	padding-bottom: 20px;
	color: #ffffff;
}
.header-section .page-header {
	margin: 0px 0 20px;
}
/* Info Section */
.info-section {
	padding-top: 0px;
	background: #ffffff;
	padding-bottom: 30px;
	line-height: 18px;
}
.info-section h2 {
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #010066;
}
.info-section blockquote {
  margin: 0 0 20px 0px;
  border-left: 5px solid #08a1e5;
}
.info-section blockquote p {
  line-height: 1.3;
}
.info-section .thumbnail {
	padding: 0px;
	border: 3px solid #ffffff;
	border-radius: 0px;
	box-shadow: 0 1px 15px rgba(0, 0, 0, .25);
}
.info-section ul {
  line-height: 20px;
}
.info-section .page-header {
	border-bottom: 1px solid #4c4c4c;
}
.info-section .media>.pull-left {
	margin-right: 10px;
}
.info-section .media-left, .media > .pull-left {
	padding-right: 0px;
}
/* Grey Gallery Section */
.gallery-section {
	padding-top: 0px;
	background: #e5e5e5;
	padding-bottom: 10px;
	line-height: 18px;
}
.gallery-section h2 {
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
	color: #010066;
}
.gallery-section .thumbnail {
	padding: 0px;
	border: 3px solid #ffffff;
	border-radius: 0px;
	box-shadow: 0 1px 15px rgba(0, 0, 0, .25);
}
.gallery-section .page-header {
	border-bottom: 1px solid #4c4c4c;
}
.gallery-section .media>.pull-left {
	margin-right: 10px;
}
.gallery-section .media-left, .media > .pull-left {
	padding-right: 0px;
}
/* Grey Homes Section */
.homes-section {
	padding-top: 0px;
	background: #e5e5e5;
	padding-bottom: 30px;
	line-height: 18px;
}
.homes-section h2 {
	font-weight: 700;
	margin-bottom: 20px;
	text-align: center;
	color: #010066;
}
.homes-section .thumbnail {
	padding: 0px;
	border: none;
}
.homes-section .page-header {
	border-bottom: 1px solid #4c4c4c;
}
.homes-section .media>.pull-left {
	margin-right: 10px;
}
.homes-section .media-left, .media > .pull-left {
	padding-right: 0px;
}
/* Quote Section */
.quote-section {
	background: url('img/image.jpg');
    color: #fff;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center center;
}
.quote-section .top {
	height: 350px;
	background: rgba(15, 15, 15, 0.70);
	line-height: 24px;
	text-align: center;
	padding-top: ;
	padding-bottom: ;
}
.quote-section .fa {
	color: #ffffff;
}
.quote-section .section-title.center .line {
	border-top: 4px solid #ffffff;
	height: 10px;
	width: 100px;
	text-align: center;
	margin: 0 auto;
	margin-top: 20px;
}
@media (max-width:768px) {
	.quote-section .top {
		height: 410px;
	}
}

/*==============================
REAL ESTATE LISTINGS
==============================*/
/**** LAYOUT ****/
.list-inline>li {
    padding: 0 10px 0 0;
}
/**** MODULE ****/
.bgc-fff {
    background-color: #fff!important;
}
.box-shad {
    -webkit-box-shadow: 0 1px 15px rgba(0, 0, 0, .25);
    box-shadow: 0 1px 15px rgba(0, 0, 0, .25);
}
.brdr {
    border: 1px solid #ededed;
}
/* Font changes */
.fnt-smaller {
    font-size: .9em;
}
.fnt-lighter {
    color: #bbb;
}
/* Padding - Margins */
.pad-10 {
    padding: 10px!important;
}
.mrg-0 {
    margin: 0!important;
}
.btm-mrg-10 {
    margin-bottom: 10px!important;
}
.btm-mrg-20 {
    margin-bottom: 20px!important;
}
/* Color  */
.clr-535353 {
    color: #535353;
}
/**** MEDIA QUERIES ****/
@media only screen and (max-width: 991px) {
    #property-listings .property-listing {
        padding: 5px!important;
    }
    #property-listings .property-listing a {
        margin: 0;
    }
    #property-listings .property-listing .media-body {
        padding: 10px;
    }
	#property-listings .property-listing img {
        width: 100%;
    }
}
@media only screen and (min-width: 992px) {
    #property-listings .property-listing img {
        max-width: 180px;
    }
}

/*==============================
ISOTOPE ITEMS
==============================*/
.filters {
	margin: 0 0 30px 0;
}
.filters .nav-pills > li {
	margin-right: 2px;
	margin-bottom: 2px;
}
.filters .nav-pills > li + li {
	margin-left: 0px;
}
.text-center.filters .nav-pills > li {
	margin-right: 2px;
	margin-left: 2px;
	margin-bottom: 2px;
	display: inline-block;
	float: none;
}
.isotope-container {
	overflow: hidden;
}
.isotope-item {
	margin-bottom: 20px;
}
.isotope-item .btn-default {
	color: #999999;
}
.isotope-item .btn-default:hover {
	color: #ffffff;
}
/* Isotope Item Text Popup */
.popup-item {
    cursor: pointer;
    margin: 0 1% 0% 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}
figcaption.mask {
    background-color: rgba(54, 55, 50, 0.79);
    bottom: -146px;
    color: #fff;
    padding: 10px;
    position: absolute;
    width: 100%;
    text-align: left;
	font-size: 12px;
    
    -webkit-transition: all 0.4s ease 0s;
       -moz-transition: all 0.4s ease 0s;
        -ms-transition: all 0.4s ease 0s;
         -o-transition: all 0.4s ease 0s;
            transition: all 0.4s ease 0s;
}
.popup-item:hover figcaption.mask {
    bottom: 0px;
}
/* Nav Pills */
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus,
.nav-pills > li > a:hover {
	background-color: #08a1e5;
	border-color: #08a1e5;
	color: #ffffff;
}
.nav-pills > li > a {
	border-radius: 0;
	padding: 8px 6px 6px 6px;
	border: 1px solid #cacaca;
	color: #666666;
	font-size: 10px;
	text-transform: uppercase;
}

/*==============================
BOTTOM SECTION
==============================*/
.bottom-section {
    background: #08a1e5;
    color: #fff;
    padding: 50px 0 25px 0;
}
.bottom-section h1 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 20px;
	color: #010066;
}
.bottom-section address a { color: #ffffff; }
.page-bottom {
	padding-bottom: 15px;
}
.page-bottm h1 { padding-left: 4% }
ul.page-bottom-list {
    list-style: none;
    padding: 0px 10px;
}
ul.page-bottom-list li {
    line-height: 35px;
    border-bottom: 1px dashed #636F79;
}
ul.page-bottom-list a { color: #fff }
ul.page-bottom-list li i { padding-right: 10px }
.text-bottom {
    padding-bottom: 15px;
    margin-left: 0px;
}
.text-bottom p { text-align: left }
.address p {
    text-align: left;
    margin-bottom: 10px;
}
.social-link-bottom li {
    float: left;
    margin: 5px 10px 5px 0px;
    padding-bottom: 5px;
}
.social-link-bottom li a {
    color: #fff;
    background: #01006a;
    padding: 15px 10px 10px 10px;
    width: 50px;
    height: 50px;
    float: left;
    text-align: center;
    font-size: 20px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.social-link-bottom li a:hover {
    color: #08a1e5;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
/*==============================
FEATURED PROPERTY INFO SECTION
==============================*/
.real-estate-info h2 {
	text-align: left;
}
.real-estate-facts  ul{
	padding-left: 20px;
}
.real-estate-facts h3 {
	font-size: 20px;
	margin-top: 22px;
}

/*==============================
CUSTOM BUTTON STYLES
==============================*/
.btn {
	padding: 8px 15px;
	font-size: 14px;
	line-height: 1.42857143;
	min-width: 160px;
	text-align: center;
	border-radius: 0;
	text-transform: uppercase;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.btn-default:hover {
	color: #ffffff;
	background-color: #08a1e5;
	border-color: #ccc;
}
.btn-primary {
	color: #fff;
	background-color: #08a1e5;
	border-color: #08a1e5;
}

.btn-primary:hover {
	color: #ffffff;
	background-color: #010165;
	border-color: #010165;
}


/*==============================
CUSTOM FORM STYLES
==============================*/
.form-control {
	color: #555;
	background-color: #fff;
	border-radius: 0px;
}

.form-control:focus {
	border-color: #adadad;
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.6);
}
.alert-success {
	color: #3c763d;
	background-color: #f7f7f7;
	border-color: #f9f9f9;
}
.alert {
	padding: 10px;
	border-radius: 0px;
}


/*==============================
FOOTER STYLES
==============================*/
#footer {
	height: 60px;
	background-color: #01006a;
	color: #fff;
}
#footer > .container {
	padding-top: 20px;
	padding-left: 15px;
	padding-right: 15px;
}