/*
Theme Name: Tami Pierce
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.5.8
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/

/*

TABLE OF CONTENTS

1. Custom CSS
2. IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/

/*******************************************************
*
* 1. Navigation
*
*******************************************************/

/* Sub Menu */

#nav li {
  position: relative;
  display: inline-block;
  padding: 0 6px;
  font-size: 0;
}

#nav li a {
  display: inline-block;
  text-align: center;
  font: 400 15px "Karla", sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#nav li:hover a {
  font-weight: 700;
  color: #6ec7d8;
}

#nav a:before {
  display: block;
  content: attr(data-title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

#nav .sub-menu {
  list-style: none outside none;
  margin: 0;
  padding: 0;
  position: absolute;
  width: 100%;
  min-width: 180px;
  /* top: -100%;
    opacity: 0;
    visibility: hidden; */
  margin-left: -90px;
  left: 50%;
  padding-top: 10px;
  display: none;
  /* -webkit-transition: visibility .3s, opacity 0.3s ease-in-out, top 0.3s;
    -moz-transition: visibility .3s, opacity 0.3s ease-in-out, top 0.3s;
    transition: visibility .3s, opacity 0.3s ease-in-out, top 0.3s; */
}

#nav .sub-menu a {
  color: #ffffff;
  display: block;
  padding: 10px 0;
}

#nav .sub-menu a:hover {
  text-decoration: none;
  color: #f3fd11;
  font-weight: 400;
}

#nav .sub-menu .sub-menu {
  margin-left: 100%;
  top: 0;
}

#nav li:hover > .sub-menu {
  display: block;
  /* top: 0;
    opacity: 1;
    visibility: visible; */
}

#nav .sub-menu li {
  position: relative;
  padding: 0 5px;
  display: block;
  width: 100%;
  margin-bottom: 1px;
  background-color: #079cad;
}

/*******************************************************
*
* 2. Custom CSS
*
*******************************************************/

/* Global */

@font-face {
  font-family: "Allison Script";
  src: url("./assets/font/Allison_Script.otf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Karla", Arial, Helvetica, Georgia, Sans-serif;
  font-size: 15px;
  line-height: 24px;
  background: #fff;
  color: #666666;
  margin: 0;
  border: 20px solid #fff;
  border-bottom: 0;
  /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Typography */

.section-title {
  font: 100px "Fjalla One";
  color: #373737;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0;
  letter-spacing: -3px;
  position: relative;
}

h2.section-title:before {
  content: "";
  width: 100%;
  height: 6px;
  background-color: #f0f0f0;
  position: absolute;
  left: -100%;
  top: 38%;
  bottom: 0;
  margin: auto;
  z-index: 1;
}

.section-title span {
  font: 70px "Allison Script";
  display: block;
  margin-left: -40px;
  text-transform: capitalize;
  letter-spacing: 0;
}

p {
  font-size: 15px;
  line-height: 24px;
  color: #666666;
  margin-bottom: 20px;
  display: block;
}

/* Buttons */

a.primary-btn {
  color: #373737;
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 20px 30px;
  border: 2px solid #e5e5e7;
  background-color: #ffffff;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.primary-btn:before {
  content: "";
  width: 62px;
  border-bottom: 2px solid #373737;
  margin-top: 5px;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a.primary-btn:hover {
  background-color: #373737;
  border-color: #373737;
  color: #ffffff;
}

a.primary-btn:hover:before {
  width: 100%;
}

/* Sidebar pagination */

.sidebar-navigation {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 999;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column wrap;
  mix-blend-mode: difference;
}

.sidebar-navigation ul {
  position: relative;
  padding-bottom: 120px;
}

.sidebar-navigation ul li a {
  width: 10px;
  height: 10px;
  background-color: #ffffff;
  font-size: 0;
  display: block;
  margin: 10px 0;
  border-radius: 50%;
}

.sidebar-navigation ul li a.active {
  background-color: #f3fd11;
}

.sidebar-navigation h3 {
  color: #fff;
  -webkit-transform: rotate(-90deg) translateY(-50px);
  -moz-ransform: rotate(-90deg) translateY(-50px);
  transform: rotate(-90deg) translateY(-50px);
  text-transform: uppercase;
  position: relative;
  display: block;
  white-space: nowrap;
  width: 110px;
}

.sidebar-navigation h3:after {
  content: "";
  width: 80px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  margin: auto;
}

/* Header */

#header-wrapper {
  width: calc(100% - 40px);
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1000;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-container {
  position: relative;
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: flex-start;
  padding: 20px 0;
}

.nav-container #nav {
  font-size: 0;
}

.header .logo {
  flex-basis: 12%;
}

.header .logo img {
  width: 100%;
  max-width: 180px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-basis: 32%;
}

.header-contact .textwidget {
  display: flex;
  align-items: center;
}

.header-contact .contact-info {
  display: flex;
  flex-flow: column wrap;
  align-items: flex-end;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 15px;
}

.header-contact .contact-info a {
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 14px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header-contact .contact-info a > i {
  color: #f3fd11;
  margin-right: 10px;
}

.header-contact .contact-info a:hover {
  color: #12e6f1;
}

.social-media a {
  color: #fff;
  font-size: 20px;
  margin-left: 12px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-media a:hover {
  color: #12e6f1;
}

nav.navigation {
  flex-basis: calc(100% - 44%);
  padding-left: 15px;
  margin-top: 30px;
}

.header .producer-logo {
  display: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* Fixed header */

#header-wrapper.is-fixed {
  position: fixed;
  background-color: rgba(55, 55, 55, 0.9);
  margin: 0 auto;
  width: calc(100% - 40px);
  left: 0;
  right: 0;
  top: 0;
}

#header-wrapper.is-fixed .nav-container {
  padding: 0 15px;
}

#header-wrapper.is-fixed nav.navigation {
  flex-basis: calc(100% - 47%);
}

#header-wrapper.is-fixed #nav li a {
  font-size: 14px;
}

#header-wrapper.is-fixed .logo {
  max-width: 95px;
}

#header-wrapper.is-fixed .header-contact {
  flex-basis: 38%;
}

#header-wrapper.is-fixed .producer-logo {
  display: block;
  max-width: 55px;
  margin-left: 20px;
}

#header-wrapper.is-fixed .producer-logo img {
  width: 100%;
  height: 100%;
  display: block;
}

#header-wrapper.is-fixed #nav li {
  padding: 0 4px;
}

/* Slideshow */

#slideshow-wrapper {
  position: relative;
}

.slideshow-content {
  position: absolute;
  bottom: 55px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.slideshow-content .producer-content {
  display: flex;
  align-items: flex-end;
  padding-left: 32px;
}

.slideshow-content .producer-content .producer-copy {
  background: rgb(250, 254, 9);
  background: linear-gradient(
    90deg,
    rgba(250, 254, 9, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(8, 230, 251, 1) 100%
  );
  padding: 20px 25px;
}

.slideshow-content .producer-content img {
  max-width: 100px;
}

.slideshow-content .producer-content .producer-copy p {
  font: 30px/35px "Fjalla One";
  text-transform: uppercase;
  color: #373737;
  margin-bottom: 0;
}

.slideshow-content .signature {
  padding-right: 60px;
}

.slideshow-content .signature img {
  max-width: 300px;
}

/* Welcome */

#welcome-wrapper {
  position: relative;
  padding: 80px 0 100px;
}

#welcome-wrapper:after {
  content: "";
  width: 22px;
  height: 100%;
  position: absolute;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(250, 254, 9, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(8, 230, 251, 1) 100%
  );
  right: 0;
  top: 0;
  z-index: -1;
}

.welcome-bg {
  width: 100%;
  height: 100%;
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  filter: grayscale(1);
}

.welcome-bg:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 45%,
    rgba(255, 255, 255, 0.85) 100%
  );
  position: absolute;
  top: 0;
  left: 0;
}

.welcome-container {
  position: relative;
  max-width: 82%;
  margin: auto;
  display: flex;
  align-items: flex-start;
}

.welcome-content {
  flex-basis: 100%;
}

#content .welcome-content .section-title {
  font-family: 'Fjalla One';
  font-size: 120px;
  letter-spacing: -0.025em;
  color: #373737;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
}

.welcome-content .section-title:before {
  width: 15%;
  left: -15%;
}

.welcome-copy {
  margin-top: 10px;
  max-width: 40%;
}

.welcome-image {
  flex-basis: 60%;
  width: 60%;
  min-height: 750px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  position: absolute;
  right: -50px;
  top: 40px;
  z-index: -1;
}

/* Features Listings */

#fp-listing-wrapper {
  position: relative;
  padding-top: 100px;
  padding-bottom: 130px;
  background-color: #fff;
  overflow: hidden;
}

.fp-listing-container {
  max-width: 100%;
  margin: auto;
}

.fp-title {
  width: 43%;
  margin: 0 0 55px auto;
}

.fp-title .section-title:before {
  left: auto;
  right: -20px;
  width: 42%;
}

.fp-slider .slick-list {
  overflow: inherit;
}

.fp-row {
  position: relative;
  display: flex;
}

.fp-row-1 {
  padding-top: 60px;
}

.fp-items {
  position: relative;
  z-index: 1;
}

a.fp-item {
  display: block;
  position: relative;
  height: auto;
  z-index: 1;
  outline: none;
}

a.fp-item.fp-item-1 {
  width: 43%;
  padding-left: 50px;
  top: -205px;
}

a.fp-item.fp-item-1:before {
  content: "";
  width: 100%;
  height: 85%;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(8, 230, 251, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(250, 254, 9, 1) 100%
  );
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: -1;
}

a.fp-item.fp-item-2 {
  width: 60%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
}

a.fp-item.fp-item-3 {
  width: 60%;
}

a.fp-item.fp-item-4 {
  padding-right: 50px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: 80px;
  width: 43%;
}

a.fp-item.fp-item-4:before {
  content: "";
  width: 100%;
  height: 85%;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(8, 230, 251, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(250, 254, 9, 1) 100%
  );
  position: absolute;
  bottom: -50px;
  right: 0;
  z-index: -1;
}

a.fp-item .image-holder {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

a.fp-item .image-holder canvas {
  width: 100%;
  height: auto;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fp-details {
  position: absolute;
  bottom: -205px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 360px;
  background-color: rgba(55, 55, 55, 0.9);
  margin: auto;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  padding: 25px 40px;
  -webkit-transition: bottom 0.3s ease-in-out;
  -moz-transition: bottom 0.3s ease-in-out;
  transition: bottom 0.3s ease-in-out;
}

.fp-details span.fp-price {
  font: 30px/24px "Fjalla One";
  color: #fff;
}

.fp-details span.fp-address {
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  display: block;
  margin-top: 30px;
}

.fp-details span.fp-specs {
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  color: #fff;
  display: block;
  margin-top: 40px;
}

.fp-details span.fp-btn.primary-btn {
  display: inline-block;
  font-size: 15px;
  line-height: 24px;
  background-color: #373737;
  color: #fff;
  text-transform: uppercase;
  padding: 20px 25px;
  margin-top: 60px;
  position: relative;
}

.fp-details span.fp-btn.primary-btn:after {
  content: "";
  width: 100%;
  height: 1px;
  border: 1px solid #373737;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 3;
}

a.fp-item:hover .fp-details {
  bottom: 0;
  height: calc(100% - 64px);
  max-width: calc(100% - 64px);
  flex-flow: column wrap;
  opacity: 1;
  background: linear-gradient(
    0,
    rgba(8, 230, 251, 0.85) 0%,
    rgba(156, 245, 103, 0.85) 50%,
    rgba(250, 254, 9, 0.85) 100%
  );
  top: 0;
}

.fp-btns {
  display: flex;
  align-items: center;
  width: 50%;
  justify-content: center;
  margin-top: 78px;
}

.fp-slide-btns {
  display: flex;
  align-items: center;
  margin-left: 70px;
}

.fp-btns .fp-prev,
.fp-btns .fp-next {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
  display: block;
  border-bottom: 2px solid #373737;
  cursor: pointer;
  margin: 0 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.fp-btns .fp-prev {
  background-image: url("./assets/images/prev-btn.png");
}

.fp-btns .fp-prev:hover {
  background-image: url("./assets/images/testi-prev.png");
  background-color: #373737;
}

.fp-btns .fp-next {
  background-image: url("./assets/images/next-btn.png");
}

.fp-btns .fp-next:hover {
  background-image: url("./assets/images/testi-next.png");
  background-color: #373737;
}

/* Quick Search */

#qs-wrapper {
  position: relative;
}

.qs-container {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 5;
  padding-top: 115px;
  padding-bottom: 60px;
}

.qs-container:before,
.qs-container:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  z-index: -1;
}

.qs-container:before {
  top: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0,
    rgba(255, 255, 255, 0) 50%
  );
}

.qs-container:after {
  bottom: 0;
  background-position: bottom center;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 1) 0,
    rgba(255, 255, 255, 0) 50%
  );
}

.qs-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.qs-bg:before,
.qs-bg:after {
  content: "";
  width: 100%;
  position: absolute;
  background-image: url("./assets/images/qs-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  left: 0;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  filter: grayscale(1);
}

.qs-bg:before {
  top: 0;
  height: 115px;
  background-position: top center;
}

.qs-bg:after {
  bottom: 0;
  height: 60px;
  background-position: bottom center;
}

.qs-title {
  width: 36%;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(8, 230, 251, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(250, 254, 9, 1) 100%
  );
  display: flex;
  align-items: center;

    min-height: 334px;
}

.qs-title h2 {
  color: #ffffff;
  padding: 0 23%;
}

.qs-title h2:before {
  background-color: #a5ee97;
  left: -80%;
  z-index: 5;
}

.qs-form {
    width: calc(100% - 36%);
    position: relative;
    background-color: rgba(55, 55, 55, 0.9);
    padding: 67px 118px;
    min-height: 334px;
    display: flex;
    align-items: center;
}

.new-qs-form {
    width: 100%;
}


.qs-form form {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-end;
}

.qs-field {
  width: 25%;
  margin-bottom: 50px;
  padding: 0 14px;
  position: relative;
}

.qs-field label {
  display: none;
}

.qs-field:nth-child(2),
.qs-field:nth-child(5) {
  padding-right: 10px;
}

.qs-field:nth-child(3),
.qs-field:nth-child(6) {
  padding-left: 10px;
}

.qs-field.is-half {
  width: 50%;
}

.qs-field input,
.qs-field select {
  width: 100%;
  padding: 10px 0 20px;
  border: 0;
  border-bottom: 1px solid #8a8a8a;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  background-color: transparent;
  outline: none;
  letter-spacing: 1px;
  -webkit-appearance: none;
  appearance: none;
}

.qs-select.is-half {
  width: 50%;
  display: flex;
  align-items: center;
}

.qs-select .qs-field {
  width: 100%;
  margin-bottom: 0;
}

.qs-select .qs-field:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8a8a8a;
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.qs-form .qs-field.range .irs {
  height: auto;
  top: 0;
}

.qs-form .qs-field.range .irs-line {
  top: 0;
  height: 1px;
  border: none;
  background: #666666;
}

.qs-form .qs-field.range .irs-min,
.qs-form .qs-field.range .irs-max,
.qs-form .qs-field.range .irs-single {
  display: none;
}

.qs-form .qs-field.range .irs-bar {
  top: 0;
  height: 100%;
  background: transparent;
}

.qs-form .qs-field.range .irs-handle {
  top: calc(50% - 8px);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e5ec12;
  cursor: pointer;
}

.qs-form .qs-field.range .irs-from {
  left: 0 !important;
  visibility: visible !important;
}

.qs-form .qs-field.range .irs-to {
  left: auto !important;
  right: 0 !important;
  visibility: visible !important;
}

.qs-form .qs-field.range .irs-from,
.qs-form .qs-field.range .irs-to {
  top: -31px;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  color: #fff;
  background: transparent;
  padding: 0;
}

.qs-form .qs-field.range .irs--flat .irs-from:before,
.qs-form .qs-field.range .irs--flat .irs-to:before,
.qs-form .qs-field.range .irs--flat .irs-single:before,
.qs-form .qs-field.range .irs--flat .irs-handle > i:first-child {
  display: none;
}

.qs-form .qs-field.range .irs-to::after {
  content: " +";
}

.qs-field.qs-btns {
  display: flex;
  position: relative;
  margin-bottom: 0;
  align-items: flex-end;
}

.qs-submit-btn {
  margin-right: 12px;
  display: flex;
  width: 50%;
}

.qs-adv-btn {
  width: 50%;
  margin-left: 12px;
}

.qs-adv-btn a.primary-btn {
  position: relative;
  width: 100%;
  height: 55px;
  padding: 5px;
  line-height: 45px;
  font-size: 15px;
  display: block;
  background-color: transparent;
  text-align: center;
  color: #ffffff;
  border-color: #8a8a8a;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.qs-adv-btn a:before,
.qs-submit-btn button:before {
  content: "";
  width: 62px;
  border-bottom: 2px solid #e5e5e5;
  margin-top: 5px;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.qs-adv-btn a:hover {
  background-color: #fff;
  color: #373737;
  border-color: #ffffff;
}

.qs-adv-btn a:hover:before,
.qs-submit-btn button:hover:before {
  width: 100%;
}

.qs-submit-btn button {
  width: 100%;
  height: 55px;
  background-color: transparent;
  text-align: center;
  color: #ffffff;
  border: 2px solid #8a8a8a;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.qs-submit-btn button:hover {
  background-color: #fff;
  color: #373737;
  border-color: #ffffff;
}

/* CTA */

#cta-wrapper {
  position: relative;
  padding: 75px 0;
  background-color: #ffffff;
}

.cta-container {
  position: relative;
  max-width: 86%;
  margin: auto;
}

.cta-items {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-left: -4px;
  margin-right: -4px;
  /* flex-wrap: wrap; */
}

.cta-item {
  margin: 0 4px;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  /* width: calc((100% / 3) - 8px); */
}

.cta-item:nth-child(even) {
  margin-top: 90px;
}

.cta-item:first-child:before {
  content: "";
  width: calc(100% + 50px);
  height: 85%;
  position: absolute;
  left: -50px;
  bottom: -50px;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(8, 230, 251, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(250, 254, 9, 1) 100%
  );
}

.cta-item:last-child:before {
  content: "";
  width: 87%;
  height: calc(100% + 50px);
  position: absolute;
  right: -50px;
  bottom: -50px;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(8, 230, 251, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(250, 254, 9, 1) 100%
  );
}

.cta-item .image-holder {
  position: relative;
  width: 100%;
  height: 100%;
}

.cta-item .image-holder:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(55, 55, 55, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.cta-item .image-holder img {
  width: 100%;
  height: 100%;
  display: block;
}

a.cta-item:hover .image-holder:after {
  background: linear-gradient(
    0,
    rgba(8, 230, 251, 0.75) 0%,
    rgba(156, 245, 103, 0.75) 50%,
    rgba(250, 254, 9, 0.75) 100%
  );
}

.cta-item .cta-details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 15px;
  justify-content: center;
  flex-direction: column;


}

.cta-item .cta-details h3 {
  font: 25px/24px "Fjalla One", sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.cta-item .cta-details a {
    font: 13px "Fjalla One", sans-serif;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    margin: 15px 0 5px;
    position: relative;
    width: 65%;
    padding: 8px;
    border-top: 1px solid #f4fe0f;
    border-bottom: 1px solid #0de6f5;
    background: rgba(0,0,0,0.5);
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cta-item .cta-details a span {
    position: relative;
    z-index: 2;
}

.cta-item .cta-details a::before,
.cta-item .cta-details a::after{
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    top: 0;
    background: linear-gradient( 0, rgba(8, 230, 251, 1) 0%, rgba(156, 245, 103, 1) 50%, rgba(250, 254, 9, 1) 100% );

    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.cta-item .cta-details a::before{
  left: 0;
}

.cta-item .cta-details a::after{
  right: 0;
}

.cta-item .cta-details a:hover{
  background: transparent;
}

.cta-item .cta-details a:hover span{
  color: #000;
}

.cta-item .cta-details a:hover::before{
  width: 100%;
}

.cta-item .cta-details a:hover::after{
  width: 0;
}

.cta-item .cta-details a:last-child {
    margin-top: 5px;
}

/* Neighborhoods */

#neighborhoods-wrapper {
  position: relative;
  padding: 60px 0 0;
  background-color: #ffffff;
}

.neighborhoods-container {
  position: relative;
  width: 100%;
}

.neighborhoods-container .section-title {
  text-align: center;
}

.neighborhoods-container .section-title:before {
  left: auto;
  width: 27%;
  right: -20px;
}

.neighborhoods-container .section-title span {
  margin-left: -35%;
}

.neighborhood-items {
  display: flex;
  align-items: flex-start;
  flex-flow: row wrap;
  margin-left: -4px;
  margin-right: -4px;
  margin-top: 90px;
}

.neighborhood-item {
  flex-basis: calc(50% - 8px);
  margin: 4px;
  position: relative;
  /* min-height: 335px; */
}

a.neighborhood-item:first-child:after,
a.neighborhood-item:nth-child(4):after {
  content: "";
  width: 100%;
  height: 50px;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    90deg,
    rgba(250, 254, 9, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(8, 230, 251, 1) 100%
  );
  position: absolute;
  bottom: 0;
  left: 0;
}

.neighborhood-item .image-holder {
  position: relative;
}

.neighborhood-item .image-holder img {
  width: 100%;
  height: 100%;
  display: block;
}

.neighborhood-item .image-holder:before {
  content: "";
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: rgba(250, 254, 9, 0.75);
  background: linear-gradient(
    0,
    rgba(8, 230, 251, 0.75) 0%,
    rgba(156, 245, 103, 0.75) 50%,
    rgba(250, 254, 9, 0.75) 100%
  );
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.neighborhood-item .image-holder:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(55, 55, 55, 0.5);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.neighborhood-item:hover .image-holder:before {
  opacity: 1;
}

.neighborhood-item:hover .image-holder:after {
  opacity: 0;
}

.neighborhood-title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.neighborhood-title h3 {
  font: 36px/24px "Fjalla One";
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Featured Videos */

#featured-videos-wrapper {
  position: relative;
}

#featured-videos-wrapper:before {
  content: "";
  width: 22px;
  height: 100%;
  position: absolute;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(250, 254, 9, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(8, 230, 251, 1) 100%
  );
  left: 0;
  top: 0;
  z-index: 3;
}

#featured-videos-wrapper:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url("./assets/images/video-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  filter: grayscale(1);
  z-index: -1;
}

.featured-videos {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
  padding: 130px 0 110px;
  z-index: 1;
}

.featured-videos:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: -1;
}

.featured-videos:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

.featured-videos .title-container {
  flex-basis: 38%;
  padding-left: 13%;
  margin-left: 38px;
}

.featured-videos .title-container h2.section-title {
  margin-bottom: 35px;
}

.featured-videos .title-container h2.section-title:before {
  width: 90%;
}

.featured-videos .title-container .primary-btn {
  margin-top: 22px;
}

.featured-videos .title-container .primary-btn:hover {
  background-color: #373737;
  color: #ffffff;
}

.featured-videos .title-container .primary-btn:hover:before {
  border-color: #373737;
}

.videos-container {
  flex-basis: 55%;
  padding-left: 100px;
}

.video-items {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  width: 100%;
}

.video-holder {
  flex-basis: 50%;
  padding: 3px;
  display: block;
  position: relative;
}

.video-holder:before {
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  background-color: rgba(53, 53, 53, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.video-holder:after {
  content: "";
  width: 73px;
  height: 73px;
  background-image: url("./assets/images/play-btn.png");
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  opacity: 1;
}

.video-holder:hover:before {
  background-color: rgba(53, 53, 53, 0.8);
}

.video-items img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Testimonials */

#testimonials-wrapper {
  position: relative;
  padding-top: 105px;
  background-image: url("./assets/images/testi-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  z-index: 2;
  max-height: 632px;
}

#testimonials-wrapper:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(55, 55, 55, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.testimonials-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
}

.testimonials-container:after {
  content: "";
  width: 22px;
  height: 632px;
  position: absolute;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(250, 254, 9, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(8, 230, 251, 1) 100%
  );
  right: 0;
  top: -105px;
  z-index: 3;
}

.testimonials {
  flex-basis: 50%;
  width: 50%;
  padding-left: 6%;
}

.testi-items {
  position: relative;
  width: 100%;
  /* max-width: 585px; */
  margin: 0 0 0 auto;
  /* box-shadow: 0 0 20px 20px rgb(0 0 0 / 10%); */
}

/* .testi-items .slick-list {
    overflow: inherit;
} */

.testi-item {
  /* box-shadow: 0 0 20px 20px rgba(0, 0, 0, .10); */
  position: relative;
}

.testi-holder {
  background-color: #ffffff;
  padding: 80px 68px;
  margin-top: 35px;
  position: relative;
  box-shadow: inset 0 0 20px 0px rgb(0 0 0 / 10%);
}

.testi-holder:before {
  content: "";
  width: 53px;
  height: 47px;
  background-image: url("./assets/images/quote-icon.png");
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: -22px;
  left: 68px;
  z-index: 2;
}

.testi-item .testi-author {
  display: block;
  font-weight: 600;
}

.testi-title {
  flex-basis: 50%;
  padding-top: 60px;
  padding-left: 7.5%;
  z-index: 5;
  position: relative;
}

.testi-title h2.section-title {
  color: #ffffff;
}

.testi-title h2.section-title:before {
  left: auto;
  background-color: #646464;
  right: -20px;
  width: 18%;
}

.testi-title h2.section-title span {
  margin-left: -60px;
}

.testi-btn {
  margin-top: 36px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  left: -60px;
}

.testi-btn .primary-btn {
  background-color: transparent;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.testi-btn a.primary-btn:before {
  border-color: #ffffff;
}

.testi-btn a.primary-btn:hover {
  background-color: #e5e5e5;
  border-color: #e5e5e5;
  color: #373737;
}

.testi-slide-btns {
  display: flex;
  margin-left: 59px;
}

.testi-btn .testi-prev,
.testi-btn .testi-next {
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  display: block;
  border-bottom: 2px solid #ffffff;
  cursor: pointer;
  margin: 0 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.testi-btn .testi-prev {
  background-image: url("./assets/images/testi-prev.png");
}

.testi-btn .testi-next {
  background-image: url("./assets/images/testi-next.png");
}

.testi-btn .testi-prev:hover,
.testi-btn .testi-next:hover {
  background-color: #e5e5e5;
}

.testi-btn .testi-prev:hover {
  background-image: url("./assets/images/prev-btn.png");
}

.testi-btn .testi-next:hover {
  background-image: url("./assets/images/next-btn.png");
}

/* Social Media */

#social-media-wrapper {
  position: relative;
  padding: 16% 0 105px;
  background-color: #ffffff;
}

.social-media-container {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 0 75px;
  font-size: 0;
}

.social-media-container h2 {
  font-size: 60px;
}

.social-media-container .section-title span {
  margin-bottom: 25px;
}

.social-media-container .fb-container h2:before {
  left: -95px;
  width: 15%;
  top: 54%;
}

.fb-container {
  padding-right: 35px;
  flex-basis: 50.5%;
}

.ig-container {
  padding-left: 35px;
  flex-basis: 49%;
}

.ig-container h2.section-title {
  text-transform: lowercase;
}

.social-media-container .ig-container h2:before {
  right: -95px;
  left: auto;
  width: 15%;
  top: 54%;
}

.social-media-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}

.social-media-header .logo {
  display: flex;
  align-items: center;
}

.social-media-header .logo ul.sm-details {
  margin-left: 12px;
}

.social-media-header .logo ul.sm-details li {
  font-size: 14px;
  line-height: 18px;
  color: #606060;
  display: block;
}

.social-media-header .logo ul.sm-details li strong {
  font-size: 17px;
  font-weight: 700;
  color: #000000;
}

.share-btns a:hover {
  opacity: 0.8;
}

.share-btns a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.social-media-header .share-btns img {
  height: 24px;
  margin-left: 5px;
}

.social-media-content {
  margin-top: 36px;
}

.social-media-content p {
  font-size: 17px;
  line-height: 26px;
  display: block;
}

.social-media-content img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.ig-container .social-media-content .content {
  display: flex;
  align-items: flex-end;
  flex-flow: row wrap;
  margin-left: -6px;
  margin-right: -6px;
}

.ig-container .social-media-content .content .ig-feed {
  flex-basis: calc(100% / 3 - 12px);
  height: calc(50% - 12px);
  margin: 0 6px;
  position: relative;
  z-index: 1;
}

.ig-container .social-media-content .ig-feed img {
  height: 100%;
}

.ig-container .social-media-content .content .ig-feed:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(250, 254, 9, 0.8) 0%,
    rgba(156, 245, 103, 0.8) 50%,
    rgba(8, 230, 251, 0.8) 100%
  );
  opacity: 0;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.ig-container .social-media-content .content .ig-feed:hover:before {
  opacity: 1;
}

.ig-container .share-btns img {
  height: 40px;
}

/* Contact Form */

#contact-form-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  background: rgb(250, 254, 9);
  background: linear-gradient(
    0,
    rgba(8, 230, 251, 1) 0%,
    rgba(156, 245, 103, 1) 50%,
    rgba(250, 254, 9, 1) 100%
  );
  z-index: 1;
  padding: 24px;
}

.contact-form-container {
  padding: 70px 30px;
  position: relative;
  background-image: url("./assets/images/contact-form-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  z-index: 5;
  text-align: center;
}

.contact-form-container:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(55, 55, 55, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.contact-form-container .section-title {
  text-align: center;
  color: #fff;
  margin-bottom: 55px;
}

.contact-form-container .section-title span {
  margin-left: -25%;
}

.contact-form-container .section-title:before {
  left: -68%;
  background-color: #606060;
}

.contact-form-container p {
  font-size: 16px;
  color: #c2c2c2;
}

.footer-form {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-flow: row wrap;
  max-width: 60%;
  margin: auto;
  padding-top: 50px;
}

.form-field {
  flex-basis: calc(100% / 3);
  padding: 0 12px;
  margin-bottom: 55px;
}

.form-field label {
  font-size: 14px;
  color: #fff;
  display: block;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%;
  height: 28px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  outline: none;
}

.form-field.is-full {
  flex-basis: 100%;
}

.form-field.submit-field {
  width: 170px;
  margin: auto;
  padding: 0;
  flex-basis: auto;
  display: block;
  position: relative;
}

.form-field.submit-field input[type="submit"] {
  width: 170px;
  height: 52px;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form-field.submit-field:hover input[type="submit"] {
  background-color: #fff;
  color: #373737;
}

.form-field.submit-field:before {
  content: "";
  width: 62px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  margin-top: 5px;
  position: absolute;
  bottom: -8px;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.form-field.submit-field:hover:before {
  width: 100%;
  border-color: #ffffff;
}

.form-field.submit-field .ajax-loader {
  position: absolute;
}

.footer-form-container .wpcf7-response-output {
  max-width: 60%;
  color: #ffffff;
  margin: 2rem auto !important;
}

/* Footer */

footer.footer {
  position: relative;
  padding: 70px 0 0;
  z-index: 1;
}

footer.footer:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(247, 247, 247, 0.85);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 30%,
    rgba(277, 277, 277, 0.85) 100%
  );
  z-index: 0;
}

footer.footer:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("./assets/images/footer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  filter: grayscale(1);
  z-index: -1;
}

.left-footer {
  padding-left: 98px;
  position: relative;
}

.footer-logos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.footer-logos img:first-child {
  margin-right: 40px;
}

.footer-navigation {
  position: relative;
  margin-top: 30px;
}

.footer-navigation ul {
  column-count: 2;
  column-gap: 0;
  max-width: 50%;
}

.footer-navigation ul li a {
  font-size: 15px;
  color: #181818;
  text-transform: uppercase;
  line-height: 24px;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.footer-navigation ul li a:hover {
  color: #6ec7d8;
}

.right-footer {
  position: relative;
  padding-right: 98px;
  text-align: right;
}

.right-footer .agent-photo .signature {
  margin-top: 10px;
}

.right-footer .agent-photo img {
  width: 100%;
  max-width: 180px;
}

.agent-contact li {
  font-size: 16px;
  line-height: 24px;
  color: #373737;
  letter-spacing: 1px;
  word-break: break-all;
}

.agent-contact li a:hover {
  color: #6ec7d8;
}

.agent-contact li i {
  color: #12e6f1;
  margin-right: 1rem;
  font-size: 14px;
}

.agent-contact li.social-media {
  margin-top: 18px;
}

.agent-contact li.social-media a {
  font-size: 22px;
  color: #373737;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.agent-contact li.social-media a:hover {
  color: #6ec7d8;
}

.footer-copyright {
  border-top: 1px solid #b2b2b2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 25px;
  position: relative;
  margin-top: 50px;
}

.copyright {
  font-size: 13px;
  color: #373737;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.copyright a:hover {
  color: #6ec7d8;
}

/*******************************************************
*
* 3. IP Styles
*
*******************************************************/

.ip-banner {
  position: relative;
  width: 100%;
}

.ip-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.6);
}

.ip-banner canvas {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  min-height: 250px;
  background-color: #f9f7f7;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ip-banner .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.ip-banner h1 {
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.7;
}

.ip-banner h1 span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
}

/* Adjust minimum height of page area */

#content-sidebar,
#content-full {
  min-height: 500px;
  margin-top: 20px;
}

/** Adjust width of content columns **/

#content-sidebar #content {
  width: 77.08%;
}

#content-full #content {
  width: 100%;
}

/* Adjust width of sidebar */

.sidebar {
  width: 20.83%;
}

/* fullwidth template */

.page-template-template-fullwidth #content {
  padding-left: 15px;
  padding-right: 15px;
}

.page-template-template-fullwidth
  #content
  ihf-search[data-eureka-id*=""].ihf-eureka {
  margin-left: -15px;
  margin-right: -15px;
}

.grecaptcha-badge {
  z-index: 999;
}

/* Adjust line height of page elements */

#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
  line-height: 1.7;
}

/* Style .entry-title(post/page) and .archive-title(category/archive/etc) main headings (h1) */

#content .entry-title,
#content .archive-title {
  font: 32px "Fjalla One";
  color: #373737;
}

/* Styles for category/archive/search/etc subheadings (h2) */

#content .archive-subtitle {
  font: 26px "Fjalla One";
  color: #373737;
}

button.btn.dropdown-toggle.bs-placeholder.btn-default,
button.btn.dropdown-toggle.btn-default {
  width: 100%;
  padding: 10px 0 20px;
  border: 0;
  border-bottom: 1px solid #8a8a8a;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  background-color: transparent;
  outline: none;
  letter-spacing: 1px;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
}

.dropdown-menu input {
  color: #000;
}

select option {
  color: #000;
}

.ip-video {
  margin: 15px 0;
  font-size: 0;
}

.ip-video + p {
  margin: 0 !important;
}

.ai-classic-testimonials .ai-classic-testimonials-icon {
  background: #373737 !important;
}
.ai-classic-testimonials .ai-classic-testimonials-icon > div h3 {
  font-size: 20px !important;
}
.aiosp-wrap .aiosp-container .aios-popup-body {
  background: #373737 !important;
}

#content .aios-cu-inner .aios-cu-map {
  margin-left: calc((1195px - 100vw) / 2);
  margin-right: calc((1195px - 100vw) / 2);
}

#content .neighborhood-items {
  margin-top: 0;
}

#main-wrapper {
  overflow: hidden;
}

#nav .sub-menu.show-menu {
  display: block;
  opacity: 1;
}

#pojo-a11y-toolbar .pojo-a11y-toolbar-overlay {
  transform: translateY(-100%) translateY(50px);
}

#ihf-search-location-tabs {
  margin-left: 0 !important;
}

#ihf-detail-extrainfotabs {
  margin-left: 0 !important;
}

.qs-field .bootstrap-select.btn-group .dropdown-menu {
  max-height: 300px !important;
}
.chosen-results {
  margin-left: 0 !important;
}

.testi-holder {
  height: 300px;
}

.testi-holder p {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

a.fp-item.clicked_once .fp-details {
	bottom: 0;
	height: calc(100% - 64px);
	max-width: calc(100% - 64px);
	flex-flow: column wrap;
	opacity: 1;
	background: linear-gradient( 0, rgba(8, 230, 251, 0.85) 0%, rgba(156, 245, 103, 0.85) 50%, rgba(250, 254, 9, 0.85) 100% );
	top: 0;
}

*:focus {
    outline: 0 none;
}
















.nqs-submit {
    position: relative;
    width: 85px;
    display: block;
    height: 75px;
    transition: all 0.3s ease-in-out;
}

.nqs-submit input {
    width: 100%;
    height: 100%;
    font-size: 0;
    border: 0;
    background: transparent;

}

.nqs-submit i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    color: #000;
    font-size: 26px;
}


.nqs-field {
    width: calc(100% - 85px);
    height: 75px;
}

.nqs-field input {
    width: 100%;
    height: 100%;
    border: 0;
    padding-left: 31px;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    background: rgba(0,0,0,43%);
    letter-spacing: 0.05em;
}

.nqs-submit input {
    transition: all 0.3s ease-in-out;
}

.nqs-submit:hover {
    opacity: 80%;
}


.nqs-submit {
    background: linear-gradient(90deg, rgba(250, 254, 9, 1) 0%, rgba(156, 245, 103, 1) 50%, rgba(8, 230, 251, 1) 100%);
}
.nqs-submit input {
    position: relative;
    z-index: 1;
    cursor: pointer;
}

/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

.btn-group.bootstrap-select.qs-select {
    height: 100%;
}
button.btn.dropdown-toggle.btn-default {
    width: 100%;
    height: 100%;
    border: 0;
    padding-left: 31px;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    background: rgba(0, 0, 0, 43%);
    letter-spacing: 0.05em;
}

button.btn.dropdown-toggle.bs-placeholder.btn-default {
    width: 100%;
    height: 100%;
    border: 0;
    padding-left: 31px;
    font-weight: 300;
    font-size: 16px;
    color: #fff;
    background: rgba(0, 0, 0, 43%);
    letter-spacing: 0.05em;
}

.bs-searchbox .form-control{background: #000000d4 !important;}
