/*!
Theme Name: Paramount
Theme URI: http://propertywaresites.com
Author: Propertyware
Author URI: http://propertywaresite.com
Description: Paramount Parent Theme for Propertyware
Version: 1.0.0
Text Domain: Paramount
Template: pwparent
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Widgets
# Content
    ## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Colors
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Theme Colors
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/css?family=Roboto+Slab:400,700|Open+Sans:400,700);
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet
******************************************************************/
/*********************
CLEARFIXIN'
*********************/
/*********************
TOOLS
*********************/
/*********************
THEMIFY Mixin
*********************/
/*********************
TOOLS
*********************/
* {
  box-sizing: border-box;
}

.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/*--------------------------------------------------------------
# Normalize (or Reset)
--------------------------------------------------------------*/
/* normalize-scss 3.0.2+normalize.3.0.2 | MIT/GPLv2 License | bit.ly/normalize-scss */
/**
 * Establish a vertical rhythm unit using $base-font-size, $base-line-height,
 * and $rhythm-unit variables. Also, correct text resizing oddly in IE 6/7 when
 * body `font-size` is set using `em` units.
 */
html {
  font-size: 100%;
  line-height: 1.5em;
}

/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  *display: inline;
  *zoom: 1;
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 */
[hidden] {
  display: none;
}

/**
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Set 1 unit of vertical rhythm on the top and bottom margin.
 */
blockquote {
  margin: 1.5em 40px;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  /* Set the font-size and line-height while keeping a proper vertical rhythm. */
  font-size: 2em;
  line-height: 1.5em;
  /* Set 1 unit of vertical rhythm on the top and bottom margins. */
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

h2 {
  font-size: 1.5em;
  line-height: 2em;
  margin-top: 1em;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.17em;
  line-height: 1.28205em;
  margin-top: 1.28205em;
  margin-bottom: 1.28205em;
}

h4 {
  font-size: 1em;
  line-height: 1.5em;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

h5 {
  font-size: 0.83em;
  line-height: 1.80723em;
  margin-top: 1.80723em;
  margin-bottom: 1.80723em;
}

h6 {
  font-size: 0.67em;
  line-height: 2.23881em;
  margin-top: 2.23881em;
  margin-bottom: 2.23881em;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Set 1 unit of vertical rhythm on the top and bottom margin.
 */
p,
pre {
  margin: 1.5em 0;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1.5em 0;
}

dd {
  margin: 0 0 0 40px;
}

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px;
}

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
  /* Improve image quality when scaled in IE 7. */
  -ms-interpolation-mode: bicubic;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1.5em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0;
}

/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 * 4. Address `font-family` inconsistency between `textarea` and other form in IE 7
 * 5. Improve appearance and consistency with IE 6/7.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
  *font-family: sans-serif;
  /* 4 */
  *vertical-align: middle;
  /* 5 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */
  /**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */
}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  margin: 0 2px;
  /* Apply borders and padding that keep the vertical rhythm. */
  border-color: #c0c0c0;
  border-top-width: 0.0625em;
  border-top-style: solid;
  padding-top: 0.4625em;
  border-bottom-width: 0.0625em;
  border-bottom-style: solid;
  padding-bottom: 0.9125em;
  border-left-width: 0.0625em;
  border-left-style: solid;
  padding-left: 0.875em;
  border-right-width: 0.0625em;
  border-right-style: solid;
  padding-right: 0.875em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
  *margin-left: -7px;
  /* 3 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
.form-control {
  box-shadow: none;
}

.btn-group-lg > .btn,
.btn-lg {
  font-size: 16px;
  padding: 11px 18px;
  border-radius: 3px;
}

.btn-default {
  color: #93999A;
  border-color: #969b9d;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  border-color: #e1e1e1;
}

label {
  font-weight: 400;
}

.panel-default > .panel-heading {
  background-color: #3F4243;
  border-color: #3F4243;
  color: #FFF;
}
.panel-default .panel-title {
  color: #fff;
  text-transform: none;
  font-weight: 400;
}

.navbar-brand {
  float: none;
  height: auto;
}

.navbar-toggle {
  margin-top: 19px;
  margin-bottom: 19px;
}

.navbar {
  margin-bottom: 0;
}

.navbar-nav {
  margin-bottom: 0;
}

.navbar-default {
  background-color: #fff;
  border: none;
}
.navbar-default .navbar-toggle {
  background-color: #369982;
  border-color: #369982;
}
.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
  background-color: #2f8672;
}
.navbar-default .navbar-toggle .icon-bar {
  background-color: #fff;
}

textarea.form-control {
  border-radius: 0;
  padding: 3px;
}

input.form-control {
  border-radius: 0;
  padding: 3px;
}

select.form-control {
  border-radius: 0;
  padding: 3px;
}

body,
button,
input,
select,
textarea {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

.entry-content h2,
.form-getstarted h2 {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  line-height: 1;
  margin-top: 0;
}
.entry-content h3,
.form-getstarted h3 {
  color: #369982;
  font-weight: 400;
  margin-top: 0;
  font-size: 20px;
  font-size: 1.25rem;
}

.section {
  line-height: 1.8em;
}
.section h2 {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Roboto Slab", serif;
  color: #fff;
  line-height: 1em;
  margin: 0 0 50px;
  letter-spacing: .5px;
  color: #565a5c;
}

.page-hero h1 {
  font-size: 42.4px;
  font-size: 2.65rem;
  font-family: "Roboto Slab", serif;
  margin: 10px 0;
  line-height: 1em;
}
.page-hero.no-img {
  color: #6B6A6A;
}
.page-hero.no-img h1 {
  color: #565a5c;
  text-shadow: none;
}

.propertydetail-page .section h2,
.propertydetail-page .side-section h2 {
  color: #565A5C;
  font-weight: 700;
  font-size: 20px;
  text-transform: none;
  font-family: "Open Sans", sans-serif;
  margin-bottom: 15px;
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.2;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

body {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
  color: #6B6A6A;
}

blockquote, q {
  quotes: "" "";
}
blockquote:before, blockquote:after, q:before, q:after {
  content: "";
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

a {
  color: #6B6A6A;
}
a:hover {
  color: #5e5d5d;
}
a:visited {
  color: #6B6A6A;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

/*--------------------------------------------------------------
# Lists
--------------------------------------------------------------*/
ul,
ol {
  margin: 0;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 1.5em 1.5em;
}

/*--------------------------------------------------------------
# Tables
--------------------------------------------------------------*/
table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Helpers
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding-top: 95px;
}

.section-form {
  margin-top: 2em;
}

.icons-coastal {
  width: 47px;
  height: 47px;
  display: block;
}
.icons-coastal.icon-pay {
  background-position: center 0;
}
.icons-coastal.icon-man {
  background-position: center -200px;
}
.icons-coastal.icon-req {
  background-position: center -402px;
}
.icons-coastal.icon-analysis {
  background-position: center -1417px;
}
.icons-coastal.icon-tenant {
  background-position: center -637px;
}
.icons-coastal.icon-price {
  background-position: center -889px;
}
.icons-coastal.icon-lease {
  background-position: center -1151px;
}

.pagination {
  border-radius: 0;
}
.pagination > li:first-child > a,
.pagination > li:first-child > span {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.pagination > li:last-child > a,
.pagination > li:last-child > span {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn-blue {
  font-weight: 700;
}
.theme-default .btn-blue {
  background-color: #369982;
  color: #fff;
  text-decoration: none;
}
.theme-default .btn-blue:hover {
  color: #fff;
  background-color: #AAD1C8;
}
.theme-cool .btn-blue {
  background-color: #27A0FD;
  color: #fff;
  text-decoration: none;
}
.theme-cool .btn-blue:hover {
  color: #fff;
  background-color: #2CCDFE;
}
.theme-fresh .btn-blue {
  background-color: #fd7939;
  color: #fff;
  text-decoration: none;
}
.theme-fresh .btn-blue:hover {
  color: #fff;
  background-color: #1dc18e;
}
.theme-relaxed .btn-blue {
  background-color: #fdb83b;
  color: #fff;
  text-decoration: none;
}
.theme-relaxed .btn-blue:hover {
  color: #fff;
  background-color: #1983a8;
}
.theme-custom .btn-blue {
  background-color: #369982;
  color: #fff;
  text-decoration: none;
}
.theme-custom .btn-blue:hover {
  color: #fff;
  background-color: #AAD1C8;
}

.btn-white {
  font-weight: 700;
  background-color: #fff;
  text-decoration: none;
}
.theme-default .btn-white {
  color: #369982;
}
.theme-default .btn-white:hover {
  color: #AAD1C8;
}
.theme-cool .btn-white {
  color: #27A0FD;
}
.theme-cool .btn-white:hover {
  color: #2CCDFE;
}
.theme-fresh .btn-white {
  color: #fd7939;
}
.theme-fresh .btn-white:hover {
  color: #1dc18e;
}
.theme-relaxed .btn-white {
  color: #fdb83b;
}
.theme-relaxed .btn-white:hover {
  color: #1983a8;
}
.theme-custom .btn-white {
  color: #369982;
}
.theme-custom .btn-white:hover {
  color: #AAD1C8;
}
.btn-white:hover {
  background-color: #f2f2f2;
}

.btn-false {
  color: #6B6A6A;
  border-color: #6B6A6A;
  text-decoration: none;
}
.btn-false.disabled {
  opacity: 1;
}

.btn-main {
  font-weight: 400;
  color: #fff;
  text-decoration: none;
}
.theme-default .btn-main {
  background-color: #369982;
}
.theme-default .btn-main:hover {
  color: #fff;
  background-color: #AAD1C8;
}
.theme-default .btn-main:focus {
  color: #fff;
  outline: none;
}
.theme-default .btn-main:link {
  color: #fff;
  outline: none;
}
.theme-default .btn-main:visited {
  color: #fff;
  outline: none;
}
.theme-cool .btn-main {
  background-color: #27A0FD;
}
.theme-cool .btn-main:hover {
  color: #fff;
  background-color: #2CCDFE;
}
.theme-cool .btn-main:focus {
  color: #fff;
  outline: none;
}
.theme-cool .btn-main:link {
  color: #fff;
  outline: none;
}
.theme-cool .btn-main:visited {
  color: #fff;
  outline: none;
}
.theme-fresh .btn-main {
  background-color: #fd7939;
}
.theme-fresh .btn-main:hover {
  color: #fff;
  background-color: #1dc18e;
}
.theme-fresh .btn-main:focus {
  color: #fff;
  outline: none;
}
.theme-fresh .btn-main:link {
  color: #fff;
  outline: none;
}
.theme-fresh .btn-main:visited {
  color: #fff;
  outline: none;
}
.theme-relaxed .btn-main {
  background-color: #fdb83b;
}
.theme-relaxed .btn-main:hover {
  color: #fff;
  background-color: #1983a8;
}
.theme-relaxed .btn-main:focus {
  color: #fff;
  outline: none;
}
.theme-relaxed .btn-main:link {
  color: #fff;
  outline: none;
}
.theme-relaxed .btn-main:visited {
  color: #fff;
  outline: none;
}
.theme-custom .btn-main {
  background-color: #369982;
}
.theme-custom .btn-main:hover {
  color: #fff;
  background-color: #AAD1C8;
}
.theme-custom .btn-main:focus {
  color: #fff;
  outline: none;
}
.theme-custom .btn-main:link {
  color: #fff;
  outline: none;
}
.theme-custom .btn-main:visited {
  color: #fff;
  outline: none;
}

.submit_inquiry {
  background-color: rgba(129, 129, 129, 0.35);
  border-radius: 0;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 5px 20px;
}
.theme-default .submit_inquiry:hover {
  color: #fff;
  background-color: #AAD1C8;
}
.theme-cool .submit_inquiry:hover {
  color: #fff;
  background-color: #2CCDFE;
}
.theme-fresh .submit_inquiry:hover {
  color: #fff;
  background-color: #1dc18e;
}
.theme-relaxed .submit_inquiry:hover {
  color: #fff;
  background-color: #1983a8;
}
.theme-custom .submit_inquiry:hover {
  color: #fff;
  background-color: #AAD1C8;
}

.theme-default .top-access a:hover {
  text-decoration: underline;
}
.theme-cool .top-access a:hover {
  text-decoration: underline;
}
.theme-fresh .top-access a:hover {
  text-decoration: underline;
}
.theme-relaxed .top-access a:hover {
  text-decoration: underline;
}
.theme-custom .top-access a:hover {
  text-decoration: underline;
}

.btn-tertiary {
  font-weight: 400;
  color: #fff;
}
.theme-default .btn-tertiary {
  background-color: #369982;
}
.theme-default .btn-tertiary:hover {
  color: #fff;
  background-color: #AAD1C8;
}
.theme-cool .btn-tertiary {
  background-color: #10568a;
}
.theme-cool .btn-tertiary:hover {
  color: #fff;
  background-color: #2CCDFE;
}
.theme-fresh .btn-tertiary {
  background-color: #10568a;
}
.theme-fresh .btn-tertiary:hover {
  color: #fff;
  background-color: #1dc18e;
}
.theme-relaxed .btn-tertiary {
  background-color: #19979a;
}
.theme-relaxed .btn-tertiary:hover {
  color: #fff;
  background-color: #1983a8;
}
.theme-custom .btn-tertiary {
  background-color: #369982;
}
.theme-custom .btn-tertiary:hover {
  color: #fff;
  background-color: #AAD1C8;
}

.btn-rounded {
  border-radius: 50em;
}

/*--------------------------------------------------------------
# Inputs
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  color: #666666;
  border: 1px solid #ccc;
  border-radius: 0;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
  padding: 3px;
}

textarea {
  padding-left: 3px;
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.main-navigation {
  display: block;
  padding: 0;
  position: relative;
  float: none;
  margin: 0 -15px;
}
.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
  text-align: center;
}
.theme-default .main-navigation ul {
  background-color: #369982;
}
.theme-cool .main-navigation ul {
  background-color: #27A0FD;
}
.theme-fresh .main-navigation ul {
  background-color: #fd7939;
}
.theme-relaxed .main-navigation ul {
  background-color: #fdb83b;
}
.theme-custom .main-navigation ul {
  background-color: #369982;
}
.main-navigation ul ul {
  text-align: center;
  border-top: 1px solid #f2f2f2;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul li {
  float: none;
  margin: 0;
  font-style: italic;
}
.main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
  left: 100%;
}
.main-navigation ul ul a {
  background-color: rgba(255, 255, 255, 0.2);
  width: auto;
  white-space: nowrap;
  padding: 1em 15px;
}
.main-navigation li {
  position: relative;
  border-bottom: 1px solid #f2f2f2;
}
.theme-default .main-navigation li:hover > a, .theme-default .main-navigation li.focus > a {
  color: #AAD1C8;
}
.theme-cool .main-navigation li:hover > a, .theme-cool .main-navigation li.focus > a {
  color: #2CCDFE;
}
.theme-fresh .main-navigation li:hover > a, .theme-fresh .main-navigation li.focus > a {
  color: #1dc18e;
}
.theme-relaxed .main-navigation li:hover > a, .theme-relaxed .main-navigation li.focus > a {
  color: #1983a8;
}
.theme-custom .main-navigation li:hover > a, .theme-custom .main-navigation li.focus > a {
  color: #AAD1C8;
}
.main-navigation li:last-child {
  border-bottom: none;
}
.main-navigation a {
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 5px 0px;
  text-transform: uppercase;
}
.theme-default .main-navigation .current_page_item > a, .theme-default
.main-navigation .current-menu-item > a, .theme-default
.main-navigation .current_page_ancestor > a {
  color: #AAD1C8;
}
.theme-cool .main-navigation .current_page_item > a, .theme-cool
.main-navigation .current-menu-item > a, .theme-cool
.main-navigation .current_page_ancestor > a {
  color: #2CCDFE;
}
.theme-fresh .main-navigation .current_page_item > a, .theme-fresh
.main-navigation .current-menu-item > a, .theme-fresh
.main-navigation .current_page_ancestor > a {
  color: #1dc18e;
}
.theme-relaxed .main-navigation .current_page_item > a, .theme-relaxed
.main-navigation .current-menu-item > a, .theme-relaxed
.main-navigation .current_page_ancestor > a {
  color: #1983a8;
}
.theme-custom .main-navigation .current_page_item > a, .theme-custom
.main-navigation .current-menu-item > a, .theme-custom
.main-navigation .current_page_ancestor > a {
  color: #AAD1C8;
}

.mainmenu {
  background: #5E9387;
}

.main-menu-container {
  clear: both;
  padding: 0 0 45px;
}

/* Small menu. */
.main-navigation.toggled ul {
  display: block;
}
.main-navigation.toggled .menu-toggle span.vicon-lines {
  display: none;
}
.main-navigation.toggled .menu-toggle span.vicon-x {
  display: inline-block;
}

.menu-toggle {
  display: block;
  color: #fff;
  border: none;
  font-size: 28.8px;
  font-size: 1.8rem;
  height: 70px;
  width: 70px;
  line-height: 1;
  float: right;
  outline: none;
}
.theme-default .menu-toggle {
  background-color: #369982;
}
.theme-cool .menu-toggle {
  background-color: #27A0FD;
}
.theme-fresh .menu-toggle {
  background-color: #fd7939;
}
.theme-relaxed .menu-toggle {
  background-color: #fdb83b;
}
.theme-custom .menu-toggle {
  background-color: #369982;
}
.menu-toggle strong {
  display: none;
}
.menu-toggle span.vicon-lines {
  display: inline-block;
}
.menu-toggle span.vicon-x {
  display: none;
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
  margin: 0 0 1.5em;
  overflow: hidden;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
  background: #fff;
  left: 0;
  min-height: 71px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}

.preheader {
  background: #fff;
  padding: 15px 0;
}

.top-menu {
  float: right;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #5b5b5b;
  text-align: right;
}
.top-menu li {
  display: inline-block;
  margin-left: 0.2em;
}
.top-menu li .ficons {
  font-size: 16px;
  top: 2px;
}
.top-menu .telephone {
  font-size: 1.715em;
}

.top-left {
  margin-bottom: 25px;
}

.top-right {
  float: right;
}

.top-translate {
  clear: both;
  margin: 36px 0 0 0;
}

.top-access {
  text-align: center;
}
.top-access li {
  display: inline-block;
  margin-left: 0;
}
.top-access li:first-child a {
  border: none;
}
.top-access a {
  border-left: 1px solid #4c4c4c;
  color: #4c4c4c;
  display: block;
  text-decoration: none;
  text-align: center;
  width: 140px;
}
.top-access a:hover {
  text-decoration: none;
}

.header-social {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-social li {
  display: inline-block;
  margin-right: 0.5em;
  line-height: 150%;
}
.header-social a {
  color: #969696;
  text-decoration: none;
  font-size: 1.7em;
}
.theme-default .header-social a:hover {
  color: #AAD1C8;
}
.theme-cool .header-social a:hover {
  color: #2CCDFE;
}
.theme-fresh .header-social a:hover {
  color: #1dc18e;
}
.theme-relaxed .header-social a:hover {
  color: #1983a8;
}
.theme-custom .header-social a:hover {
  color: #AAD1C8;
}
.header-social strong {
  display: none;
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 600px) {
  .admin-bar #wpadminbar {
    position: fixed;
  }
  .admin-bar .site-header {
    top: 46px;
  }
}
.site-branding {
  text-align: center;
  padding: 0;
  margin-right: 0;
  max-height: 75px;
  z-index: 100;
  position: relative;
}
.site-branding img {
  max-height: 50px;
}

.site-title {
  margin: 0;
  line-height: 1.2em;
}
.site-title a.site-logo {
  display: block;
  max-width: 210px;
  width: 100%;
  height: 47px;
  margin: 0 auto;
}
.site-title a.site-logo img {
  max-height: 100%;
}

.site-description {
  margin: 0;
}

#poweredby {
  display: none;
}

.main-navigation .btn-header {
  background-color: #1bb7d4;
}
.main-navigation .btn-header:hover {
  background-color: #18a3bd;
}

.search-box {
  position: relative;
  display: none;
}
.search-box .input-slide {
  position: absolute;
  right: 0;
  width: 0;
  top: 0;
  z-index: 50;
  background: #fff;
  display: none;
}
.search-box .input-slide input {
  height: 71px;
  width: 100%;
  padding: 3px 10px;
  border: none;
  border-radius: 0;
  outline: none;
}
.search-box .btn-close {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
}
.search-box .btn-close:hover {
  color: #369982;
}
.search-box .btn-search {
  display: block;
  height: 71px;
  width: 70px;
  line-height: 71px;
  padding: 0;
  text-align: center;
}
.search-box .btn-search:hover {
  color: #369982;
}

.getstarted-form-container {
  height: auto;
  margin: 0;
  padding: 0 15px 2em;
}

.get-started-container {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  padding: 0;
}
.get-started-container .btn {
  display: block;
  width: 100%;
  border-radius: 0;
}

.form-getstarted {
  color: #fff;
  padding: 20px;
  background-color: rgba(63, 66, 67, 0.5);
  text-align: left;
}
.form-getstarted .btn-close {
  position: absolute;
  text-decoration: none;
  top: -70px;
  right: 0;
  background-color: #fb8d68;
  padding: 20px;
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 28.8px;
  font-size: 1.8rem;
  height: 70px;
  width: 70px;
  line-height: 1;
  outline: none;
}
.form-getstarted .btn-close strong {
  display: none;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer-links {
  padding: 80px 0;
}
.footer-links h2 {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Roboto Slab", serif;
  line-height: 1;
  margin-top: 0;
}
.footer-links h3 {
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 20px;
  font-size: 1.25rem;
}
.theme-default .footer-links h3 {
  color: #369982;
}
.theme-cool .footer-links h3 {
  color: #10568a;
}
.theme-fresh .footer-links h3 {
  color: #10568a;
}
.theme-relaxed .footer-links h3 {
  color: #19979a;
}
.theme-custom .footer-links h3 {
  color: #369982;
}
.footer-links ul {
  padding: 0;
  list-style: none;
  margin-bottom: 2em;
}
.footer-links ul li {
  border-bottom: 1px solid #e1e1e1;
  padding: 10px 0;
}
.footer-links ul li a {
  color: #6B6A6A;
  display: block;
  text-decoration: none;
}
.footer-links ul li a:after {
  content: "\2192";
  float: right;
}

.footer-badges {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer-badges img {
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  max-height: 61px;
  width: auto;
  margin: 1.5em 0 1.5em 1.5em;
  padding: 0 1.5em 0 0;
}
.footer-badges .widget-badge:last-child img {
  border: none;
}

.badges h3 {
  display: block;
  font-size: 1.5em;
  margin-top: 0;
  margin-bottom: 0.8em;
}

.footer-subscribe {
  padding: 70px 0;
}
.footer-subscribe h3 {
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 0;
  font-size: 20px;
  font-size: 1.25rem;
}
.theme-default .footer-subscribe h3 {
  color: #AAD1C8;
}
.theme-cool .footer-subscribe h3 {
  color: #2CCDFE;
}
.theme-fresh .footer-subscribe h3 {
  color: #1dc18e;
}
.theme-relaxed .footer-subscribe h3 {
  color: #1983a8;
}
.theme-custom .footer-subscribe h3 {
  color: #AAD1C8;
}

.footer-company {
  float: right;
}
.footer-company ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-company ul li {
  margin-bottom: 1em;
  line-height: 1;
}
.footer-company ul li .ficons {
  font-size: 1.5em;
  margin: 2px 10px 0 0;
}
.footer-company a {
  color: #fff;
}

.footer-social {
  list-style: none;
  margin: 0 0 2em;
  padding: 0;
}
.footer-social li {
  display: inline-block;
  margin-right: 1em;
}
.footer-social a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}
.theme-default .footer-social a:hover {
  color: #AAD1C8;
}
.theme-cool .footer-social a:hover {
  color: #2CCDFE;
}
.theme-fresh .footer-social a:hover {
  color: #1dc18e;
}
.theme-relaxed .footer-social a:hover {
  color: #1983a8;
}
.theme-custom .footer-social a:hover {
  color: #AAD1C8;
}
.footer-social strong {
  display: none;
}

.site-footer {
  padding: 1.5em 0 0;
  background-color: #969696;
  color: #fff;
}
.site-footer .site-branding {
  margin: 10px 0 1.5em 0;
  text-align: left;
  z-index: 1;
}
.site-footer p {
  margin: 0 0 1.5em 0;
  font-size: 1em;
}

.site-bottom {
  background: white;
  color: #656565;
  margin-top: 30px;
  padding: 0.7em 0px;
  text-align: center;
}
.site-bottom .copy {
  font-size: 12.8px;
  font-size: 0.8rem;
  padding: 0.4em 0;
}
.site-bottom a {
  color: #656565;
}

.footer-logo {
  margin: 0;
}
.footer-logo img {
  max-width: 210px;
  height: auto;
}

.footer-widget.widget_text {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
.fullwidth-page article {
  padding: 0 20px 70px;
  min-height: 410px;
}

.entry-header h1 {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  margin-bottom: 0;
}

.entry-footer > span {
  display: block;
}

.comments-area {
  border-top: 1px solid #ccc;
  margin-top: 2em;
}

.comment-reply-title {
  font-family: "Roboto Slab", serif;
  margin-bottom: 0;
}

.logged-in-as {
  margin: 0;
}

.posts-list {
  margin-bottom: 3em;
}
.posts-list article {
  margin-bottom: 2em;
}
.posts-list article .cat-links {
  display: none;
}
.posts-list article .tags-links {
  display: none;
}
.posts-list article .edit-link {
  display: none;
}

.posted-on .published + time.updated {
  display: none;
}

.site {
  padding-top: 129px;
}

.page-hero {
  text-align: center;
  color: #6B6A6A;
  position: relative;
}
.page-hero .over-hero {
  padding: 0 1em;
}
.page-hero .hero-btns {
  padding-bottom: 1em;
}
.page-hero .hero-btns .sep {
  margin: 15px 0;
  display: block;
}
.page-hero.no-img {
  min-height: 220px;
  margin: 75px auto;
}

.home .page-hero h1 {
  font-size: 40px;
  font-family: 'Playfair Display',sans-serif;
  white-space: normal;
}
.home .page-hero p {
  font-size: 1.5em;
}
.home .widget_solutions .dd-box {
  border-bottom: none;
  text-align: center;
}
.home .widget_solutions .dd-box > .icons-coastal {
  display: none;
}
.home .widget_solutions .dd-box .radio-icon {
  background: #fff;
  float: none;
  height: 7.5em;
  border-radius: 4em;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0;
  padding: 1.80em 0;
  width: 7.5em;
}
.home .widget_solutions .dd-box .dd-title {
  color: #fff;
  font-size: 24px;
  margin-left: 0;
  text-transform: uppercase;
}
.home .widget_solutions .dd-box .dd-title .icons-coastal {
  display: block;
}
.home .widget_solutions .dd-box .dd-content .icons-coastal {
  display: none;
}
.home .widget_solutions .dd-box .dd-content p {
  margin-left: 0;
}
.home .siteoptions {
  background: rgba(94, 147, 135, 0.9);
  bottom: 0;
  width: 100%;
}
.home .siteoptions .optionitem {
  text-align: center;
}
.home .siteoptions .optionitem h3 {
  color: #fff;
  text-transform: uppercase;
}
.home .siteoptions .optionitem a {
  color: #fff;
  font-size: 24px;
  outline: none;
  text-decoration: none;
}
.home .siteoptions .optionitem .option-icon {
  display: block;
  font-size: 3em;
  margin: 20px auto;
}
.home .bar-filters {
  display: none;
  background-color: #3D4041;
  border: none;
  padding: 10px;
  text-align: center;
}
.home .bar-filters .form-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.home .bar-filters .form-group {
  border: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 10px;
  margin-bottom: 5px;
}
.home .bar-filters .form-group.group-location {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.home .bar-filters .form-group select.form-control {
  color: #fff;
  border-color: #fff;
  background-color: #3D4041;
  width: 100%;
}
.home .bar-filters .form-group .field-location {
  width: 100%;
  border-color: #fff;
  outline: none;
  box-shadow: none;
}
.home .bar-filters .quicksearch-dosearch {
  background-color: #10B9C5;
  line-height: 100%;
  padding: 10px 0;
  border-radius: 2em;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.home .bar-filters .quicksearch-doclear {
  color: #656565;
  font-size: 12px;
}
.home .homeaddress {
  background: #D1D1D2;
  padding: 50px 0 30px 0;
}
.home .homeaddress h3 {
  color: #000;
  font-size: 40px;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.home .homeaddress ul {
  margin-bottom: 50px;
  padding: 0;
}
.home .homeaddress li {
  font-size: 18px;
  list-style-type: none;
  margin-bottom: 20px;
}
.home .homeaddress a.btn-home-info {
  background: #202879;
  color: #fff;
  display: block;
  margin-bottom: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  width: 290px;
}

.theme-default .widget_solutions .dd-box .radio-icon > .icons-coastal {
  color: #369982;
}
.theme-cool .widget_solutions .dd-box .radio-icon > .icons-coastal {
  color: #27A0FD;
}
.theme-fresh .widget_solutions .dd-box .radio-icon > .icons-coastal {
  color: #fd7939;
}
.theme-relaxed .widget_solutions .dd-box .radio-icon > .icons-coastal {
  color: #fdb83b;
}
.theme-custom .widget_solutions .dd-box .radio-icon > .icons-coastal {
  color: #369982;
}
.theme-default .widget_solutions .dd-box:hover > .radio-icon > a > .icons-coastal, .theme-default .widget_solutions .dd-box:hover .dd-title a {
  color: #AAD1C8;
}
.theme-cool .widget_solutions .dd-box:hover > .radio-icon > a > .icons-coastal, .theme-cool .widget_solutions .dd-box:hover .dd-title a {
  color: #2CCDFE;
}
.theme-fresh .widget_solutions .dd-box:hover > .radio-icon > a > .icons-coastal, .theme-fresh .widget_solutions .dd-box:hover .dd-title a {
  color: #1dc18e;
}
.theme-relaxed .widget_solutions .dd-box:hover > .radio-icon > a > .icons-coastal, .theme-relaxed .widget_solutions .dd-box:hover .dd-title a {
  color: #1983a8;
}
.theme-custom .widget_solutions .dd-box:hover > .radio-icon > a > .icons-coastal, .theme-custom .widget_solutions .dd-box:hover .dd-title a {
  color: #AAD1C8;
}

.cta-container {
  position: relative;
  overflow: hidden;
  height: 170px;
}
.cta-container img {
  display: block;
  height: 100%;
  max-width: none;
  width: 100%;
}
.cta-container .cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background: #363636;
  opacity: 0.9;
}
.cta-container .cta-btns {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cta-container .cta-btns .sep {
  margin: 0 15px;
  display: inline-block;
}

.home-features {
  padding: 80px 0;
  text-align: center;
}
.home-features .icons-coastal {
  margin: 0 auto;
}
.home-features ul {
  padding: 0;
}
.home-features li {
  font-size: 18px;
  list-style-type: none;
  padding-bottom: 18px;
  padding-top: 18px;
  text-transform: uppercase;
}
.home-features a {
  font-size: 18px;
  text-decoration: none;
  color: #000;
}
.home-features a:hover {
  text-decoration: underline;
}

.home-slider {
  padding-top: 70px;
}

.home-listing {
  padding: 50px 0;
}

#slideshow img {
  width: 100%;
  height: auto;
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.home-carousel {
  padding: 0;
  list-style: none;
}
.home-carousel .carousel-item {
  display: block;
  float: left;
  position: relative;
  margin: 0 15px;
  opacity: 0.5;
  -webkit-transition: opacity 0.5s ease-in-out;
  -ms-transition: opacity 0.5s ease-in-out;
  -o-transition: opacity 0.5s ease-in-out;
  -transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.home-carousel .carousel-item.slick-center {
  opacity: 1;
}
.home-carousel .carousel-item img {
  display: block;
  width: 100%;
}
.home-carousel .carousel-item .price {
  background: #369982;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px 15px;
}
.home-carousel .carousel-item .price .amount {
  font-size: 1.4em;
}
.home-carousel .carousel-item h3 {
  background: #fff;
  padding: 10px 15px;
  height: 70px;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  font-size: 16px;
  line-height: 1.6em;
}
.home-carousel .carousel-item h3 strong {
  display: block;
  font-weight: 400;
  font-size: 20px;
}
.home-carousel .carousel-item h3 a {
  color: #6B6A6A;
  text-decoration: none;
}
.home-carousel .carousel-item .btn-view {
  position: absolute;
  bottom: 0;
  right: 0;
  color: #fff;
  padding: 25px 15px;
  height: 70px;
  background-color: #3F4243;
}
.home-carousel .carousel-item .btn-view:after {
  content: "\2192";
  margin-left: 15px;
}
.home-carousel .carousel-item .btn-view:hover {
  text-decoration: none;
  background-color: #333536;
}
.home-carousel.single-item .carousel-item {
  opacity: 1;
  margin: 0 auto;
  float: none;
  width: 770px;
}

.slick-prev,
.slick-next {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  font-size: 20px;
  display: block;
  position: absolute;
  top: 220px;
  border: none;
}
.theme-default .slick-prev, .theme-default
.slick-next {
  background: rgba(54, 153, 130, 0.7);
}
.theme-default .slick-prev:hover, .theme-default
.slick-next:hover {
  background-color: #AAD1C8;
  text-decoration: none;
}
.theme-cool .slick-prev, .theme-cool
.slick-next {
  background: rgba(39, 160, 253, 0.7);
}
.theme-cool .slick-prev:hover, .theme-cool
.slick-next:hover {
  background-color: #2CCDFE;
  text-decoration: none;
}
.theme-fresh .slick-prev, .theme-fresh
.slick-next {
  background: rgba(253, 121, 57, 0.7);
}
.theme-fresh .slick-prev:hover, .theme-fresh
.slick-next:hover {
  background-color: #1dc18e;
  text-decoration: none;
}
.theme-relaxed .slick-prev, .theme-relaxed
.slick-next {
  background: rgba(253, 184, 59, 0.7);
}
.theme-relaxed .slick-prev:hover, .theme-relaxed
.slick-next:hover {
  background-color: #1983a8;
  text-decoration: none;
}
.theme-custom .slick-prev, .theme-custom
.slick-next {
  background: rgba(54, 153, 130, 0.7);
}
.theme-custom .slick-prev:hover, .theme-custom
.slick-next:hover {
  background-color: #AAD1C8;
  text-decoration: none;
}
.slick-prev:visited, .slick-prev:focus,
.slick-next:visited,
.slick-next:focus {
  color: #fff;
  text-decoration: none;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.slick-dots {
  text-align: center;
  padding: 50px 0 0;
  list-style: none;
}
.slick-dots li {
  display: inline-block;
}
.slick-dots button {
  border: 1px solid transparent;
  background: #82888a;
  border-radius: 50em;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin: 0 7px;
  cursor: pointer;
  color: transparent;
  outline: none;
}
.slick-dots button span {
  display: none;
}
.slick-dots button:hover {
  border-color: #82888a;
}
.slick-dots li.slick-active button {
  background-color: transparent;
  border-color: #82888a;
}

.getstarted-title {
  font-size: 1.125rem;
  font-family: 'Open Sans',serif;
  font-weight: 400;
  line-height: 1.90;
  margin-top: 0;
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.affiliations {
  background: #f9f9f9;
  text-align: center;
}
.affiliations .footer-badges {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.affiliations .footer-badges .widget-badge {
  text-align: center;
}

.hero-titles {
  color: #fff;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.61);
}
.hero-titles h1 {
  font-size: 3em;
}
.hero-titles p {
  font-size: 1.5em;
}

.map-container {
  position: relative;
}
.map-container iframe {
  display: none;
}

#prop-map {
  height: 800px;
}
#prop-map img {
  max-width: none;
}

.list-view-container {
  padding: 2em 0 0;
  margin: 0 -15px;
}

.showmore {
  margin-bottom: 2em;
}

.top-lister,
.nomore {
  margin-bottom: 15px;
  padding: 0.6em;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7e7;
  border-radius: 3px;
}
.top-lister .list-noresults,
.nomore .list-noresults {
  font-weight: 700;
  color: #565A5C;
}

.side-list {
  background: #fff;
  padding: 15px;
  overflow-y: scroll;
}
.side-list .handler {
  display: none;
  background: #fff;
  width: 45px;
  height: 45px;
  border: 1px solid #dce0e0;
  border-right: none;
  position: absolute;
  left: -45px;
  top: -1px;
  text-align: center;
  line-height: 45px;
  color: #369982;
}

.side-list-with-map {
  display: none;
}

.bar-filters {
  border-bottom: 1px solid #dce0e0;
  padding: 1em 15px;
  background-color: #3F4243;
}
.bar-filters .sep {
  color: #fff;
  text-align: center;
  display: block;
  padding: 10px 15px;
}
.bar-filters .form-group {
  padding: 0;
}
.bar-filters .form-group select.form-control {
  color: #e7e7e7;
  background-color: #3F4243;
  border-color: #3F4243;
  box-shadow: none;
}
.bar-filters .btn-group {
  padding: 13px 10px;
}
.bar-filters .template-switch {
  float: right;
}

#propertymap {
  width: 100%;
  height: 350px;
}

.property {
  margin-bottom: 2em;
}
.property .prop-map-item {
  position: absolute;
  display: none;
  left: 10px;
  top: 10px;
  background: rgba(255, 255, 255, 0.7);
  color: #6B6A6A;
  width: 28px;
  height: 28px;
  font-size: 1.4em;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
}
.property .prop-map-item span {
  display: none;
}
.theme-default .property .prop-map-item:hover {
  color: #369982;
}
.theme-cool .property .prop-map-item:hover {
  color: #27A0FD;
}
.theme-fresh .property .prop-map-item:hover {
  color: #fd7939;
}
.theme-relaxed .property .prop-map-item:hover {
  color: #fdb83b;
}
.theme-custom .property .prop-map-item:hover {
  color: #369982;
}
.property:hover .prop-map-item {
  background-color: #fff;
}
.property .inner {
  background: #fff;
  overflow: hidden;
  position: relative;
}
.property .image img {
  width: 100%;
}
.property .details {
  margin-top: -45px;
  position: relative;
  background: #fff;
}
.property .top {
  height: 45px;
}
.property .attributes {
  line-height: 45px;
  padding: 0 15px;
  float: left;
}
.property .attributes .fa-circle {
  font-size: 0.5em;
  position: relative;
  top: -2px;
  margin: 0 0.2em;
}
.property .price {
  float: right;
  font-size: 20px;
  font-weight: 700;
  line-height: 44px;
  padding: 0 15px;
  background: #369982;
  border-bottom: 1px solid #e5e7e7;
  color: #fff;
}
.property .name {
  padding: 15px 15px 0;
  min-height: 135px;
  display: none;
}
.property .name h3 {
  font-size: 16px;
  font-size: 1rem;
  margin: 0 0 0.4em;
}
.property .name address {
  font-size: 14px;
  margin-bottom: 0px;
}
.property .availability {
  line-height: 45px;
  font-size: 14px;
  font-weight: 700;
  float: left;
  padding: 0 15px;
  display: none;
}
.property .btn-view {
  line-height: 45px;
  background: #444;
  color: #fff;
  font-weight: 700;
  padding: 0 10px;
  text-align: center;
  display: block;
}
.property .btn-view:after {
  content: "\2192";
  margin-left: 15px;
}
.property .btn-view:hover {
  background-color: #373737;
  text-decoration: none;
}

.marker-infowindow .prop-image {
  width: 85px;
  float: left;
}
.marker-infowindow .prop-info {
  width: 85px;
  float: left;
  margin-left: 10px;
  line-height: 1.6em;
}
.marker-infowindow .prop-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.marker-infowindow .prop-price {
  font-weight: 600;
}
.theme-default .marker-infowindow .prop-price {
  color: #369982;
}
.theme-cool .marker-infowindow .prop-price {
  color: #27A0FD;
}
.theme-fresh .marker-infowindow .prop-price {
  color: #fd7939;
}
.theme-relaxed .marker-infowindow .prop-price {
  color: #fdb83b;
}
.theme-custom .marker-infowindow .prop-price {
  color: #369982;
}

.details-bar {
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 100px;
  position: relative;
}

.ppt-hero img {
  width: 100%;
}

.ppt-title {
  background: #fff;
}
.ppt-title h1 {
  color: #565A5C;
  font-size: 34px;
  margin: 0;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
}
.ppt-title address {
  font-size: 24px;
  margin: 0;
}

.ppt-overview {
  list-style: none;
  padding: 2em 0;
  margin: 0 -15px;
}
.ppt-overview li {
  font-size: 18px;
  margin-bottom: 0;
  border-top: 1px solid #DEDEDE;
  padding: 10px 15px;
}
.ppt-overview li h3 {
  color: #565A5C;
  font-size: 16px;
  margin: 0;
  float: left;
}
.ppt-overview li p {
  margin: 0;
  text-align: right;
}

.ppt-actions {
  padding: 2em 0;
  display: none;
}
.ppt-actions .btn-rounded {
  font-size: 14px;
}

.propertydetail-page .section {
  padding-top: 50px;
}
.propertydetail-page .section hr {
  margin-bottom: 0;
  margin-top: 50px;
}
.propertydetail-page .section.ppt-gallery {
  padding-top: 0;
}
.propertydetail-page .section:last-of-type hr {
  display: none;
}

.ppt-gallery ul {
  list-style: none;
  padding: 0;
}
.ppt-gallery ul li {
  width: 50%;
  float: left;
}
.ppt-gallery ul li.big {
  width: 50%;
}
.ppt-gallery ul li.last {
  width: 100%;
  position: relative;
  height: 180px;
  overflow: hidden;
}
.ppt-gallery ul img {
  width: 100%;
  height: auto;
  display: block;
}
.ppt-gallery ul:hover .over {
  opacity: 1;
}
.ppt-gallery .over {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  width: 90%;
  height: 90%;
  right: 5%;
  bottom: 5%;
  opacity: 0.8;
  color: #fff;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.ppt-gallery .over span {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  white-space: nowrap;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.modal-backdrop.in {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  background-color: #000;
}

.ekko-lightbox .modal-content {
  border: none;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
}
.ekko-lightbox .modal-header {
  border: 0;
}
.ekko-lightbox .modal-header .close {
  -webkit-opacity: 0.5;
  -moz-opacity: 0.5;
  opacity: 0.5;
  color: #fff;
  text-shadow: 0;
  font-weight: 100;
  margin-top: 5px;
}
.ekko-lightbox .modal-header .close:hover {
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.ekko-lightbox .modal-header h4.modal-title {
  font-weight: 100;
  color: #fff;
  padding: 0;
}
.ekko-lightbox .modal-footer {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  border: 0;
  color: #fff;
  font-weight: 100;
  padding: 0;
  text-align: center;
}
.ekko-lightbox .ekko-lightbox-container {
  text-align: center;
}
.ekko-lightbox .ekko-lightbox-container img {
  max-height: 750px;
  display: inline-block;
}

.ekko-lightbox-nav-overlay a {
  -webkit-opacity: 0.9;
  -moz-opacity: 0.9;
  opacity: 0.9;
  text-shadow: none;
}
.ekko-lightbox-nav-overlay a:active {
  text-decoration: none;
}

.ppt-info ul,
.ppt-amenities ul {
  padding: 0;
  list-style: none;
}
.ppt-info ul li,
.ppt-amenities ul li {
  color: #6B6A6A;
  padding-left: 1.3em;
  position: relative;
  line-height: 2.4em;
}
.ppt-info ul li:before,
.ppt-amenities ul li:before {
  content: "\2022";
  position: absolute;
  top: -2px;
  font-size: 20px;
  left: 0;
  color: #565A5C;
}

.ppt-directions ol {
  padding: 0;
  list-style-position: inside;
}

.ppt-contact li {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em;
  padding-bottom: 1em;
}
.ppt-contact li img {
  float: left;
  width: 60px;
  height: 60px;
  margin-right: 12px;
  border-radius: 50em;
}
.ppt-contact li .no-avatar {
  display: inline-block;
  float: left;
  width: 60px;
  height: 60px;
  margin-right: 12px;
  background-color: #6B6A6A;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  line-height: 60px;
  font-size: 28px;
  border-radius: 50em;
}
.ppt-contact li .contact-name {
  line-height: 1.7em;
}
.ppt-contact li .contact-phone {
  font-weight: 600;
}

.side-section {
  padding-top: 80px;
}

.about-services {
  text-align: center;
}
.about-services .icons-coastal {
  margin: 0 auto;
}

.page-hero img {
  width: 100%;
}
.page-hero .hero-overlay {
  opacity: 0.8;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: none;
}
.page-hero.no-img .hero-overlay {
  display: none;
}
.page-hero .over-hero {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about-services .services-container {
  margin: 0 auto;
  width: 90%;
}
.about-services .services-container .service {
  padding: 15px;
  background: #f9f9f9;
  border: 1px solid #e1e1e1;
  margin: 1%;
  width: 48%;
}
.about-services .services-container .dd-box {
  padding: 0;
  border: none;
}
.about-services .services-container .dd-box .dd-title {
  font-size: 1.15em;
  margin: 0;
  float: left;
  width: 70%;
  text-align: left;
}
.about-services .services-container .dd-box .dd-title a {
  text-decoration: none;
}
.about-services .services-container .dd-box .dd-content {
  margin: 0;
  float: left;
  width: 70%;
}
.about-services .services-container .dd-box .dd-content p {
  font-size: 0.90em;
  line-height: 150%;
  margin-left: 0;
  margin-bottom: 20px;
  text-align: left;
}
.about-services .services-container .dd-box .radio-icon {
  float: left;
  width: 30%;
  margin: 35px auto;
}
.about-services .services-container .dd-box .radio-icon a {
  text-decoration: none;
}
.about-services .services-container .dd-box .radio-icon a .icons-coastal {
  font-size: 48px;
  margin: 0 auto;
}
.about-services .services-container .dd-box .radio-icon a:hover .icons-coastal {
  font-size: 48px;
  margin: 0 auto;
}
.about-services .services-container .dd-box .radio-icon .icons-coastal {
  font-size: 48px;
  margin: 0 auto;
}

.dd-box {
  border-bottom: 1px solid #ccc;
  margin: 0 -15px;
  text-align: left;
}
.dd-box .dd-title {
  margin: 0;
  position: relative;
  padding: 15px 15px;
  cursor: pointer;
}
.dd-box .dd-title a {
  color: inherit;
  text-decoration: none;
}
.dd-box .dd-title span {
  display: block;
  position: absolute;
  right: 15px;
  top: 10px;
  background: #ccc;
  border-radius: 50em;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 10px;
  color: #fff;
}
.dd-box .dd-content {
  display: none;
  padding: 0 15px;
}
.dd-box .dd-content .icons-coastal {
  float: left;
}
.dd-box .dd-content p {
  margin: 0 0 0 65px;
}
.dd-box .radio-icon {
  float: left;
  margin-bottom: 6rem;
}
.dd-box .radio-icon a {
  text-decoration: none;
}
.dd-box.no-icon .dd-content p {
  margin: 0;
}
.dd-box:hover .radio-icon a {
  text-decoration: none;
}

.meet-team {
  margin: 0 0 40px;
}
.meet-team .widget_team {
  padding: 0 15px;
}
.meet-team .widget_team:nth-child(4n+5) {
  clear: both;
}
.meet-team .team-member {
  margin-bottom: 1em;
}
.meet-team .team-member img {
  display: block;
  width: 100%;
  margin-bottom: 1em;
}
.meet-team .name {
  font-size: 1.24em;
  margin: 0;
}
.meet-team .function {
  margin: 0 0 1em;
  color: #646464;
}
.meet-team .email {
  color: #646464;
  text-decoration: underline;
}
.meet-team .bio {
  margin: 0 0 1em;
  overflow: hidden;
}

address h3 {
  margin-bottom: 0.4em;
}

@media (max-width: 767px) {
  .about-services .services-container {
    margin: 0 auto;
    width: 100%;
  }
  .about-services .services-container .service {
    margin: 0 0 20px 0;
    width: 98%;
  }
  .about-services .services-container .dd-box {
    background: none;
    padding: 0;
    border: none;
  }
  .about-services .services-container .dd-box .dd-title {
    margin: 0;
    padding: 10px;
    float: none;
    width: 100%;
    text-align: center;
  }
  .about-services .services-container .dd-box .dd-content {
    display: block;
    float: none;
    width: 100%;
  }
  .about-services .services-container .dd-box .dd-content p {
    text-align: center;
  }
  .about-services .services-container .dd-box .radio-icon {
    float: none;
    width: 100%;
    margin: 10px auto;
  }
  .about-services .services-container .dd-box .radio-icon a {
    text-decoration: none;
  }
  .about-services .services-container .dd-box .radio-icon a .icons-coastal {
    font-size: 48px;
    margin: 0 auto;
  }

  .section {
    padding-top: 20px;
  }

  .page-hero h1 {
    font-size: 1.3rem;
    color: white;
  }
}
.blog-listing .container {
  margin-top: 40px;
}
.blog-listing .container .blog-listing-box {
  margin-bottom: 50px;
}
.blog-listing .container .blog-listing-box:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
/*--------------------
RESOURCES WIDGET
--------------------*/
.widget_resources > h3 {
  font-weight: normal;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (min-width: 320px) {
  .preheader {
    padding: 7px 0;
  }

  #site-navigation-mobile.main-navigation {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
  }
  #site-navigation-mobile.main-navigation .menu-toggle {
    height: 35px;
    font-size: 1.40em;
    width: 40px;
    margin-right: 10px;
  }

  #site-navigation-mobile.main-navigation.toggled {
    width: 100%;
  }

  #site-navigation {
    width: 100%;
  }
  #site-navigation .main-menu-container {
    padding: 0;
    width: 100%;
  }
  #site-navigation .main-menu-container .nav-menu {
    width: 100%;
  }

  .top-left {
    margin-bottom: 5px;
    text-align: center;
  }

  .header-social {
    padding: 0 35px;
  }
  .header-social li {
    margin-right: 0.25em;
    margin-top: 5px;
  }
  .header-social a {
    font-size: 1.3em;
  }

  .top-access {
    padding: 0;
  }
  .top-access a {
    font-size: 14px;
    padding: 3px 10px;
    margin-bottom: 5px;
    width: auto;
  }

  .site-branding {
    margin: 10px 0;
  }
  .site-branding img {
    max-height: 70px;
  }

  .top-right {
    float: none;
    text-align: center;
  }

  .top-menu {
    float: none;
    margin: 0;
    text-align: center;
  }
  .top-menu .telephone {
    font-size: 32px;
    margin: 0;
  }

  .home .page-hero.no-img {
    min-height: 60px;
  }
  .home .page-hero .over-hero {
    top: 15%;
    padding: 0;
  }
  .home .page-hero h1 {
    font-size: 1.5em;
    white-space: normal;
  }
  .home .page-hero p {
    font-size: 0.8em;
  }
  .home .widget_solutions .dd-box .radio-icon {
    height: 4em;
    padding: 0.40em 0;
    width: 4em;
  }
  .home .widget_solutions .dd-box .radio-icon a {
    text-decoration: none;
  }
  .home .widget_solutions .dd-title a {
    text-decoration: none;
  }

  .ppt-actions {
    display: block;
    text-align: center;
  }
  .ppt-actions > * {
    display: block;
  }
  .ppt-actions .sep {
    display: block;
    margin: 0.5em;
  }

  .form-getstarted {
    margin-top: 0;
    width: 100%;
  }
  .form-getstarted #bapi-getstartedform img {
    width: auto;
  }

  .home .siteoptions {
    padding: 15px 0;
    margin: 0 0 20px 0;
  }
  .home .siteoptions .optionitem a {
    font-size: 1.125em;
  }
  .home .siteoptions .optionitem .option-icon {
    font-size: 2.5em;
  }
  .home .widget_solutions .dd-box .dd-title {
    font-size: 1.125em;
    font-weight: bold;
    padding: 5px 0 10px 0;
  }
  .home .widget_solutions .dd-box .dd-title a {
    text-decoration: none;
  }
  .home .widget_solutions .dd-box .icons-coastal {
    display: block;
    font-size: 32px;
    height: auto;
    margin: 10px auto;
  }

  .home-features {
    padding: 20px 0;
  }

  .getstarted-title {
    text-align: center;
    text-shadow: 0 3px 7px rgba(0, 0, 0, 0.8);
  }

  .footer-badges img {
    max-height: 40px;
    margin: 0.5em 0 0.5em 0.5em 0;
    padding: 0 0.5em 0 0;
  }

  .footer-company {
    font-size: 0.9em;
    float: none;
    margin: 25px 0;
  }

  .site-bottom {
    margin-top: 0;
  }

  .site-footer .site-branding {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .preheader {
    padding: 15px 0;
  }

  .header-social {
    padding: 0;
    float: none;
    text-align: left;
    width: auto;
  }
  .header-social li {
    margin-right: 0.2em;
  }
  .header-social a {
    font-size: 1.3em;
  }

  .top-menu .telephone {
    font-size: 24px;
  }

  .site-branding {
    margin-top: 15px;
  }
  .site-branding img {
    max-height: 75px;
  }

  .top-right {
    float: right;
  }

  .top-access {
    padding: 0;
    text-align: center;
  }
  .top-access li {
    margin-left: 0;
  }
  .top-access a {
    font-size: 0.9em;
    padding: 0 10px;
    width: auto;
  }

  .main-menu-container {
    padding: 0;
  }

  .top-translate {
    margin: 0;
  }

  .getstarted-title {
    font-size: 0.70em;
    text-align: right;
  }

  .form-getstarted {
    margin-top: 0;
    padding: 10px 20px;
    position: absolute;
    bottom: 0;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-control {
    font-size: 12px;
    height: 30px;
    max-width: 88px;
  }

  .page-template-contact-page .form-control {
    max-width: 100%;
  }

  .getstarted-form-container {
    height: auto;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }
  .getstarted-form-container .alert {
    position: absolute;
    margin-bottom: 0;
    margin-top: -4em;
    left: 0;
    top: 0;
    padding: 5px;
    font-size: 14px;
  }

  .site-footer .site-branding {
    text-align: left;
  }

  .footer-links h3 {
    margin-bottom: 1.2em;
  }
  .footer-links ul {
    margin-bottom: 0;
  }

  .site-bottom .copy {
    float: left;
  }
  .site-bottom .powered {
    float: right;
  }

  .footer-widget.widget_text {
    width: 750px;
  }

  .footer-badges img {
    max-height: 48px;
    margin: 1.5em 0 1.5em 1.5em 0;
    padding: 0 1.5em 0 0;
  }

  .home .widget_solutions .dd-box {
    background: none;
  }
  .home .widget_solutions .dd-box .dd-title {
    font-size: 1em;
    padding: 10px 0;
  }
  .home .widget_solutions .dd-box > .icons-coastal {
    display: inline;
  }
  .home .widget_solutions .dd-box .radio-icon {
    height: 5.5em;
    padding: 0.9em 0;
    width: 5.5em;
  }
  .home .widget_solutions .dd-box .radio-icon .icons-coastal {
    font-size: 40px;
  }
  .home .siteoptions {
    background: rgba(94, 147, 135, 0.9);
    margin: 0;
    padding: 0;
  }
  .home .siteoptions .optionitem a {
    font-size: 1.125em;
  }
  .home .siteoptions .optionitem .option-icon {
    font-size: 2.5em;
  }
  .home .page-hero .over-hero {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .home .page-hero h1 {
    font-size: 1.5em;
  }

  .bar-filters .field-location {
    width: 300px;
  }
  .bar-filters .field-amount .input-group {
    width: 80px;
    display: inline-table;
    vertical-align: middle;
  }
  .bar-filters .form-group {
    padding: 13px 10px;
  }
  .bar-filters .sep {
    display: inline-block;
    padding: 0;
  }

  .map-container {
    margin-right: 625px;
  }
  .map-container iframe {
    display: block;
  }

  .side-list {
    width: 615px;
    border-left: 1px solid #dce0e0;
    float: right;
    right: 0;
    top: 0;
    height: 800px;
    margin-right: 10px;
  }
  .side-list .handler {
    display: block;
  }

  .side-list-with-map {
    display: block;
  }

  .property {
    margin-bottom: 15px;
  }
  .property .inner {
    border: 1px solid #e5e7e7;
    border-radius: 3px;
  }
  .property .image {
    width: 35%;
    float: left;
  }
  .property .details {
    float: left;
    width: 65%;
    margin-top: 0;
    position: static;
  }
  .property .top {
    border-bottom: 1px solid #e5e7e7;
  }
  .property .price {
    background-color: #fff;
    border-left: 1px solid #e5e7e7;
    color: #fff;
  }
  .property .name {
    display: block;
  }
  .property .bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 45px;
    border-top: 1px solid #e5e7e7;
    width: 65%;
  }
  .property .availability {
    display: block;
  }
  .property .btn-view {
    float: right;
    border-left: 1px solid #e5e7e7;
  }

  .ppt-overview {
    margin: 0;
  }
  .ppt-overview li {
    width: 20%;
    float: left;
    border-top: none;
    padding: 0;
  }
  .ppt-overview li h3 {
    float: none;
  }
  .ppt-overview li p {
    margin-bottom: 0.8em;
    text-align: left;
  }
  .ppt-overview.rent-sale li {
    width: auto;
    margin-right: 2em;
  }

  .ppt-actions {
    display: block;
    text-align: center;
  }
  .ppt-actions > * {
    display: inline;
  }
  .ppt-actions .sep {
    display: block;
    margin: 0.5em;
  }

  .ppt-gallery ul li {
    width: 33.33%;
  }
  .ppt-gallery ul li.big {
    width: 50%;
  }
  .ppt-gallery ul li.last {
    width: 33.33%;
    height: auto;
  }

  .ppt-info ul {
    zoom: 1;
  }
  .ppt-info ul:before, .ppt-info ul:after {
    content: "";
    display: table;
  }
  .ppt-info ul:after {
    clear: both;
  }

  .home-features {
    text-align: left;
  }
  .home-features .icons-coastal {
    margin: 0;
  }

  .about-services {
    text-align: left;
  }
  .about-services .icons-coastal {
    margin: 0;
  }

  .services-container {
    margin: 0 auto;
    width: 80%;
  }
  .services-container .service {
    width: 50%;
    float: left;
  }

  .dd-box {
    background: none;
    margin: 0;
    padding: 15px 0 5px;
  }
  .dd-box .dd-title {
    margin-left: 65px;
    cursor: default;
  }
  .dd-box .dd-title span {
    display: none;
  }
  .dd-box .dd-content {
    display: block;
  }
  .dd-box .dd-content .icons-coastal {
    margin-top: -35px;
  }
  .dd-box.no-icon .dd-title {
    margin-left: 0;
  }
  .dd-box.no-title .icons-coastal {
    margin-top: 0;
  }
  .dd-box:hover a {
    color: #fff;
  }

  .meet-team .widget_team {
    width: 25%;
    float: left;
  }
}
@media (min-width: 992px) {
  .header-social li {
    margin-right: 0.4em;
  }
  .header-social a {
    font-size: 1.4em;
  }

  .top-menu .telephone {
    font-size: 1.715em;
  }

  .top-access {
    padding: 0;
    text-align: center;
  }
  .top-access li {
    margin-left: 0;
  }
  .top-access a {
    font-size: 1.125em;
    padding: 0 15px;
    width: auto;
  }

  .form-getstarted {
    padding: 10px 20px;
    margin-top: 0;
  }
  .form-getstarted .btn-close {
    top: 10px;
    right: 20px;
    width: auto;
    height: auto;
    font-size: 1.2rem;
  }
  .form-getstarted .btn-close strong {
    display: inline-block;
    font-weight: 400;
  }

  .getstarted-title {
    font-size: 0.85em;
    font-weight: bold;
  }

  .getstarted-form-container {
    height: auto;
    padding: 0.5em;
  }
  .getstarted-form-container .alert {
    position: absolute;
    margin-bottom: 0;
    margin-top: -4em;
    left: 0;
    top: 0;
    padding: 5px;
    font-size: 14px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-control {
    height: 30px;
    font-size: 14px;
    min-width: 120px;
  }

  .get-started-container {
    float: right;
    position: static;
    width: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .get-started-container .btn {
    display: inline-block;
    width: auto;
    border-radius: 50em;
  }

  .main-menu-container {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .main-navigation {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-navigation ul#primary-menu {
    display: block;
    background: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .main-navigation ul#primary-menu ul {
    display: none;
    border-top: none;
    float: left;
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 99999;
    text-align: center;
  }
  .main-navigation ul#primary-menu ul li {
    font-style: normal;
    padding: 0;
    margin: 0 auto;
  }
  .main-navigation ul#primary-menu ul a {
    display: block;
    width: 100%;
    padding: 10px 15px !important;
    text-align: left;
  }
  .main-navigation ul#primary-menu li:hover > ul,
  .main-navigation ul#primary-menu li.focus > ul {
    display: block;
  }
  .main-navigation ul#primary-menu li:hover > ul a,
  .main-navigation ul#primary-menu li.focus > ul a {
    font-size: 0.9em;
  }
  .main-navigation ul#primary-menu li:hover > ul li:hover > ul,
  .main-navigation ul#primary-menu li:hover > ul li.focus > ul,
  .main-navigation ul#primary-menu li.focus > ul li:hover > ul,
  .main-navigation ul#primary-menu li.focus > ul li.focus > ul {
    left: 100%;
    top: 0;
  }
  .main-navigation li {
    float: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    border-bottom: none;
  }

  .menu-toggle {
    display: none;
  }

  .center-menu {
    padding: 10px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .site-branding {
    margin-top: 20px;
    margin-bottom: 10px;
    margin-right: auto;
    margin-left: auto;
    max-height: none;
    padding: 0;
    display: block;
  }
  .site-branding img {
    max-height: none;
  }

  .footer-widget.widget_text {
    width: 970px;
  }

  .footer-badges img {
    max-height: 56px;
  }

  .footer-company {
    font-size: 1.05em;
    float: none;
    margin: 25px 0;
  }

  .site {
    padding-top: 0;
  }

  .page-hero h1 {
    white-space: nowrap;
  }
  .page-hero .hero-btns {
    padding-bottom: 0;
  }
  .page-hero .hero-overlay {
    display: block;
  }

  .home .widget_solutions .dd-box {
    padding: 15px 0 5px 0;
  }
  .home .widget_solutions .dd-box .radio-icon {
    height: 6.5em;
    padding: 1.85em 0;
    width: 6.5em;
  }
  .home .widget_solutions .dd-box .radio-icon .icons-coastal {
    font-size: 50px;
    margin: 0 auto;
    width: auto;
    background: none;
  }
  .home .siteoptions {
    background: rgba(94, 147, 135, 0.9);
    margin: 0;
    padding: 0;
  }
  .home .siteoptions .optionitem a {
    font-size: 1.125em;
  }
  .home .siteoptions .optionitem .option-icon {
    font-size: 2.5em;
  }
  .home .page-hero h1 {
    font-size: 2em;
  }

  .list-view-container .property {
    width: 50%;
    float: left;
    padding: 0 15px;
  }

  .bar-filters {
    padding: 0;
  }
  .bar-filters .form-group {
    border-right: 1px solid #4f4f4f;
    padding: 10px;
  }

  .ppt-title {
    position: absolute;
    padding: 25px 35px 0;
    bottom: 185px;
    margin-left: -35px;
  }

  .ppt-info ul li,
  .ppt-amenities ul li {
    width: 33.33%;
    float: left;
  }

  .page-hero {
    color: #fff;
  }
  .page-hero .over-hero {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .page-hero .hero-btns .sep {
    margin: 0 15px;
    display: inline-block;
  }
  .page-hero h1 {
    text-shadow: 0 0 15px #000;
  }
  .page-hero p {
    text-shadow: 0 0 15px #000;
  }

  .meet-team ul li {
    float: left;
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .main-navigation li {
    padding: 0px;
    margin: 0 auto;
  }

  .footer-widget.widget_text {
    width: 1170px;
  }

  .ppt-title {
    bottom: 110px;
  }

  .ppt-actions {
    text-align: center;
  }
  .ppt-actions .sep {
    display: inline-block;
  }

  .top-access a {
    font-size: 1.125em;
  }

  .top-menu .telephone {
    font-size: 24px;
    font-weight: bold;
  }

  .header-social a {
    font-size: 1.8em;
  }

  .home .siteoptions {
    background: rgba(94, 147, 135, 0.9);
    bottom: 0;
    width: 100%;
  }
  .home .siteoptions .optionitem a {
    font-size: 24px;
  }
  .home .siteoptions .optionitem .option-icon {
    font-size: 3em;
    margin: 20px auto;
  }
  .home .widget_solutions .dd-box .dd-title {
    font-size: 1.125em;
    margin-bottom: 5px;
    margin-top: 5px;
  }
  .home .widget_solutions .dd-box .dd-title a {
    text-decoration: none;
  }
  .home .widget_solutions .dd-box .radio-icon {
    padding: 1.85em 0;
  }
  .home .widget_solutions .dd-box .radio-icon .icons-coastal {
    font-size: 50px;
    margin: 0 auto;
    width: 100%;
  }
  .home .widget_solutions .dd-box .icons-coastal {
    display: inline-block;
    font-size: 4em;
    margin: 0;
    line-height: 100%;
  }
  .home .page-hero h1 {
    font-size: 40px;
  }

  .footer-badges img {
    max-height: 61px;
  }

  .top-translate {
    margin: 35px 0 0 0;
  }

  .form-getstarted {
    color: #fff;
    bottom: 0;
    margin-right: 0;
    margin-top: 0;
    position: absolute;
    padding: 10px 20px;
    text-align: left;
    z-index: 1;
  }

  .getstarted-title {
    font-size: 1.125em;
  }

  .getstarted-form-container {
    height: auto;
    padding: 0.5em;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-control {
    height: 35px;
    max-width: 150px;
  }

  .get-started-container {
    float: right;
    position: static;
    width: auto;
    margin-left: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .get-started-container .btn {
    display: inline-block;
    width: auto;
    border-radius: 50em;
  }

  .footer-company {
    font-size: 1rem;
    float: none;
    margin: 25px 0;
  }
}
@media (min-width: 1367px) {
  .form-control {
    height: 35px;
    max-width: 100%;
  }
}
