/*
Theme Name: HarborChase
Theme URI: https://tactusmarketing.com
Author: Jalin Burton
Author URI: https://jalinburton.com
Description: Custom theme built for HarborChase.
Version: 6.7.161
Tested up to: 8.2
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: harborchase
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

bumble is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/* ------------------------------ 
    General Styles
------------------------------ */
@-ms-viewport {
  width: device-width;
}
html {
  overflow-x: hidden;
}
body {
  font-size: 18px;
  font-weight: 300;
  color: #555;
  background: #fff;
  overflow: hidden;
}
html {
  scroll-padding-top: 90px;
}
/* body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: #fff;
}
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background-color: #000000;
  border-radius: 5px;
  border: 1.5px solid #fff;
} */
h1,
h2,
h3,
h4,
h5 {
  color: #000000;
  letter-spacing: normal;
  font-weight: 600;
  /* text-transform: uppercase; */
  /* line-height: 1em; */
}
h1 {
  font-size: 2.25em;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.35em;
}
h4 {
  font-size: 1em;
}
h1:not(.site-title):before,
h2:before {
  display: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
button,
input,
.btn,
a.btn {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
}
p {
	font-weight: 300;
}
.gradient-title {
  font-weight: 900;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: repeat;
  background-image: -webkit-linear-gradient(left, #CEE480 0%, #57C71D 100%);
  background-size: 100%;
}
.gradient-title-grey {
  font-weight: 900;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-repeat: repeat;
  background-image: -webkit-linear-gradient(left, #595959 0%, #ABB2BC 100%);
  background-size: 100%;
}
.header-small {
  font-size: 1.75em !important;
}
.header-medium {
  font-size: 2.5em !important;
  font-weight: 900;
  line-height: 1.5em;
}
.header-large {
  font-size: clamp(2.5em, 10vw, 5em) !important;
}
/* IE10+ */
/* @media screen and (min-width: 640px), screen\9 {
  .header-large {
    font-size: 3.5em !important;
  }
} */
.special-font {
  font-weight: normal;
}
section {
  position: relative;
  z-index: 5;
}
/* .section-header {
  text-transform: uppercase;
  position: relative;
  padding: 0 30px;
  display: inline-block;
  text-align: center;
}
.section-header:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 40%;
  border-radius: 20px;
  background: red;
  left: 0;
  top: 35%;
  z-index: -1;
} */

/* --------------------
  Section Fade in on Scroll */
.to-transition {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out;
}
.to-transition.transitioned {
  opacity: 1;
  visibility: visible;
}
/* Section Fade in on Scroll 
  -------------------- */

.p-large {
  font-size: 1.25em;
}
.z-n1 {
  z-index: -1 !important;
}
.z-0 {
  z-index: 0;
}
.z-1 {
  z-index: 1;
}
.z-2 {
  z-index: 2;
}
.z-top {
  z-index: 10;
  position: relative;
}
a {
  color: unset;
  transition: all 0.25s ease-in-out;
  text-decoration: none;
}
a:visited,
a:focus {
  outline: 0;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a.anchor-dark {
  color: #3b3b3a;
}
a.anchor-white {
  color: #fff !important;
}
a.anchor-white-hover:hover {
  color: #fff !important;
}
a.anchor-black {
  color: #000 !important;
}
a.anchor-black-hover:hover {
  color: #000 !important;
}
.color-primary-hover:hover {
  color: #000 !important;
}
p a {
  text-decoration: underline !important;
}
p {
  font-size: 1em;
  line-height: 1.5em;
}
ul {
  padding-left: 20px;
}
.pt-100 {
  padding-top: 100px !important;
}
.pb-100 {
  padding-bottom: 100px !important;
}
.py-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}
.pt-150 {
  padding-top: 150px !important;
}
.pb-150 {
  padding-bottom: 150px !important;
}
.py-150 {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}
.pt-200 {
  padding-top: 200px !important;
}
.pb-200 {
  padding-bottom: 200px !important;
}
.py-200 {
  padding-top: clamp(100px, 20vw, 200px) !important;
  padding-bottom: clamp(100px, 20vw, 200px) !important;
}
/* IE10+ */
/* @media screen and (min-width: 640px), screen\9 {
  .py-200 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }
} */
.py-300 {
  padding-top: clamp(200px, 20vw, 300px) !important;
  padding-bottom: clamp(200px, 20vw, 300px) !important;
}
/* IE10+ */
/* @media screen and (min-width: 640px), screen\9 {
  .py-200 {
    padding-top: 250px !important;
    padding-bottom: 250px !important;
  }
} */
@media screen and (max-width: 600px) {
  .py-300 {
    padding-top: clamp(100px, 20vw, 200px) !important;
    padding-bottom: clamp(00px, 20vw, 200px) !important;
  }
}
.mt-100 {
  margin-top: 100px !important;
}
.mb-100 {
  margin-bottom: 100px !important;
}
.my-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}
.mt-150 {
  margin-top: 150px !important;
}
.mb-150 {
  margin-bottom: 150px !important;
}
.my-150 {
  margin-top: 150px !important;
  margin-bottom: 150px !important;
}
.mt-200 {
  margin-top: 200px !important;
}
.mb-200 {
  margin-bottom: 200px !important;
}
.mb-250 {
  margin-bottom: 250px !important;
}
.mb-n5 {
  margin-bottom: -4em !important;
}
.mt-n5 {
  margin-top: -4em !important;
}
blockquote {
  background: #f2f2f2;
  padding: 20px 30px;
  font-family: "Anton", sans-serif;
  overflow: visible;
  margin: 30px 0;
}
blockquote p {
  margin-bottom: 0;
  position: relative;
  font-style: normal;
  line-height: 30px;
  font-size: 1.375em;
}
blockquote p:before {
  content: "\201C";
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  color: #bc9a60;
  font-size: 125px;
  position: absolute;
  top: 1px;
  left: -42px;
}
.underline {
  position: relative;
  margin-bottom: 50px;
}
.underline:after {
  content: "";
  background-color: #00bcd4;
  width: 100px;
  height: 5px;
  position: absolute;
  left: 0;
  bottom: -20px;
}
.rounded {
  border-radius: 1em !important;
}
.border-curve {
  border-bottom-right-radius: 15vw;
  overflow: hidden;
}
.border-top-left {
  border-top-left-radius: 5vw;
}
.border-top-right {
  border-top-right-radius: 5vw;
}
b,
strong {
  font-weight: 700;
}
hr {
  opacity: 1 !important;
  border-width: 2px;
}
.vertical-hr {
  width: 1px;
  margin: 0 auto;
  height: 100%;
}
/* Colors */
.white {
  color: #fff !important;
}
.light {
  color: #f7f7f7 !important;
}
.medium {
  color: #595959 !important;
}
.dark {
  color: #333 !important;
}
.black {
  color: #0A0A0A !important;
}
/* Hovers */
.white-hover:hover {
  color: #fff !important;
}
.light-hover:hover {
  color: #f7f7f7 !important;
}
.dark-hover:hover {
  color: #333 !important;
}
.black-hover:hover {
  color: #0A0A0A !important;
}
/* Text Gradients */
.grey-text-gradient {
  background-image: -webkit-linear-gradient(bottom, #ABB2BC 0%, #737E90 33%, #565F6C 66%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background-size: 100%;
  background-repeat: repeat;
}
/* Block Gradients */
.block-grey-text-gradient {
  background-image: -webkit-linear-gradient(bottom, #ABB2BC 33%, #737E90 33%, #737E90 66%, #565F6C 66%);
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  background-size: auto 162px;
  background-repeat: repeat;
  background-position: bottom;
  word-break: break-word;
}
/* Backgrounds */
.bg-white {
  background: #fff !important;
}
.bg-light {
  background: #f7f7f7 !important;
}
.bg-medium {
  background: #595959 !important;
}
.bg-dark {
  background: #333 !important;
}
.bg-black {
  background: #0A0A0A !important;
}
/* Hovers */
.bg-white-hover:hover {
  background: #fff !important;
}
.bg-light-hover:hover {
  background: #f7f7f7 !important;
}
.bg-dark-hover:hover {
  background: #333 !important;
}
.bg-black-hover:hover {
  background: #0A0A0A !important;
}
/* Background Images */
.bg-img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.bg-blur {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.bg-blur.bg-black {
  background: rgba(10, 10, 10, 0.75) !important;
}
.bg-bottom {
  background-position: bottom;
}
.bg-fw {
  position: relative;
}
.bg-fw:after, .bg-fw:before {
  background-color: inherit;
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 200vw;
  height: 100%;
}
.bg-fw:before {
  left: unset;
  right: 100%;
}
.border-circle {
  border-radius: 50%;
}
.text-extra-small {
  font-size: 0.65em !important;
}
.text-small {
  font-size: 0.75em !important;
}
.text-medium {
  font-size: 0.875em !important;
}
.text-large {
  font-size: 1.25em !important;
  line-height: 1.5em;
}
.text-extra-large {
  font-size: 2em !important;
}
.text-huge {
  font-size: 2.75em !important;
}
.title-xl {
  font-size: 4em;
}
.media-caption {
  font-weight:300;
  z-index:100;
}
.quote-icon {
  font-size: clamp(4em, 30vw, 10em);
  margin-top: -20px;
  line-height: 1;
}
.font-weight-black,
.fw-black {
  font-weight: 900;
}
.border-right {
  border-color: #fff !important;
  z-index: 1;
}
.border-white {
  border-color: #fff !important;
}
.border-grey {
  border-color: #7c7c7c !important;
}
.border-dark {
  border-color: #3b3b3a !important;
}
.border-width {
  border-width: 5px !important;
}
.img-border {
  border-bottom: 5px solid !important;
}
.border {
  border-width: 5px !important;
  border-color: #fff !important;
}
.cursor-pointer {
  cursor: pointer;
}
.check-list {
  list-style: none;
  padding-left: 10px !important;
}
.check-list li {
  position: relative;
  padding-left: 70px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.check-list li:before,
.check-list li:after {
  font-family: "Font Awesome 5 Free";
  font-size: 1.75em;
  font-weight: 900;
  color: #3cc47b;
  position: absolute;
  left: 13px;
  z-index: 1;
}
.check-list li:before {
  content: "\f00c";
}
.check-list li:after {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  z-index: 0;
  left: 0;
}
ul.numbers li {
  position: relative;
  counter-increment: step-counter;
  left: 35px;
  min-height: 70px;
  max-width: 90%;
}
ul.numbers li:before {
  content: counter(step-counter);
  position: absolute;
  top: 12px;
  left: -54px;
  font-size: 1.25em;
  text-align: center;
  width: 40px;
}
ul.numbers li:after {
  content: "";
  position: absolute;
  top: 8px;
  left: -55px;
  width: 40px;
  height: 40px;
  border: 2px solid #f7f7f7;
  border-radius: 50%;
}
ul.numbers {
  list-style: none;
}
ol.number-list li {
  counter-increment: theme-counter;
  line-height: initial;
  margin-bottom: 20px;
}
ol.number-list li:before {
  font-weight: 900;
  content: counter(theme-counter) ". ";
  font-size: 2em;
}
.list-style-inside {
  list-style: inside;
}
.triangle-list {
  margin: 0.75em 0;
  padding: 0 1em;
  list-style: none;
}
.triangle-list li::before {
  content: "";
  border-color: transparent #d05069;
  border-style: solid;
  border-width: 0.35em 0 0.35em 0.45em;
  display: block;
  height: 0;
  width: 0;
  left: -1em;
  top: 0.9em;
  position: relative;
}
.container-max {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
}
.container-half {
  max-width: 640px;
  padding: 5vw 15px;
  width: 100%;
}
.w-60 {
  width: 60% !important;
}
.header-padding-sm {
  padding-top: 115px;
}
.header-padding-md {
  padding-top: 200px;
}
.header-padding-lg {
  padding-top: 300px;
}
.footer-padding {
  padding-top: 120px;
}
.shadow {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
}
.shadow-lg {
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.1);
}
.bg-gradient {
  background: #87d3ee;
  background: -moz-linear-gradient(left, #87d3ee 0%, #bc9a60 100%);
  background: -webkit-linear-gradient(left, #87d3ee 0%, #bc9a60 100%);
  background: linear-gradient(to right, #87d3ee 0%, #bc9a60 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#87d3ee', endColorstr='#bc9a60',GradientType=1 );
}
.gradient-border {
  background: -webkit-linear-gradient(right, #bc9a60, #87d3ee);
  height: 2px;
  width: 100%;
}
.dark-gradient {
  background: #000;
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6))
}

.dark-gradient-left {
  background: #000;
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.75));
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    background: linear-gradient(to left, rgba(0,0,0,0), rgba(0,0,0,0.75))
}
.mask {
  height: 100%;
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0px;
  width: 100%;
}
#event .mask {
  display:none;
}
.bg-opaque {
  opacity: 0.25;
}
.bg-opaque-1 {
  opacity: 0.1;
}
.bg-opaque-25 {
  opacity: 0.25;
}
.bg-opaque-50 {
  opacity: 0.5;
}
.bg-opaque-75 {
  opacity: 0.75;
}
.bg-black-opaque {
  background-color: rgba(0, 0, 0, 0.75);
}
.bg-black-opaque-50 {
  background-color: rgba(0, 0, 0, 0.5);
}
.bg-black-opaque-25 {
  background-color: rgba(0, 0, 0, 0.25);
}
.bg-gold-opaque {
  background-color: rgba(188, 154, 96, .75) !important;
}
.bg-white-opaque {
  background-color: rgba(255, 255, 255, 0.75);
}
.hide {
  display: none;
  opacity: 0;
}
.animate {
  display: -ms-flexbox !important;
  display: flex !important;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.line-height-reset {
  line-height: 1.8;
}
.overlay-top {
  top: -1px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  pointer-events: none;
}
.overlay-bottom {
  bottom: -2px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
  pointer-events: none;
}

/* ------------------------------
    Buttons
------------------------------ */
.btn {
  border: none;
  border-radius: 7px;
  padding: .65em 2em;
  font-size: 1em;
  text-decoration: none !important;
}
.btn-wide {
  padding: .75em 2em;
  width: 300px;
  text-align: center;
}
.btn-tour:after {
  position: absolute;
  content: '\f073';
  right: 25px;
  font-family: 'Font Awesome 6 Free';
}
.btn-tour {
  position: relative;
}
.btn-view-floorplan {
  background: #f9f9f9 !important;
  color: #026169 !important;
}
.btn-view-floorplan:hover {
  background: #026169 !important;
  color: #fff !important;
}
.btn-no-animation {
  display: inline-block;
  padding: 0.875em 2.25em;
  font-size: 0.8em;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.4s ease;
}
.btn-animation {
  display: inline-block;
  padding: 0.875em 2.25em;
  font-size: 0.8em;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.4s ease;
}
.btn-animation:before, .btn-animation:after {
  content: "";
  position: absolute;
  left: -450%;
  top: -450%;
  background-image: conic-gradient(transparent, transparent, transparent, #57C71D);
  width: 1000%;
  height: 1000%;
  z-index: 0;
  animation: rotate 3s linear infinite;
  transition: all 0.4s ease;
}
.btn-animation:after {
  animation-delay: -1.5s;
}
.btn-animation .btn-bg, .btn-no-animation .btn-bg {
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  z-index: 1;
  top: 2px;
  left: 2px;
  transition: all 0.4s ease;
}
.btn-animation .btn-content, .btn-no-animation .btn-content {
  position: relative;
  z-index: 1;
  /* transition: all 0.4s ease; */
}
.btn-animation-hover:before, .btn-animation-hover:after {
  background-image: conic-gradient(transparent, transparent, transparent, transparent);
}
.btn-no-border {
  border-radius: 0;
}
.btn-no-border .btn-bg {
  border-radius: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}



/* ------------------------------
    Floor Plans
------------------------------ */
.floorplan-single {
  transition: opacity .5s ease-in-out;
}
.floorplan-single.inactive {
  opacity: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 0 !important;
}
.btn-floorplan {
  border: 2px solid #bc9a60;
  border-radius: 0;
  background: #fff;
  color: #bc9a60;
  font-weight: 600;
}
.btn-floorplan:hover {
  background: #000 !important;
  border-color: #000 !important;
  color: #fff !important;
}
.btn-floorplan.active {
  background: #bc9a60;
  border-color: #bc9a60;
  color: #fff !important;
  position: relative;
}
.btn-floorplan.active:after {
  position: absolute;
  top: 100%;
  left: calc(50% - 10px);
  content: "";
  width: 20px;
  height: 20px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #bc9a60;
}
.btn-floorplan.active:hover:after {
  border-top: 10px solid #000;
}
.floorplan-content {
  transition: none;
  overflow: hidden;
}
.inactive.floorplan-content {
  display: none;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
}
.floorplan-img-link img {
	max-height: 200px;
}

.floorplan-modal-single .modal-body img{
	object-fit: contain;
}
/* ------------------------------
    Cards
------------------------------ */
.type {
  font-size: 0.66em;
  margin-bottom: 5px !important;
  text-decoration: underline;
}
.card-img-slide {
  cursor: auto !important;
}
.card {
  background: none;
  width: 100%;
  height: auto;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
}
.card .card-content {
  z-index: 1;
}
.card .card-img-wrap {
  top: 0;
  left: 0;
  height: calc(100% - 60px);
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
.card .card-img {
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
}
.card .card-title {
  margin-left: 20px;
  margin-bottom: 0;
  text-transform: uppercase;
  font-size: 1.5em;
  font-weight: 900;
  font-style: italic;
  line-height: 1em;
  color: #333;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.card:hover .card-img-wrap {
  border-radius: 30px;
}
.card:hover .card-img {
  opacity: 0.35;
  filter: blur(10px);
  transform: scale(1.1);
}
.card:hover .card-title {
  margin-bottom: 70px;
  color: #f7f7f7;
}
.card-grow .card-title {
  margin-bottom: 5px;
}
.card:hover.card-grow .card-title {
  margin-bottom: 5px;
}
.card:hover.card-grow .card-img-wrap {
  height: 100%;
}
.card:hover .stat-content {
  margin-bottom: 20px;
  opacity: 1;
}
.card .stat-content {
  margin-bottom: -70px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.card .client-title {
  font-size: 1.5em;
  font-weight: 700;
}
.card.card-grow .stat-amount {
  font-size: 2em;
  font-weight: 900;
}
.card.card-grow .stat-title {
  font-size: 0.75em;
}



/* ------------------------------
    Bootstrap Modal
------------------------------ */
.modal {
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(10px);
}
.modal-xl {
  max-width: 1140px;
}
a.modal-link::after {
  display: none;
}
.modal-header {
  border: 0;
}
.close {
  opacity: 1;
  transition: color 0.25s ease-in-out;
}
.fade,
body {
  padding-right: 0 !important;
}
.video-modal {
  max-width: 900px;
}
.modal-content {
  background: none;
  box-shadow: none;
  border: 0;
}
.modal-header {
  padding: 0;
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-footer,
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal .close-btn {
  box-shadow: 5px 5px 0 #d05069;
  width: 3em;
  height: 3em;
}
.modal .btn-close {
  background: transparent
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="white"><path d="M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z"/></svg>')
    center/1.25em auto no-repeat;
  opacity: 1;
}
.modal .btn-close:hover {
  background: transparent
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="black"><path d="M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z"/></svg>')
    center/1.25em auto no-repeat;
}
.modal-backdrop.fade.show {
  display: none !important;
}
.work-single-modal .modal-dialog {
  max-width: 90%;
  width: max-content;
}
.modal-dialog {
  padding-top: 100px;
  padding-bottom: 100px;
  max-width: 800px;
}



/* ------------------------------
    Responsive Videos & YouTube
------------------------------ */
/* HTML5 Video UI */
.video-wrap .play-button {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  top: calc(50% - 75px);
  left: calc(50% - 50px);
  font-size: 30px;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 1;
}
.video-wrap .play-button.hide {
  opacity: 0;
}
.video-wrap:hover .play-button {
  transform: scale(1.25);
}

/* Resonsive Video */
.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
  box-shadow: 0px 17px 5px -10px rgba(0, 0, 0, 0.5);
}
.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/* YouTube Playlist */
#ypt_wrapper {
  width: 100%;
  background: #131313;
  color: #fff;
  overflow: hidden;
  max-width: 100%;
}
#ypt_thumbs div {
  list-style: none;
  margin: 0;
  position: relative;
  font-size: 0;
}
#ypt_thumbs div::after {
  content: "\25b6";
  display: block;
  width: 100px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  font-size: 30px;
  text-align: center;
  color: #bc9a60;
  height: 70px;
  border-radius: 20%;
  line-height: 70px;
  margin-left: calc(50% - 50px);
  bottom: calc(50% - 35px);
  pointer-events: none;
}
#ypt_thumbs div.ypt-now-playing::after {
  display: none;
}
#ypt_thumbs div img {
  width: 100%;
}
#ypt_thumbs div p {
  font-family: arial;
  font-size: 10px;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  color: #fff;
  padding: 5%;
  margin: 0;
}
#ypt_thumbs div:hover p {
  display: block;
  cursor: pointer;
}
#ypt_thumbs .ypt-now-playing p {
  display: block;
}
#ypt_thumbs .ypt-now-playing span::after {
  content: "\25b6  Now playing"; /* A traingle pointing right */
  margin-top: -1em;
  display: block;
  width: 100%;
  padding: 5%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  position: absolute;
  bottom: 0;
  font-size: 10px;
}
#ypt_wrapper .video {
  position: relative;
  width: 100%;
  padding-bottom: 48.4%;
  float: left;
}
#ypt_wrapper .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  float: left;
}




/* ------------------------------
    Icon List
------------------------------ */
img.icon-img {
  width: 50px;
  height: 40px;
  opacity: 0;
  transition: opacity .75s ease-in-out;
}
img.icon-img.in-view {
  opacity: 1;
}




/* ------------------------------
    Forms
------------------------------ */
.form-box {
  margin-top: -100px;
}
.gform_body input {
  border-radius: 30px !important;
  border: 1px solid #979797 !important;
  padding: 10px 15px !important;
  margin: 0 !important;
}
.gform_body li {
  margin: 30px 0 0 !important;
}
.gform_body .ginput_container {
  margin: 0 !important;
}
.gform_wrapper.gravity-theme .ginput_container_date input {
  width: auto !important;
}
.gform_body input,
.gform_body textarea {
  outline: none !important;
}
.gform_body input:focus,
.gform_body textarea:focus {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25) !important;
}
input[type="submit"]:hover {
  background: #fff;
  color: #00bcd4;
}
.gform_wrapper .ginput_complex .address_city,
.gform_wrapper .ginput_complex .address_state,
.gform_wrapper .ginput_complex .address_zip {
  margin-top: 30px !important;
  width: calc(33% - 8px) !important;
  margin-right: 16px !important;
  padding-right: 0 !important;
}
.gform_wrapper .ginput_complex .address_zip {
  margin-right: 0 !important;
}
.gform_body .attachment-input input {
  border: none !important;
  padding-left: 0 !important;
  border-radius: 0 !important;
}
.gform_body .attachment-input input:focus {
  box-shadow: none !important;
}
.gform-body input.button {
  width: auto;
  background: #00bcd4;
  color: #fff;
  font-weight: 900;
  border: none !important;
  transition: all 0.25s ease-in-out;
  font-size: 1em;
}
.gform-body input.button:hover {
  background: #000000;
}
.gform-body input.gform_previous_button {
  background-color: #c5c9d2 !important;
  color: #fff !important;
  border-bottom-right-radius: 0 !important;
}
.gform-body input.gform_previous_button:hover {
  background-color: #000000 !important;
}

/* Newsletter Form */
.hs-newsletter-signup .hs-input {
  width: 100%;
  margin-bottom: 20px;
}
#data-removal {
  max-width: 1400px;
  margin: 7rem auto;
}

/* Hubspot */
input.hs-button {
  margin-top: 2em;
  padding: 0.5rem 2rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #f7f7f7;
  background: #C4D62D;
  border: none;
  font-size: .875em;
}
input.hs-button:hover {
  background: #f7f7f7;
  color: #333;
}
.hs-input {
  border-radius: 0;
  border: none;
  padding: 0.5em 0 !important;
  font-size: 16px;
  border-bottom: 1px solid #f7f7f7;
  background: transparent;
  color: #f7f7f7;
} 
.hs-input::-webkit-input-placeholder {
  color: #ABB2BC;
}
.hs-error-msgs {
  color: #839E20;
  font-size: 14px;
  margin-bottom: 0;
  margin-top: 5px;
}
#eval-form fieldset {
  max-width: 100%;
  margin: 0 auto;
}
#eval-form .hs_hs_persona, .hs_company {
  margin-top: 30px;
}
#eval-form .hs_community_size {
  margin-top: 80px;
  margin-bottom: 80px;
}
#eval-form .hs-input {
  border-color: #333;
  color: #333;
}
#eval-form .hs_lastname input, #eval-form .hs_firstname input {
  width: 90%;
}
#eval-form .hs-input::-webkit-input-placeholder {
  color: #333;
}
#eval-form .hs_marketing_buckets>label {
  margin-bottom: 20px;
}
#eval-form .hs_marketing_buckets .inputs-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
#eval-form .hs_marketing_buckets li.hs-form-checkbox {
  background: #fff;
  margin: 0 5px 5px 0;
  width: calc(33% - 5px);
  accent-color: #333;
}
#eval-form .hs_marketing_buckets li.hs-form-checkbox label {
  padding: 40px 20px;
  color: #333;
  width: 100%;
  cursor: pointer;
  font-size: .875em;
  font-weight: 500;
  display: flex;
}
#eval-form .hs_marketing_buckets li.hs-form-checkbox input {
  margin-right: 10px;
}
#eval-form .hs_submit {
  text-align: center;
}
/* Careers */
.careers-form input.hs-input, .careers-form select.hs-input {
  width: 90%;
}
.careers-form input.hs-input[name="attach_your_resume"] {
  width: auto;
  margin-top: 40px;
}
.careers-form .hs-error-msgs {
  list-style: none;
}
.careers-form .hs-input option {
  color: #333;
}
.careers-form .grecaptcha-badge {
  margin: 40px auto 10px;
}
/* Contact Form */
.contact-form .hs-input::-webkit-input-placeholder {
  color: #333;
}
.contact-form .hs-form-field {
  width: 100% !important;
}
.contact-form input.hs-input, .contact-form textarea {
  width: 100% !important;
  border: none !important;
  box-shadow: none !important;
  border-bottom: 1px solid #333 !important;
  border-radius: 0 !important;
  margin-bottom: 20px;
}
.contact-form input.hs-button {
  padding: 0.875rem 2rem !important;
  text-transform: uppercase !important;
  font-weight: 700 !important;
  color: #f7f7f7 !important;
  background: #C4D62D !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  font-size: .875em !important;
  text-shadow: none !important;
  font-family: Montserrat, sans-serif !important;
}
.contact-form input.hs-button:hover {
  background: #f7f7f7 !important;
  color: #333 !important;
}
.contact-form input.hs-input, .contact-form textarea.hs-input, .contact-form select.hs-input {
  font-family: 'Montserrat';
  font-size: 1em;
}
/* Newsletter */
/* .newsletter-form .hs_email, .newsletter-form .hs_submit {
  display: inline-block;
  vertical-align: top;
} */
.newsletter-form form {
  display: flex;
  max-width: 510px;
}
.newsletter-form .hs_email {
  flex: 1;
}
.newsletter-form .hs-input {
  width: 100%;
}
.newsletter-form .hs_email .input {
  min-width: 300px;
  margin-right: 20px;
}
.newsletter-form .hs_email > label {
  display: none;
}
.newsletter-form .btn {
  border: none;
}
#contact-us .newsletter-form .hs-input {
  width: 100%;
  box-shadow: none !important;
  border: none;
  border-bottom: 1px solid #efefef;
  border-radius: 0 !important;
  padding: 1em 0 !important;
  font-family: 'Montserrat';
  font-size: 16px;
}


/* ------------------------------ 
    Navigation
------------------------------ */
/* LOGO */
.brand-logo svg {
  max-height: 68px;
}
/* NAVBAR */
nav#mainNav {
  width: 100%;
  position: fixed;
  transition: all 700ms ease;
  top: 0;
  transform: translate(0%);
  z-index: 9;
}
.hide-nav nav#mainNav {
  transform: translate(0, -100%);
}
.main-nav .has-sub-nav {
  position: relative;
}
.main-nav .has-sub-nav:before {
  position: absolute;
  top: 100%;
  left: 0;
  content: '';
  height: 10px;
  width: 100%;
}
.main-nav .has-sub-nav:after {
  content: '\f107';
  position: absolute;
  color: inherit;
  padding-left: 5px;
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  padding-top: 5px;
  background: none !important;
}
.main-nav .has-sub-nav:hover .sub-nav-container {
  opacity: 1;
  visibility: visible;
}
.main-nav .sub-nav-container {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 400ms ease;
  z-index: 2;
  min-width: max-content;
  top: calc(100% + 10px);
  right: 0;
}

@keyframes simple-animation-rev {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top right;
  }
}
@keyframes simple-animation {
  0% {
    background-position: top right;
  }
  100% {
    background-position: top left;
  }
}

/* Mobile Nav */
#nav-btn {
  cursor: pointer;
  width: 60px;
  text-align: center;
  z-index: 999;
}
#nav-btn .icon {
  position: relative;
  width: 80%;
  height: 80%;
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #fff;
  transition: all 400ms ease;
}
#mobile-nav{
  position: fixed;
  width: 100vw;
  height: auto;
  overflow-y: auto;
  left: -100vw;
  top: 100px;
  transition: left 0.33s ease-in-out;
  z-index: 996;
}
ul.mobile-nav-items {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
}
.hide-nav nav#mobile-nav {
  left: -100vw;
}
#mobile-nav.shown {
  left: 0;
}
.mobile-nav-item .sub-menu-item:last-of-type, #desktop-nav .sub-menu-item:last-of-type a {
  padding-bottom: 0 !important;
}
li.mobile-nav-item:last-of-type {
  margin-bottom: 0 !important;
}
.mobile-nav-item a, #desktop-nav .sub-menu-item a {
  border-bottom: 1px solid rgba(188, 154, 96, 0.25);
  display: block;
  padding-bottom: 10px;
}
li.mobile-nav-item:last-of-type > a {
  border-bottom: none;
}
#mobile-nav .sub-nav-container .sub-menu-item:last-of-type a, #desktop-nav .sub-menu-item:last-of-type a {
  border-bottom: none;
}
/* #mobile-nav .sub-menu-item a {
  border-color: rgba(255,255,255,0.5);
} */
#mobile-nav a[aria-expanded="true"] {
  border-color: transparent;
  /* color: #000 !important; */
}
#mobile-nav li.sub-menu-item:before {
  content: '-';
  position: absolute;
  left: -10px;
}
#mobile-nav li.sub-menu-item {
  position: relative;
}




/* ------------------------------ 
    Hero
------------------------------ */
#home-hero {
  /* height:80vh;
  min-height:600px; */
}
.hero-spacer {
  height: 100px;
  background: #333;
  position: relative;
}
.hero-media-rounded {
  border-radius: 30px;
}

/* Video Block Hero */
.video-container {
  position: relative;
  width: 300px;
  height: 500px;
}
.video-sm {
  height: 320px;
}
.video-container h2 {
  color: #0A0A0A;
  font-weight: 900;
  font-size: 100px;
  position: absolute;
}
.video-container h2.top {
  top: 20px;
  left: -100px;
}
.video-container h2.middle {
  top: calc(50% - 60px);
  right: -100px;
}
.video-container h2.bottom {
  bottom: 20px;
  left: calc(100% - 100px);
}
.video-container .video-block {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.video-container .video-block h2 {
  color: #f7f7f7;
  z-index: 2;
}
.video-container .video-block video {
  z-index: 1;
  position: absolute;
}

/* Interior Hero */
/* Quote Box / Form Box */
.quote-transition {
  transition: height 2s ease-in-out;
}
.quote-transition.in-view {
  height: 0 !important;
}
.quote-box {
  max-width: 550px;
  width: 100%;
  margin-top: -50px;
  position: relative;
  z-index: 5;
  transform: translate(0, 100%);
  transition: all .75s ease-in-out;
}
.quote-box.in-view {
  transform: translate(0, 0%);
}
.communities-page .quote-box {
  transform: translate(0, 0%);
}
.form-box {
  margin-top: -100px;
  position: relative;
  z-index: 5;
}


/* ------------------------------ 
    Staff
------------------------------ */
.staff-member {
  max-width: 400px;
  margin: 0 auto;
}
.staff-content
  .social-link.px-2.border-end.border-dark.d-inline-block:last-of-type {
  border: none !important;
}



/* ------------------------------ 
    Pagination
------------------------------ */
.page-numbers {
  border: 1px solid #337b81;
  color: #337b81 !important;
  padding: 0 5px;
  margin: 0 5px;
}
.page-numbers:hover {
  background: #52c1cb;
  border: 1px solid #52c1cb;
  color: #fff !important;
}
.page-numbers.current {
  background: #337b81;
  color: #fff !important;
}
.page-numbers.current:hover {
  border: 1px solid #337b81;
}
.next.page-numbers,
.prev.page-numbers {
  border: none;
  margin: 0 10px !important;
}
.next.page-numbers:hover,
.prev.page-numbers:hover {
  background: none;
  color: #52c1cb !important;
}
/* PageNavi - Custom Pagination */
.pagenavi .pages {
  display: none;
}
.pagenavi a, .pagenavi span {
  margin: 0 10px;
}
.pagenavi span, .pagenavi a {
  border: 1px solid #026169;
  padding: 2px 12px;
  border-radius: 5px;
  color: #026169;
}
.pagenavi a:hover {
  color: #fff;
  background: #026169;
}
.pagenavi .current {
  color: #fff;
  background: #026169;
}



/* ------------------------------ 
    Blog & Posts
------------------------------ */
.post-single.free-tools-single .post-card .topo-top {
  top: 50%;
  height: 50%;
}
.post-single .post-card .topo-top {
  background-image: url('/wp-content/uploads/topo-top-post.svg') !important;
  top: 25%;
  height: 75%;
}
.post-single:nth-child(3n+2) .post-card.bg-black {
  background: #333 !important;
}
.post-single:nth-child(3n+2) .post-card .topo-top {
  background-image: url('/wp-content/uploads/topo-right-post.svg') !important;
  background-size: auto 100% !important;
  background-position: top right !important;
  background-repeat: no-repeat !important;
}
.post-single:nth-child(3n+2) .post-card .black {
  color: #333;
}
.post-single:nth-child(3n+2) .post-card .btn-bg-black-hover:hover .btn-bg {
  background: #333 !important;
}
.post-single:nth-child(3n+3) .post-card.bg-black {
  background: #595959 !important;
}
.post-single:nth-child(3n+3) .post-card .topo-top {
  background-image: url('/wp-content/uploads/topo-left-post.svg') !important;
  background-size: auto 100% !important;
  background-position: top left !important;
  background-repeat: no-repeat !important;
}
.post-single:nth-child(3n+3) .post-card .black {
  color: #595959;
}
.post-single:nth-child(3n+3) .post-card .btn-bg-black-hover:hover .btn-bg {
  background: #595959 !important;
}
.single-post .container p img {
  max-width: 100%;
}
.single-post article span, .single-post article li {
  font-weight: inherit !important;
}


/* ------------------------------ 
    Component: Full-Width Overlay
------------------------------ */
.full-width-overlay .content-box {
  transform: translate(0, 100%);
  transition: all .75s ease-in-out;
}
.full-width-overlay .content-box.in-view {
  transform: translate(0, 50%);
}



/* ------------------------------ 
    Component: Half-Width Overlay
------------------------------ */
.half-width-overlay .content-box {
  transform: translate(0, 0%);
  transition: all .75s ease-in-out;
}
.half-width-overlay .content-box.in-view {
  transform: translate(0, -50%);
}



/* ------------------------------ 
    Instagram Feed
------------------------------ */
#sb_instagram {
  background: transparent !important;
}
.icon-logo {
  width: 80px;
}



/* ------------------------------
    WPSL - Store Locator
------------------------------ */
/* .wpsl-search {
    padding: 20px 15px 40px;
    margin-bottom: 0;
} */
#wpsl-wrap {
  margin-bottom: 0;
}
#communities #wpsl-gmap {
  float: none;
  width: 100%;
  height: 650px !important;
  margin-top: 0;
}
#wpsl-result-list {
  width: 100%;
  margin-right: 0;
}
#wpsl-stores {
  margin-left: -30px !important;
  margin-right: -30px !important;
}
#wpsl-stores .wpsl-store-thumb {
  float: none;
  border-radius: 0;
  margin: 0;
}
#communities #wpsl-stores{
  max-height: 100%;
  height: auto !important;
  margin: 0 auto;
}
#communities img.wpsl-store-thumb {
  width: 100% !important;
  height: auto !important;
}
#wpsl-stores ul{
  display: flex;
}
#wpsl-stores .community-services .check-list{
  display: block !important;
}
#wpsl-stores .community-link .btn{
  font-size: .75em;
  padding: .65em 2em;
}
.wpsl-store-location {
  margin: -80px 30px 0px;
  transform: translate(0px, 50%);
  transition: all .75s ease-in-out;
}
.wpsl-store-location.in-view {
  transform: translate(0px, 0%);
}
.communities-page .wpsl-store-location {
  transform: translate(0px, 0%);
}
/* #wpsl-stores .community-link .btn:hover{
  background-color: #f7b219;
}
.wpsl-search {
  padding: 0;
  margin: 0;
  background: #1b6db6;
}
#wpsl-search-btn {
  color: #fff;
  margin: 0;
  border: 2px solid #fff !important;
  border-radius: 25px !important;
  background: none;

}
#wpsl-search-btn:hover {
  background-color: #f7b219;
}
input#wpsl-search-input {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1em;
  padding: 0;
  height: 2.25em;
  width: 250px;
  border-radius: 0;
}
input#wpsl-search-input::placeholder {
  color: #fff;
} */
input#wpsl-search-input {
  width: 100%;
}
#wpsl-wrap #wpsl-result-list li {
  padding: 0 15px;
  margin-left: 0 !important;
  border: 0;
  overflow: visible;
}

/* Search Section */
#wpsl-search-wrap .wpsl-input {
  width: 50%;
}
#wpsl-search-wrap .wpsl-select-wrap {
  width: 160px;
}
div#wpsl-radius {
  width: 100%;
  text-align: center;
}
#wpsl-radius label {
  display: block;
  width: 100% !important;
}
.wpsl-dropdown {
  width: 100%;
}
#wpsl-search-wrap form {
  display: flex;
  align-items: flex-end;
}
/* #wpsl-search-wrap {
  float: none;
  width: auto;
  max-width: 1140px;
  margin: 0 auto;
}
#wpsl-search-wrap form{
  padding: 25px 15px;
  display: flex;
  align-content: center;
  justify-content: space-between;
}
#wpsl-search-wrap form input{
  font-size: 1.15em;
  max-width: 445px;
  width: 100%;
  border-bottom: solid 2px #fff;
  text-align: center;
}
#wpsl-search-btn, #wpsl-search-wrap div {
  margin-right: 0;
  float: none;
} */




/* ------------------------------ 
    Community Components
------------------------------ */
.community-service-single.inactive {
  opacity: 0;
  visibility: hidden;
  width: 0;
  padding: 0;
}
.inactive .wpsl-store-location {
  display: none;
}
.community-service-single {
  transition: opacity .5s ease-in-out;
}
#state-select {
  padding: 10px 15px;
  border-radius: 7px;
  background: #bc9a60;
  border: 0;
  color: #fff;
  width: 250px;
  border-right: 15px solid transparent;
}




/* ------------------------------ 
    Content: Side by Side
------------------------------ */
.img-shadow-wrap {
  display: inline-block;
  position: relative;
  opacity: 0;
  transition: opacity .75s ease-in-out;
}
.img-shadow-wrap.in-view {
  opacity: 1;
}
.img-shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  top: 10px;
  left: 10px;
  overflow: hidden;
}
.img-shadow-bottom {
  filter: blur(100px);
  transform: scale(1.1);
}
.img-shadow-top {
  position: relative;
}




/* ------------------------------ 
    Slider
------------------------------ */
/* Bootstrap Slider */
/* .carousel-indicators [data-bs-target] {
  width: 20px;
}
.testimonail-single {
  min-height: 390px;
}
.em-header {
  font-size: 2em;
  font-style: italic;
  line-height: 1.25em;
}
.testimonial p {
  line-height: 1.75em;
}
.testimonial-name {
  font-size: 1.5em;
  font-weight: 900;
  margin-bottom: 0 !important;
}
.testimonial-company {
  font-size: 1.15em;
  font-weight: 700;
}
.quote-icon {
  position: absolute;
  left: -50px;
  top: 5px;
  font-size: 40px !important;
  opacity: 0.75;
} */
.carousel-inner {
  overflow: visible !important;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  height: 4em;
  width: 4em;
  background-color: #fff;
  background-size: 60%;
}
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
}
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000000' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
}
.carousel-control-next,
.carousel-control-prev {
  width: auto !important;
  opacity: 1 !important;
}
/* Indicators */
.carousel-indicators [data-bs-target] {
  width: 7px;
  height: 7px;
  margin: 0 5px !important;
  border-radius: 50%;
  border: 1px solid #f7f7f7;
  background: transparent;
  opacity: 1;
}
.carousel-indicators .active {
  background: #f7f7f7;
}

/* Flickity */
.flickity-page-dots {
  display: flex !important;
  align-items: center;
  justify-content: start;
}
li.dot {
  flex: auto;
  height: 2px !important;
  border-radius: 0 !important;
  margin: 0 !important;
  transition: all .4s ease-in-out;
}
li.dot.is-selected {
  height: 4px !important;
  border-radius: 2px !important;
}
.flickity-prev-next-button {
  top: -50px !important;
  background: #000 !important;
  border-radius: 0 !important;
  color: #fff !important;
  width: 40px !important;
  height: 40px !important;
}
.flickity-prev-next-button.previous {
  right: 75px !important;
  left: unset !important;
}
.flickity-prev-next-button.next {
  right: 15px !important;
}
.flickity-button {
  transition: all .25s ease-in-out;
}
.flickity-button:hover {
  color: #000 !important;
  background: #BC9A60 !important;
}
.page .flickity-prev-next-button .flickity-button-icon {
  left: 30%;
  top: 30%;
  width: 40%;
  height: 40%;
}
.gallery-slider .carousel-cell .gallery-img-wrap {
  transition: all .5s ease-in-out;
}
.gallery-slider .carousel-cell:not(.is-selected) .gallery-img-wrap {
  transform: scale(.95) translate(0, 2.5%);
}




/* ------------------------------ 
    FAQs
------------------------------ */
.accordion-button:not(.collapsed) {
  color: #22ab9e;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #22ab9e;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgb(34 171 158 / 25%);
}
.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="22ab9e"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
  transform: rotate(180deg);
}



/* ------------------------------ 
    Map
------------------------------ */
#map {
  height: 600px;
}
#map #map-content {
  overflow: hidden;
}
.map-title {
  font-size: 1.5em;
  font-weight: 900;
}
.gm-style {
  /* font-family: 'Nunito Sans', sans-serif; */
}
.gm-style .gm-style-iw {
  font-size: 14px;
}



/* ------------------------------ 
    Sitemap Page
------------------------------ */
.sitemap li li {
  font-size: 1em;
  font-weight: 500;
}
.sitemap li {
  font-size: 1.125em;
  font-weight: 700;
}



/* ------------------------------ 
    FAQs
------------------------------ */
.accordion-button {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000 !important;
}
.faq-icon {
  width: 60px;
  height: 60px;
  font-size: 2em;
}



/* ------------------------------ 
    Social Media Share Buttons
------------------------------ */
.share-title {
  text-transform: uppercase;
  display: block;
}
.share-social a:hover {
  text-decoration: none;
}
.share-link {
  padding: 2px 8px 4px 8px !important;
  color: #fff;
  border-radius: 2px;
  margin-right: 2px;
  cursor: pointer;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -moz-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  margin-top: 2px;
  display: inline-block;
  text-decoration: none;
}
.share-link:hover,
.share-link:active,
a.share-link:visited {
  color: #fff;
}
.share-twitter {
  background: #00aced;
  transition: background 0.2s ease-in-out;
}
.share-twitter:hover,
.share-twitter:active {
  background: #0084b4;
}
.share-facebook {
  background: #3b5997;
  transition: background 0.2s ease-in-out;
}
.share-facebook:hover,
.share-facebook:active {
  background: #2d4372;
}
.share-googleplus {
  background: #d64937;
  transition: background 0.2s ease-in-out;
}
.share-googleplus:hover,
.share-googleplus:active {
  background: #b53525;
}
.share-linkedin {
  background: #0074a1;
  transition: background 0.2s ease-in-out;
}
.share-linkedin:hover,
.share-linkedin:active {
  background: #006288;
}
.share-pinterest {
  background: #bd081c;
}
.share-pinterest:hover,
.share-pinterest:active {
  background: #bd081c;
}
.share-social {
  margin: 20px 0px 25px 0px;
  -webkit-font-smoothing: antialiased;
  font-size: 0.75em;
}
.share-social h4 {
  margin-bottom: 5px;
}



/* ------------------------------ 
    Privacy Policy
------------------------------ */
.privacy-policy h3 {
  font-size: 1.25em !important;
}



/* ------------------------------ 
    Footer
------------------------------ */
footer {
  position: relative;
  z-index: 1;
}
.pre-footer .btn-animation {
  padding: 0.875em 2.5em;
  font-size: 1em;
  font-weight: 800;
}
.footer-col {
  flex-basis: content;
}

/* ------------------------------ 
    ActiveDEMAND Form Styling
------------------------------ */
#ad-form .activedemand-replace {
  display: flex !important;
}
#ad-form .container-fluid {
  padding-left: 0px !important;
  padding-right: 0px !important;
}
#ad-form label {
  font-family: Montserrat, sans-serif !important;
  font-weight: 300 !important;
  font-size: 16px !important;
  color: #000 !important;
}
#ad-form .activedemand-wrapper select,
#ad-form .activedemand-wrapper input,
#ad-form .activedemand-wrapper textarea,
#ad-form .activedemand-wrapper .select2 {
  border: 1px solid #bbb!important;
  border-radius: 10px !important;
  background-color: #fff;
  font-size: 16px;
  font-family: Montserrat, sans-serif !important;
  font-weight: 300;
  padding:15px !important;
  color: #141414 !important;
}
#ad-form .activedemand-wrapper .activedemand-input.date {
  width: 100% !important;
}
#ad-form .activedemand-wrapper ::placeholder {
  color: #141414!important;
  font-size: 16px!important;
}
#ad-form .error {
  font-size:12px !important;
  color: red !important;
  margin-bottom:0px !important;
}
#ad-form .activedemand-text-wrapper p {
  color:#fff !important;
  font-size: 18px !important;
}
#ad-form .activedemand-wrapper button.activedemand-button {
  color: #fff !important;
  font-family: Montserrat, sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  background-color: #bc9a60 !important;
  padding:15px 20px !important;
  border-radius: 10px !important;
  width: 100% !important;
  border:1px solid #bc9a60 !important;
}
#ad-form .activedemand-wrapper button.activedemand-button:hover {
  background-color: #000 !important;
  border:1px solid #000 !important;
}

/* ------------------------------ 
    Southlake Testing
------------------------------ */
#southlake-home #home-hero div.container-max.py-300.position-relative {
  padding-top: clamp(200px, 20vw, 200px) !important;
  padding-bottom: clamp(200px, 20vw, 200px) !important;
}
#southlake-home #desktop-nav ul li.main-menu-item, 
#community-southlake-lifestyle #desktop-nav ul li.main-menu-item, 
#community-southlake-assisted-living #desktop-nav ul li.main-menu-item,
#community-southlake-the-cove #desktop-nav ul li.main-menu-item,
#community-southlake-respite-care #desktop-nav ul li.main-menu-item,
#community-southlake-hospitality #desktop-nav ul li.main-menu-item, 
#community-southlake-restaurants #desktop-nav ul li.main-menu-item,
#community-southlake-apartments #desktop-nav ul li.main-menu-item,
#community-southlake-contact #desktop-nav ul li.main-menu-item,
#community-southlake-schedule-visit #desktop-nav ul li.main-menu-item {
  padding:.65em 0;
}
#southlake-home #desktop-nav ul li.main-menu-item:last-child, 
#community-southlake-lifestyle #desktop-nav ul li.main-menu-item:last-child, 
#community-southlake-assisted-living #desktop-nav ul li.main-menu-item:last-child,
#community-southlake-the-cove #desktop-nav ul li.main-menu-item:last-child,
#community-southlake-respite-care #desktop-nav ul li.main-menu-item:last-child,
#community-southlake-hospitality #desktop-nav ul li.main-menu-item:last-child,
#community-southlake-restaurants #desktop-nav ul li.main-menu-item:last-child,
#community-southlake-apartments #desktop-nav ul li.main-menu-item:last-child,
#community-southlake-contact #desktop-nav ul li.main-menu-item:last-child,
#community-southlake-schedule-visit #desktop-nav ul li.main-menu-item:last-child {
  padding: inherit;
}
/* ------------------------------ 
    Shorewood Testing
------------------------------ */
#shorewood-home #home-hero div.container-max.py-300.position-relative {
  padding-top: clamp(200px, 20vw, 200px) !important;
  padding-bottom: clamp(200px, 20vw, 200px) !important;
}
#shorewood-home #desktop-nav ul li.main-menu-item, 
#community-shorewood-lifestyle #desktop-nav ul li.main-menu-item, 
#community-shorewood-assisted-living #desktop-nav ul li.main-menu-item,
#community-shorewood-the-cove #desktop-nav ul li.main-menu-item,
#community-shorewood-the-sound #desktop-nav ul li.main-menu-item,
#community-shorewood-respite-care #desktop-nav ul li.main-menu-item,
#community-shorewood-hospitality #desktop-nav ul li.main-menu-item, 
#community-shorewood-restaurants #desktop-nav ul li.main-menu-item,
#community-shorewood-apartments #desktop-nav ul li.main-menu-item,
#community-shorewood-contact #desktop-nav ul li.main-menu-item,
#community-shorewood-schedule-visit #desktop-nav ul li.main-menu-item {
  padding:.65em 0;
}
#shorewood-home #desktop-nav ul li.main-menu-item:last-child, 
#community-shorewood-lifestyle #desktop-nav ul li.main-menu-item:last-child, 
#community-shorewood-assisted-living #desktop-nav ul li.main-menu-item:last-child,
#community-shorewood-the-cove #desktop-nav ul li.main-menu-item:last-child,
#community-shorewood-the-sound #desktop-nav ul li.main-menu-item:last-child,
#community-shorewood-respite-care #desktop-nav ul li.main-menu-item:last-child,
#community-shorewood-hospitality #desktop-nav ul li.main-menu-item:last-child,
#community-shorewood-restaurants #desktop-nav ul li.main-menu-item:last-child,
#community-shorewood-apartments #desktop-nav ul li.main-menu-item:last-child,
#community-shorewood-contact #desktop-nav ul li.main-menu-item:last-child,
#community-shorewood-schedule-visit #desktop-nav ul li.main-menu-item:last-child {
  padding: inherit;
}
/* ------------------------------ 
    Branford Testing
------------------------------ */
#branford-home #home-hero div.container-max.py-300.position-relative {
  padding-top: clamp(200px, 20vw, 200px) !important;
  padding-bottom: clamp(200px, 20vw, 200px) !important;
}
#branford-home #desktop-nav ul li.main-menu-item, 
#community-branford-lifestyle #desktop-nav ul li.main-menu-item, 
#community-branford-assisted-living #desktop-nav ul li.main-menu-item,
#community-branford-the-cove #desktop-nav ul li.main-menu-item,
#community-branford-the-sound #desktop-nav ul li.main-menu-item,
#community-branford-respite-care #desktop-nav ul li.main-menu-item,
#community-branford-hospitality #desktop-nav ul li.main-menu-item, 
#community-branford-restaurants #desktop-nav ul li.main-menu-item,
#community-branford-apartments #desktop-nav ul li.main-menu-item,
#community-branford-contact #desktop-nav ul li.main-menu-item,
#community-branford-schedule-visit #desktop-nav ul li.main-menu-item {
  padding:.65em 0;
}
#branford-home #desktop-nav ul li.main-menu-item:last-child, 
#community-branford-lifestyle #desktop-nav ul li.main-menu-item:last-child, 
#community-branford-assisted-living #desktop-nav ul li.main-menu-item:last-child,
#community-branford-the-cove #desktop-nav ul li.main-menu-item:last-child,
#community-branford-the-sound #desktop-nav ul li.main-menu-item:last-child,
#community-branford-respite-care #desktop-nav ul li.main-menu-item:last-child,
#community-branford-hospitality #desktop-nav ul li.main-menu-item:last-child,
#community-branford-restaurants #desktop-nav ul li.main-menu-item:last-child,
#community-branford-apartments #desktop-nav ul li.main-menu-item:last-child,
#community-branford-contact #desktop-nav ul li.main-menu-item:last-child,
#community-branford-schedule-visit #desktop-nav ul li.main-menu-item:last-child {
  padding: inherit;
}
/* ------------------------------ 
    Palm Beach Gardens Testing
------------------------------ */
#palm-beach-gardens-home #home-hero div.container-max.py-300.position-relative {
  padding-top: clamp(200px, 20vw, 200px) !important;
  padding-bottom: clamp(200px, 20vw, 200px) !important;
}
#palm-beach-gardens-home #desktop-nav ul li.main-menu-item, 
#community-palm-beach-gardens-lifestyle #desktop-nav ul li.main-menu-item, 
#community-palm-beach-gardens-assisted-living #desktop-nav ul li.main-menu-item,
#community-palm-beach-gardens-the-cove #desktop-nav ul li.main-menu-item,
#community-palm-beach-gardens-the-sound #desktop-nav ul li.main-menu-item,
#community-palm-beach-gardens-respite-care #desktop-nav ul li.main-menu-item,
#community-palm-beach-gardens-hospitality #desktop-nav ul li.main-menu-item, 
#community-palm-beach-gardens-restaurants #desktop-nav ul li.main-menu-item,
#community-palm-beach-gardens-apartments #desktop-nav ul li.main-menu-item,
#community-palm-beach-gardens-contact #desktop-nav ul li.main-menu-item,
#community-palm-beach-gardens-schedule-visit #desktop-nav ul li.main-menu-item {
  padding:.65em 0;
}
#palm-beach-gardens-home #desktop-nav ul li.main-menu-item:last-child, 
#community-palm-beach-gardens-lifestyle #desktop-nav ul li.main-menu-item:last-child, 
#community-palm-beach-gardens-assisted-living #desktop-nav ul li.main-menu-item:last-child,
#community-palm-beach-gardens-the-cove #desktop-nav ul li.main-menu-item:last-child,
#community-palm-beach-gardens-the-sound #desktop-nav ul li.main-menu-item:last-child,
#community-palm-beach-gardens-respite-care #desktop-nav ul li.main-menu-item:last-child,
#community-palm-beach-gardens-hospitality #desktop-nav ul li.main-menu-item:last-child,
#community-palm-beach-gardens-restaurants #desktop-nav ul li.main-menu-item:last-child,
#community-palm-beach-gardens-apartments #desktop-nav ul li.main-menu-item:last-child,
#community-palm-beach-gardens-contact #desktop-nav ul li.main-menu-item:last-child,
#community-palm-beach-gardens-schedule-visit #desktop-nav ul li.main-menu-item:last-child {
  padding: inherit;
}
/* ------------------------------ 
    Plano Testing
------------------------------ */
#plano-home #home-hero div.container-max.py-300.position-relative {
  padding-top: clamp(200px, 20vw, 200px) !important;
  padding-bottom: clamp(200px, 20vw, 200px) !important;
}
#plano-home #desktop-nav ul li.main-menu-item, 
#community-plano-lifestyle #desktop-nav ul li.main-menu-item, 
#community-plano-assisted-living #desktop-nav ul li.main-menu-item,
#community-plano-the-cove #desktop-nav ul li.main-menu-item,
#community-plano-the-sound #desktop-nav ul li.main-menu-item,
#community-plano-respite-care #desktop-nav ul li.main-menu-item,
#community-plano-hospitality #desktop-nav ul li.main-menu-item, 
#community-plano-restaurants #desktop-nav ul li.main-menu-item,
#community-plano-apartments #desktop-nav ul li.main-menu-item,
#community-plano-contact #desktop-nav ul li.main-menu-item,
#community-plano-schedule-visit #desktop-nav ul li.main-menu-item {
  padding:.65em 0;
}
#plano-home #desktop-nav ul li.main-menu-item:last-child, 
#community-plano-lifestyle #desktop-nav ul li.main-menu-item:last-child, 
#community-plano-assisted-living #desktop-nav ul li.main-menu-item:last-child,
#community-plano-the-cove #desktop-nav ul li.main-menu-item:last-child,
#community-plano-the-sound #desktop-nav ul li.main-menu-item:last-child,
#community-plano-respite-care #desktop-nav ul li.main-menu-item:last-child,
#community-plano-hospitality #desktop-nav ul li.main-menu-item:last-child,
#community-plano-restaurants #desktop-nav ul li.main-menu-item:last-child,
#community-plano-apartments #desktop-nav ul li.main-menu-item:last-child,
#community-plano-contact #desktop-nav ul li.main-menu-item:last-child,
#community-plano-schedule-visit #desktop-nav ul li.main-menu-item:last-child {
  padding: inherit;
}
/* ------------------------------ 
    Boynton Beach Testing
------------------------------ */
#boynton-beach-home #home-hero div.container-max.py-300.position-relative {
  padding-top: clamp(200px, 20vw, 200px) !important;
  padding-bottom: clamp(200px, 20vw, 200px) !important;
}
#boynton-beach-home #desktop-nav ul li.main-menu-item, 
#community-boynton-beach-lifestyle #desktop-nav ul li.main-menu-item, 
#community-boynton-beach-assisted-living #desktop-nav ul li.main-menu-item,
#community-boynton-beach-the-cove #desktop-nav ul li.main-menu-item,
#community-boynton-beach-the-sound #desktop-nav ul li.main-menu-item,
#community-boynton-beach-respite-care #desktop-nav ul li.main-menu-item,
#community-boynton-beach-hospitality #desktop-nav ul li.main-menu-item, 
#community-boynton-beach-restaurants #desktop-nav ul li.main-menu-item,
#community-boynton-beach-apartments #desktop-nav ul li.main-menu-item,
#community-boynton-beach-contact #desktop-nav ul li.main-menu-item,
#community-boynton-beach-schedule-visit #desktop-nav ul li.main-menu-item {
  padding:.65em 0;
}
#boynton-beach-home #desktop-nav ul li.main-menu-item:last-child, 
#community-boynton-beach-lifestyle #desktop-nav ul li.main-menu-item:last-child, 
#community-boynton-beach-assisted-living #desktop-nav ul li.main-menu-item:last-child,
#community-boynton-beach-the-cove #desktop-nav ul li.main-menu-item:last-child,
#community-boynton-beach-the-sound #desktop-nav ul li.main-menu-item:last-child,
#community-boynton-beach-respite-care #desktop-nav ul li.main-menu-item:last-child,
#community-boynton-beach-hospitality #desktop-nav ul li.main-menu-item:last-child,
#community-boynton-beach-restaurants #desktop-nav ul li.main-menu-item:last-child,
#community-boynton-beach-apartments #desktop-nav ul li.main-menu-item:last-child,
#community-boynton-beach-contact #desktop-nav ul li.main-menu-item:last-child,
#community-boynton-beach-schedule-visit #desktop-nav ul li.main-menu-item:last-child {
  padding: inherit;
}
.btn-sav {
  background: #bc9a60;
  border: 1px solid #bc9a60;
  color: #fff;
	font-weight: 600;
}
.btn-sav:hover, .btn-sav:focus  {
  border: 1px solid #bc9a60 !important;
  background: transparent !important;
}
@media only screen and (max-width: 991px) {
  .btn-sav {
    background: transparent !important;
    border: 0px !important;
    padding: inherit !important;
    font-size: 18px !important;
    text-align: left !important;
  }
}
#event #desktop-nav ul li.main-menu-item {
  padding:.65em 0;
}
#event #desktop-nav ul li.main-menu-item:last-child {
  padding: inherit;
}