/* COLORS */
.base-color {
  color: #000;
}

.white-color {
  color: #fff;
}

.brand-color {
  color: #006AAC;
}

.accent-color {
  color: #004B7A;
}

.secondary-color {
  color: #C5E6A6;
}

.tertiary-color {
  color: #B5BD89;
}

.quaternary-color {
  color: #007EA8;
}

.background-brand-color {
  background-color: #006AAC;
}

.background-accent-color {
  background-color: #004B7A;
}

.background-secondary-color {
  background-color: #C5E6A6;
}

.background-tertiary-color {
  background-color: #B5BD89;
}

.background-quaternary-color {
  background-color: #007EA8;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Alata", serif;
}

.show-res {
  display: none !important;
}
@media (max-width: 992px) {
  .show-res {
    display: block !important;
  }
}

.hide-res {
  display: block !important;
}
@media (max-width: 992px) {
  .hide-res {
    display: none !important;
  }
}

@media (max-width: 1600px) {
  .hide-res-two {
    display: none;
  }
}

.btn-primary {
  background: #006AAC;
  border: 1px solid #006AAC;
  color: #000;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background: #004B7A;
  border: 1px solid #004B7A;
}

p, ul, ol {
  font-size: 22px;
  line-height: 32px;
}

@media (min-width: 992px) {
  nav.navbar {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.nav-fix {
  max-height: 100%;
  position: fixed;
  overflow-y: auto;
  width: 100%;
}

@media (max-width: 992px) {
  .navbar {
    box-shadow: 0 1px 18px 4px rgba(0, 0, 0, 0.14) !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    max-height: 100%;
    position: fixed;
    overflow-y: auto;
    width: 100%;
  }
}

.custom-navbar {
  max-height: 60px;
  transition: all ease-in-out 300ms;
}
.custom-navbar .logo-nav {
  max-height: 70px;
}
.custom-navbar .nav-item {
  font-size: 18px;
}

@media (max-width: 992px) {
  .navbar-nav {
    max-height: 100%;
    overflow-y: unset;
    border-top: solid 1px #fff;
    padding-bottom: 5px;
    margin-top: 3px;
  }
}

@media (max-width: 992px) {
  .navbar-toggler {
    background: #006AAC;
    border: none !important;
    padding: 7px 10px 6px;
    transition: all 0.3s ease-in-out;
  }
  .navbar-toggler:hover {
    opacity: 0.9;
  }
}
.navbar-toggler .fa {
  color: #fff !important;
}

.navbar-nav li.nav-item:not(.phone-nav), .dropdown-item {
  transition: all 0.3s ease-in-out;
}
.navbar-nav li.nav-item:not(.phone-nav):hover, .dropdown-item:hover {
  opacity: 0.9;
}

.navbar-light .navbar-nav .dropdown-menu > :not(a.dropdown-item) {
  background-color: #004B7A;
  color: #fff !important;
  border-color: #006AAC;
}

.navbar-light .navbar-nav .dropdown-menu > a:nth-child(6),
.navbar-light .navbar-nav .dropdown-menu {
  background-color: #004B7A;
  color: #fff !important;
}

.navbar-light .navbar-nav .dropdown-menu > a:nth-child(6) {
  padding-left: 1.5rem;
  padding-right: 1rem;
}

.navbar-light .navbar-nav .dropdown-menu > a:nth-child(6):hover {
  background-color: #006AAC;
}

.navbar-light .navbar-nav .dropdown:hover .nav-link,
.navbar-light .navbar-nav .dropdown:active .nav-link,
.navbar-light .navbar-nav .dropdown:focus .nav-link,
.navbar-light .navbar-nav .no_dropdown:hover .nav-link,
.navbar-light .navbar-nav .no_dropdown:active .nav-link,
.navbar-light .navbar-nav .no_dropdown:focus .nav-link {
  color: white;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 1.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #fff;
  background-color: #004B7A !important;
  text-align: inherit;
  white-space: nowrap;
  border: 0;
}

.dropdown-item:hover {
  background-color: #006AAC !important;
  color: #fff;
}

.btns-home {
  transition: all 0.3s ease-in-out !important;
}
.btns-home:hover {
  background-color: #004B7A !important;
  opacity: 0.9;
}

.phone-nav {
  transition: all 0.3s ease;
}
.phone-nav:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
  .phone-nav {
    margin: 5px 0;
  }
}
@media (max-width: 992px) {
  .phone-nav a {
    padding: 19px 15px !important;
  }
}

.form-control-plaintext {
  padding-left: 10px;
}

@media (min-width: 992px) {
  .dropdown-item {
    padding: 20px 10px;
  }
}
@media (max-width: 992px) {
  .dropdown-item {
    padding: 24px 15px;
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .dropdown-toggle {
    padding-bottom: 20px !important;
  }
}

@media (max-width: 1600px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    margin-bottom: 3px;
  }
}

@media (min-width: 992px) {
  .navbar-brand img {
    padding: 5px;
  }
}

@media (max-width: 992px) {
  .navbar-light .navbar-nav .nav-link {
    padding: 25px 10px;
  }
}

html, .root {
  font-size: 18px;
  line-height: 23px;
  color: #000;
}

body, .article {
  font-family: "Merriweather Sans", sans-serif;
  font-size: 1em;
  line-height: 1.27777778em;
  margin: auto;
  color: #000;
}

h1, .h1 {
  font-size: 6.38888889em;
  line-height: 1em;
  margin-top: 0.2em;
  margin-bottom: 0.4em;
}

h2, .h2 {
  font-size: 3.44444444em;
  line-height: 1.11290323em;
  margin-top: 0.37096774em;
  margin-bottom: 0.37096774em;
}

h3, .h3 {
  font-size: 1.83333333em;
  line-height: 1.39393939em;
  margin-top: 0.6969697em;
  margin-bottom: 0;
}

h4, .h4 {
  font-size: 1em;
  line-height: 1.27777778em;
  margin-top: 1.27777778em;
  margin-bottom: 0;
}

h5, .h5 {
  font-size: 1em;
  line-height: 1.27777778em;
  margin-top: 1.27777778em;
  margin-bottom: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: #006AAC;
}

p, ul, ol, pre, table, blockquote {
  margin-top: 0;
  margin-bottom: 1.27777778em;
}

ul ul, ol ol, ul ol, ol ul {
  margin-top: 0;
  margin-bottom: 0;
}

.font-18 {
  font-size: 1em;
}

/* Let's make sure all's aligned */
hr, .hr {
  border: 1px solid;
  margin: -1px 0;
}

hr.style-two {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

a, b, i, strong, em, small, code {
  line-height: 0;
}

sub, sup {
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

.yellow-font {
  color: #C5E6A6;
}

.dark-yellow-font {
  color: #d6a317;
}

.blue-font {
  color: #006AAC;
}

.white-font {
  color: #fff !important;
}

.black-font {
  color: #000;
}

.beige-font {
  color: #d0b076;
}

.yellow_background {
  background-color: #C5E6A6;
}

.beige-background {
  background-color: #d0b076;
}

.blue-gradient-background {
  background: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -webkit-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -o-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="$brand-color", endColorstr="$brand-color");
  border-color: #006AAC;
  color: #fff !important;
}

.yellow-gradient-background {
  background: linear-gradient(to bottom, #C5E6A6 66%, #C5E6A6 100%);
  background-image: -webkit-linear-gradient(to bottom, #C5E6A6 66%, #C5E6A6 100%);
  background-image: -o-linear-gradient(to bottom, #C5E6A6 66%, #C5E6A6 100%);
  background-image: linear-gradient(to bottom, #C5E6A6 66%, #C5E6A6 100%);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="$secondary-accent-color", endColorstr="$secondary-accent-color");
  border-color: #C5E6A6;
  color: #fff !important;
}

.yellow-gradient-background-two {
  background: #006AAC !important;
  transition: all 0.3s ease-in-out;
}
.yellow-gradient-background-two:hover {
  background: #004B7A !important;
}

.bg-light {
  background-color: #fff !important;
}

.text-center {
  text-align: center !important;
}

.font-2 {
  font-size: 2em;
}

.font-3 {
  font-size: 3em;
}

.font-4 {
  font-size: 4em;
}

.font-5 {
  font-size: 5em;
}

.font-20 {
  font-size: 1.2em;
}

.font-23 {
  font-size: 1.4em;
}

.font-26 {
  font-size: 1.6em;
}

.font-center {
  text-align: center;
}

.font-right {
  text-align: right;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pa-1 {
  padding: 1em;
}

.pa-2 {
  padding: 2em;
}

.pa-3 {
  padding: 3em;
}

.pa-4 {
  padding: 4em;
}

.pa-5 {
  padding: 5em;
}

.py-1 {
  padding-top: 1em;
  padding-bottom: 1em;
}

.py-2 {
  padding-top: 2em;
  padding-bottom: 2em;
}

.py-3 {
  padding-top: 3em !important;
  padding-bottom: 3em !important;
}

.py-4 {
  padding-top: 4em;
  padding-bottom: 4em;
}

.py-5 {
  padding-top: 5em;
  padding-bottom: 5em;
}

.py-6 {
  padding-top: 6em;
  padding-bottom: 6em;
}

.py-7 {
  padding-top: 7em;
  padding-bottom: 7em;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 1em !important;
}

.mt-2 {
  margin-top: 2em !important;
}

.mt-3 {
  margin-top: 3em !important;
}

.mt-4 {
  margin-top: 4em !important;
}

.mt-5 {
  margin-top: 5em !important;
}

.ma-0 {
  margin: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-5-2 {
  margin-left: 5.2rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

a {
  color: #006AAC;
}

.box-shadow {
  box-shadow: 0 0 5px 0 #333;
}

.display-inline {
  display: inline;
}

.navbar {
  background-color: #fff !important;
}

.navbar-brand img {
  width: auto;
  max-width: 170px;
  height: auto;
}

.icon-boxes {
  box-shadow: inset -8px 5px 15px -7px #333333;
}

.btn {
  border-radius: 0;
}

.default-btn {
  background: #006AAC;
  color: #fff !important;
  padding: 15px 20px;
  box-shadow: 1px 1px 5px 0 #333;
}

.btn-default {
  background-color: #C5E6A6;
  color: #000 !important;
  border-color: #C5E6A6;
}

.btn-blue {
  background: #006AAC;
  border: 1px solid #006AAC;
}

.btn-grey {
  background: -webkit-linear-gradient(#d9d9d9 50%, #a6a6a6 75%);
  background-image: -webkit-linear-gradient(#d9d9d9 50%, #a6a6a6 75%);
  background-image: -o-linear-gradient(#d9d9d9 50%, #a6a6a6 75%);
  background-image: linear-gradient(#d9d9d9 50%, #a6a6a6 75%);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="#d9d9d9", endColorstr="#a6a6a6");
  border: 1px solid #006AAC;
  color: #000 !important;
}

.btn-green {
  background: -webkit-linear-gradient(#119d42 50%, #119d42 75%);
  background-image: -webkit-linear-gradient(#119d42 50%, #119d42 75%);
  background-image: -o-linear-gradient(#119d42 50%, #119d42 75%);
  background-image: linear-gradient(#119d42 50%, #119d42 75%);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="#119d42", endColorstr="#119d42");
  border: 1px solid #119d42;
}

.second.btn-green {
  min-width: 230px;
  background: #83bf36;
  background: -moz-linear-gradient(top, #83bf36 0%, #79b32e 95%, #457c00 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #83bf36), color-stop(95%, #79b32e), color-stop(100%, #457c00));
  background: -webkit-linear-gradient(top, #83bf36 0%, #79b32e 95%, #457c00 100%);
  background: -o-linear-gradient(top, #83bf36 0%, #79b32e 95%, #457c00 100%);
  background: -ms-linear-gradient(top, #83bf36 0%, #79b32e 95%, #457c00 100%);
  background: linear-gradient(to bottom, #83bf36 0%, #79b32e 95%, #457c00 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#83bf36", endColorstr="#457c00", GradientType=0);
  border: solid 1px #457c00;
  color: White;
  max-width: 4em;
  width: auto;
  position: relative;
  display: block;
  margin: 0 auto 15px;
}

.btn-danger {
  border-radius: 5px !important;
}

.yellow-text-gradient {
  /*background: linear-gradient(to bottom, $secondary-accent-color 66%, $secondary-accent-color 100%);*/
  background: -webkit-linear-gradient(#C5E6A6, #C5E6A6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-stretch: expanded;
  font-size: 140%;
}

small, .small {
  font-size: 80%;
  font-weight: 700;
}

.engineering {
  font-style: italic;
  font-weight: bold;
}

.engineeering > small {
  font-weight: 900 !important;
}

.icon-background {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center left;
}

ul.bounce {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

.btn.btn-lg.black {
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

/* Scroll down indicator (bouncing) */
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.differentiation {
  list-style-position: inside;
}

ul.differentiation li {
  padding: 5px;
}

.nav-space {
  height: 90px;
}

.uppercase {
  text-transform: uppercase;
}

.border-bottom {
  border-bottom: 1px solid #006AAC;
}

/* static call to action buttons on base.html */
.cta-buttons {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: 9999;
}

.cta-buttons a {
  background: #B5BD89;
  border: 1px solid #B5BD89;
  line-height: 160%;
  font-size: 1.3em;
  padding: 10px 20px 10px;
  text-transform: uppercase;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.6);
  transition: background-color 0.5s ease;
  -webkit-transition: background-color 0.5s ease;
  z-index: 98;
  color: #000;
}

.cta-buttons a:hover, .cta-buttons a:focus {
  text-decoration: none;
  z-index: 98;
}

/***** NAVIGATION *****/
.navbar-nav li.nav-item:not(.phone-nav) {
  margin-right: 10px;
}

.phone-nav {
  background-color: #006AAC;
  color: #fff !important;
  border-color: #006AAC;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.35);
}

.phone-nav a {
  color: white !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #006AAC;
  height: 53px !important;
}

.nav-item .nav-link {
  padding: 25px;
}

.no_dropdown {
  padding-top: 5px;
  /*background-color:$brand-color;*/
}

.dropdown {
  padding-bottom: 5px;
  /*background-color:$brand-color;*/
}

.navbar-brand {
  display: inline-block;
  /* padding-top: .3125rem; */
  /* padding-bottom: .3125rem; */
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
}

@media (max-width: 992px) {
  .nav-link {
    transition: all 0.3s ease-in-out;
    font-weight: bold;
  }
  .nav-link:hover {
    opacity: 0.9;
  }
}

.navbar-light .navbar-nav .dropdown:hover,
.navbar-light .navbar-nav .dropdown:active,
.navbar-light .navbar-nav .dropdown:focus,
.navbar-light .navbar-nav .no_dropdown:hover,
.navbar-light .navbar-nav .no_dropdown:active,
.navbar-light .navbar-nav .no_dropdown:focus,
.navbar-light .navbar-nav .phone-nav:hover,
.navbar-light .navbar-nav .phone-nav:active,
.navbar-light .navbar-nav .phone-nav:focus {
  background-color: #006AAC;
  color: #fff !important;
  border-color: #006AAC;
}
@media (max-width: 992px) {
  .navbar-light .navbar-nav .dropdown:hover,
  .navbar-light .navbar-nav .dropdown:active,
  .navbar-light .navbar-nav .dropdown:focus,
  .navbar-light .navbar-nav .no_dropdown:hover,
  .navbar-light .navbar-nav .no_dropdown:active,
  .navbar-light .navbar-nav .no_dropdown:focus,
  .navbar-light .navbar-nav .phone-nav:hover,
  .navbar-light .navbar-nav .phone-nav:active,
  .navbar-light .navbar-nav .phone-nav:focus {
    background: none !important;
    color: #006AAC !important;
  }
  .navbar-light .navbar-nav .dropdown:hover a,
  .navbar-light .navbar-nav .dropdown:active a,
  .navbar-light .navbar-nav .dropdown:focus a,
  .navbar-light .navbar-nav .no_dropdown:hover a,
  .navbar-light .navbar-nav .no_dropdown:active a,
  .navbar-light .navbar-nav .no_dropdown:focus a,
  .navbar-light .navbar-nav .phone-nav:hover a,
  .navbar-light .navbar-nav .phone-nav:active a,
  .navbar-light .navbar-nav .phone-nav:focus a {
    background: none !important;
    color: #006AAC !important;
  }
  .navbar-light .navbar-nav .dropdown:hover a:hover,
  .navbar-light .navbar-nav .dropdown:active a:hover,
  .navbar-light .navbar-nav .dropdown:focus a:hover,
  .navbar-light .navbar-nav .no_dropdown:hover a:hover,
  .navbar-light .navbar-nav .no_dropdown:active a:hover,
  .navbar-light .navbar-nav .no_dropdown:focus a:hover,
  .navbar-light .navbar-nav .phone-nav:hover a:hover,
  .navbar-light .navbar-nav .phone-nav:active a:hover,
  .navbar-light .navbar-nav .phone-nav:focus a:hover {
    opacity: 0.9;
  }
}

.navbar-light .navbar-nav .dropdown-menu > :not(a.dropdown-item) {
  background-color: #B5BD89;
  color: #000 !important;
  border-color: #B5BD89;
}

.navbar-light .navbar-nav .dropdown-menu > a:nth-child(6),
.navbar-light .navbar-nav .dropdown-menu {
  background-color: #B5BD89;
  color: #000 !important;
}

.navbar-light .navbar-nav .dropdown-menu > a:nth-child(6) {
  padding-left: 0.5rem;
  padding-right: 0;
}

.navbar-light .navbar-nav .dropdown-menu > a:nth-child(6):hover {
  background-color: #006AAC;
}

.navbar-light .navbar-nav .dropdown:hover .nav-link,
.navbar-light .navbar-nav .dropdown:active .nav-link,
.navbar-light .navbar-nav .dropdown:focus .nav-link,
.navbar-light .navbar-nav .no_dropdown:hover .nav-link,
.navbar-light .navbar-nav .no_dropdown:active .nav-link,
.navbar-light .navbar-nav .no_dropdown:focus .nav-link {
  color: white;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 20px 15px;
  font-size: 18px;
  clear: both;
  font-weight: 400;
  color: #000;
  background-color: #B5BD89 !important;
  text-align: inherit;
  white-space: nowrap;
  border: 0;
  border-bottom: solid 1px #fff;
}
.dropdown-item:last-child {
  border-bottom: 0;
}

.dropdown > a:before {
  font-family: "FontAwesome";
  content: "";
  position: absolute;
  left: auto;
  top: 15px;
  right: 6px;
  line-height: 1;
  color: #d1d1d1;
}

li.dropdown-item > a {
  color: #000 !important;
}

nav.navbar {
  padding-left: 10px;
  padding-right: 10px;
}

.hebe.tparrows {
  background-color: #006AAC;
}

.btn {
  white-space: normal;
}

.inline {
  display: inline;
}

.nav-link img {
  height: 50px;
  width: auto !important;
  border-radius: 50%;
  margin-top: -28%;
}

.profile-thumbnail {
  height: auto !important;
  width: auto !important;
  border-radius: 50%;
}

.dropdown:hover > .dropdown-menu {
  display: block;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  float: left;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  top: 58px;
  left: 0;
  min-width: auto;
  padding: 0;
  margin: 0;
  font-size: 18px;
  border: none;
}

.dropdown-divider {
  height: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
  border-top: 4px solid #fff;
  background-color: #C5E6A6;
}

/***** HOME *****/
.very_large_text h2 {
  font-size: 1em !important;
  color: #006AAC;
  line-height: 1em !important;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3px !important;
  text-align: center !important;
  border-radius: 10px;
}

.paragraph-style {
  text-shadow: 1px 1px 5px black;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 5px;
  white-space: nowrap;
  font-size: 1.4em !important;
}

.tp-caption.black, .tp-caption .btn.black, .tp-caption .btn.black:hover {
  color: white;
}

/***** FOOTER *****/
footer {
  border-top: 5px solid #006AAC;
  background: #fff;
  color: #000;
}
footer li {
  color: #000;
}
footer a {
  color: #000;
}

.background-dating {
  background-image: url(../images/iStock-614127896.jpg);
}

.parallax {
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.about-section {
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: 25%;
}

.service-image {
  display: block !important;
}

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

@media (max-width: 992px) {
  .service-image-res {
    display: block !important;
  }
}
.search-backgrounds {
  -webkit-background-size: cover !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center;
  height: 700px;
}

.search-backgrounds .search-content > a.btn-default {
  padding: 2.5rem 2.75rem;
  font-size: 2rem;
  margin-left: 20% !important;
  margin-right: 20% !important;
}

.service-image-res {
  display: none !important;
  max-width: 312px;
}

.search-content {
  padding: 11%;
}

.search-content > p, .search-content > ul {
  font-size: 0.8em;
  margin: 0 10%;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 15px;
}

.search-content > ul {
  font-size: 0.6em;
  padding: 15px 15px 15px 30px;
}

.search-content > p {
  margin-top: 25px;
}

td.register-cell, th.register-column {
  width: 20%;
  vertical-align: middle;
  text-align: center;
}

.register-cell h4 {
  margin-top: 0;
}

.background-testimonial {
  background-image: url(../images/iStock-172368377.jpg);
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.8);
  margin-left: 22%;
}

.testimonial > blockquote > p {
  font-size: 1.5em;
  line-height: 1em;
}

.testimonial > blockquote > footer {
  font-size: 1.2em;
  line-height: 1em;
}

.partners-search-section {
  margin-left: 25%;
  width: 50%;
  padding: 0 20px 15px;
  margin-top: 20%;
}

.partners-search-section.right {
  background-color: rgba(255, 255, 255, 0.8);
}

.partners-search-section.left {
  background-color: rgba(17, 108, 157, 0.8);
}

.footer-item .footer-social li a {
  font-size: 1.4em;
}

.testimonial {
  padding: 25px;
}

.testimonial-image {
  max-width: 200px;
}

.footer-item h6 {
  border-bottom: 1px solid #fff;
  font-size: 1.5em;
}

.newsletter-form-group {
  width: 50%;
}

.newsletter-form-group {
  border: 1px solid #006AAC;
}
.newsletter-form-group input {
  width: 100%;
}

.propertyMap {
  height: 100vh;
  width: 100%;
}

#bedroomSlider .slider-selection,
#bathroomSlider .slider-selection,
#priceSlider .slider-selection,
.slider-selection {
  background: #B5BD89 !important;
}

.slider-track {
  position: absolute;
  cursor: pointer;
  background-image: -webkit-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0%, #f9f9f9 100%);
  background-image: linear-gradient(to bottom, #f5f5f5 0%, #f9f9f9 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="$white-color5f5f5", endColorstr="$white-color9f9f9", GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  border: 1px solid rgba(17, 108, 157, 0.4);
}

.in {
  opacity: 0.9;
}

.slider .tooltip.top {
  margin-top: 23px !important;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #006AAC;
  border-radius: 0.25rem;
}

a.disabled:active {
  pointer-events: none;
}

/*.slider-handle {*/
/*  position: absolute;*/
/*  top: -10px !important;*/
/*  width: 30px !important;*/
/*  height: 30px !important;*/
/*  background-color: transparent !important;*/
/*  background-image: url(../images/palm-down-arrow-blue.png) !important;*/
/*  background-repeat: no-repeat !important;*/
/*  background-size: cover !important;*/
/*  filter: none !important;*/
/*  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05) !important;*/
/*  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05) !important;*/
/*  border: 0 solid transparent !important;*/
/*}*/
.slider-handle {
  background-color: #006AAC;
}

.slider.slider-horizontal .slider-tick, .slider.slider-horizontal .slider-handle {
  margin-left: -17px !important;
}

.btn-primary {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.35);
}

.search-row {
  position: relative;
  /*top: 100px;*/
  width: 100%;
  z-index: 10;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px 15px 0;
}

.search-results {
  margin-top: 115px !important;
}

.search-results h3,
.list-results h3 {
  font-size: 1.2em;
}

.search-results a.search-views,
.list-results a.search-views {
  font-size: 0.7em;
}

.property-list-container {
  /*margin-top: 110px;*/
}

/***** MEMBER SIGNUP *****/
.btn-primary.disabled, .btn-primary:disabled {
  opacity: 0.45;
  background: -webkit-linear-gradient(#006AAC, #006AAC);
  background-image: -webkit-linear-gradient(#006AAC, #006AAC);
  background-image: -o-linear-gradient(#006AAC, #006AAC);
  background-image: linear-gradient(#006AAC, #006AAC);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="$brand-color", endColorstr="$brand-color");
  border: 1px solid #006AAC;
}

.btn-primary {
  background: #B5BD89;
  border: 1px solid #B5BD89;
  color: #000 !important;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background: #004B7A;
  border: 1px solid #004B7A;
  color: #fff !important;
}

#login {
  display: none;
  padding: 2% 10%;
}

#loginPrimary {
  padding: 2% 10%;
}

#signup {
  padding: 2% 0;
}

#signupSecondary {
  display: none;
  padding: 2% 0;
}

#membership .card-body {
  box-shadow: 0 0 10px 1px #333;
}

#membership {
  background-color: rgba(255, 255, 255, 0.9);
}

.form-control,
.select2-container--default .select2-selection--multiple {
  box-shadow: none;
}

#member-city-search {
  display: block;
}

#id_location {
  width: 45%;
  display: inline !important;
  margin-top: 0 !important;
}

#id_distance {
  display: inline !important;
  width: 19%;
}

.carousel-control-next {
  right: 0;
}

.search-views.gray {
  opacity: 0.45;
  background: -webkit-linear-gradient(#006AAC, #006AAC);
  background-image: -webkit-linear-gradient(#006AAC, #006AAC);
  background-image: -o-linear-gradient(#006AAC, #006AAC);
  background-image: linear-gradient(#006AAC, #006AAC);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="$brand-color", endColorstr="$brand-color");
  border: 1px solid #006AAC;
}

/***** PROPERTY DETAILS *****/
/* Container needed to position the button. Adjust the width as needed */
.image-container {
  position: relative;
  box-shadow: 0 0 5px 1px #333;
  width: 100%;
  padding: 0;
}

/* Make the image responsive */
.image-container img {
  width: 100%;
  height: auto;
}

/* Style the button and place it in the middle of the container/image */
.image-container .btn-primary {
  position: absolute;
  bottom: 0;
  left: 12%;
  margin-bottom: -15px;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: white;
  font-size: 16px;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
}

.border-right {
  border-right: 1px solid black;
}

hr.style-two {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  background-image: -webkit-linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.amenity-icon img {
  display: inline;
  width: 25px;
  height: auto;
}

.create-profile .card-header.profile,
.update-profile .card-header.profile {
  padding: 1.2rem 1.25rem;
  margin-bottom: 0;
  background-color: #B5BD89;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card.create-profile,
.card.payment-history {
  background-color: rgba(255, 255, 255, 0.8);
}

.card.payment-history, .card.update-payment {
  background-color: rgba(255, 255, 255, 0.8);
  width: 100%;
}

#desired_city {
  width: 65%;
  display: inline;
}

#desired_distance {
  width: 30%;
  display: inline;
}

#desired_city_label {
  display: block;
}

#desired_city_search {
  width: 50%;
  display: inline-block;
  max-width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  line-height: 1.25;
  color: #495057;
  vertical-align: middle;
  background: #fff;
  background-size: 8px 10px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.profile-image {
  max-width: 175px !important;
  height: auto;
  display: block;
  margin: 0 auto;
}

#select_seasons,
#select_age_children,
#select_amenities {
  height: 60px;
  background: white;
}

#school_vacations_no,
#school_vacations_yes,
#text_notificationsgi {
  margin-left: 0;
}

.property-thumbnails {
  margin-bottom: 15px;
  width: 49%;
  display: inline;
}

.profile-dashboard-buttons {
  font-size: 1.2em;
  padding-top: 5px;
  padding-bottom: 5px;
  display: block;
}

.member-dashboard-padding {
  padding: 5em 0;
}

.update-payment-padding {
  padding: 8em 0;
}

.login-screen-padding {
  padding: 6em 0;
}

.how-it-works-banner-padding {
  padding: 10em 0;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: white;
  text-shadow: 0 1px 0 #fff;
  opacity: 1;
}

#set_status_form .form-check-label {
  padding-left: 1.75rem;
  margin-bottom: 0;
}

#set_status_form .form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: 0.75rem;
}

/***** MESSAGES *****/
.message-left p.members-messages {
  color: black;
  margin-bottom: 0;
}

.message-left, .message-right {
  /*max-width: 60%;*/
  width: auto;
  border-radius: 30px;
  padding: 15px;
}

.message-right {
  background-color: #006AAC;
}

.message-left {
  background-color: #e6e6e6;
}

.message-right p.members-messages {
  color: white;
  margin-bottom: 0;
}

.accept-message .form-check {
  background-color: #bedf9d;
  margin: 15px 0 0 0;
  padding: 15px;
}

.reject-message .form-check {
  background-color: #f7f0a9;
  margin: 15px 0 0 0;
  padding: 15px;
}

.compose-button {
  box-shadow: 0 0 10px 5px #eee;
  border-radius: 50px;
  padding: 15px 0;
  margin: 0 100px 15px;
}

.message-action-buttons a i {
  color: #006AAC;
  font-size: 1.4em;
}

.message-action-buttons a {
  padding: 1em;
}

.more-options-button .btn {
  padding: 1em;
}

.message-action-buttons a:hover,
.more-options-button > .btn-secondary.dropdown-toggle:hover,
.more-options-button.show > .btn-secondary.dropdown-toggle:focus,
.more-options-button.show > .btn-secondary.dropdown-toggle:active {
  background-color: lightgrey;
  border-radius: 50%;
  padding: 1em;
  border-color: white !important;
  cursor: pointer;
}

.message-action-buttons a:hover i,
.more-options-button > .btn-secondary.dropdown-toggle:hover {
  color: white;
}

.more-options-button .btn-secondary {
  color: #444;
  background-color: #fff;
  border-color: #fff;
}

.more-options-button.show > .btn-secondary.dropdown-toggle {
  background-color: #fff;
  background-image: none;
  border-color: #fff;
}

/*.more-options-button.show > .btn-secondary.dropdown-toggle:hover,*/
/*{*/
/*background-color: lightgrey;*/
/*background-image: none;*/
/*border-color: $white-color;*/
/*}*/
.dropdown-toggle::after {
  display: none;
  width: 0;
  height: 0;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}

.individual-members {
  color: #006AAC;
}

.nav-pills .nav-link.active, .show > .nav-pills .nav-link {
  color: #fff;
  background-color: #006AAC;
}

.nav-pills .nav-link.active .individual-members span i {
  color: #006AAC;
}

.nav-link.individual-members.active.show p.contact-list-name i.fa-exclamation-circle {
  color: lime !important;
}

.message-search .input-group {
  border: 1px solid black;
  padding: 5px;
  border-radius: 5px;
}

table.dataTable thead th, table.dataTable thead td {
  padding: 10px 18px;
  border-bottom: 1px solid #111;
  color: #006AAC;
  text-align: center;
  background-color: #C5E6A6;
}

table.dataTable thead th, table.dataTable tfoot th {
  font-weight: bold;
}

.table td, .table th {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #e9ecef;
}

select.form-control:not([size]):not([multiple]) {
  height: calc(1.7rem + 7px);
}

select.form-control[multiple] {
  height: calc(1.7rem + 7px);
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
  box-sizing: border-box;
  list-style: none;
  margin: 0;
  padding: 1px 5px;
  width: 100%;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.5rem;
  font-size: 0.8rem;
  line-height: 1em;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #006AAC !important;
  border: 1px solid #fff;
  color: white !important;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin-right: 5px;
  margin-top: 5px;
  padding: 0 5px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: #fff !important;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 2px;
}

label {
  display: inline-block;
  margin-bottom: 0.1rem;
}

.form-group {
  margin-bottom: 0.5rem;
}

.g-color-white-opacity-0_5, .g-color-white-opacity-0_5--hover:hover {
  color: rgba(255, 255, 255, 0.5) !important;
}

.g-bg-gray-dark-v1 {
  background-color: #111 !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-underline {
  text-decoration: underline;
}

.text-center {
  text-align: center !important;
}

.icon::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.benefits::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f00c";
  color: green;
}

.g-color-white {
  color: #fff !important;
}

.g-font-size-26 {
  font-size: 1.85714rem !important;
}

.g-rounded-50x {
  border-radius: 50%;
}

.g-bg-gray-dark-v1 {
  background-color: #111 !important;
}

.u-icon-v3.u-icon-size--xl {
  width: 6.42857rem;
  height: 6.42857rem;
}

@media (min-width: 0) {
  .g-pb-15 {
    padding-bottom: 1.07143rem !important;
  }
}
@media (min-width: 0) {
  .g-px-40 {
    padding-left: 2.85714rem !important;
    padding-right: 2.85714rem !important;
  }
}
.g-pos-rel {
  position: relative !important;
}

.g-letter-spacing-3 {
  letter-spacing: 0.21429rem;
}

@media (min-width: 0) {
  .g-mt-minus-25 {
    margin-top: -1.78571rem !important;
  }
}
.g-pa-40 {
  padding: 2.85714rem !important;
}

@media (min-width: 0) {
  .g-pa-40 {
    padding: 2.85714rem !important;
  }
}
/***RESPONSIVENESS***/
.tp-caption-res-left {
  margin-left: -150px !important;
}

.tp-caption-res-right {
  margin-right: -150px !important;
}

.search-backgrounds {
  font-size: 1.6em;
  /*margin-bottom: 50px;*/
}

.container-copyright-footer {
  padding-bottom: 55px;
}

.break-res {
  display: none !important;
}

.copyright-text {
  margin-top: 0.8em;
  margin-bottom: 1em;
}

.member-profile-form-text {
  float: none !important;
  text-align: center !important;
  display: block;
  margin: 20px auto 10px;
}

.member-profile-text {
  float: none;
  text-align: right;
  display: block;
  margin: 10px 0;
}

.col-login {
  width: 50% !important;
  max-width: 50% !important;
  flex: 50% !important;
  margin: 0 auto;
}

#loginPrimary {
  padding: 15px 0 0;
}

.welcome-text {
  font-size: 2.1em;
  padding: 1em;
}

.price-range {
  margin-top: -15px !important;
}

.contact-info-text {
  font-size: 70%;
  font-weight: 300 !important;
}

.palm-down-arrow:focus {
  outline: none !important;
  box-shadow: none !important;
}

.palm-arrow-container {
  font-size: 1em;
}

.palm-arrow-container:focus {
  outline: none !important;
  box-shadow: none !important;
}

.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.container-full {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.col-full {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.col-full-left {
  padding-left: 0 !important;
}

.col-full-right {
  padding-right: 0 !important;
}

.become-member-title {
  font-size: 2.1em;
  padding: 1em;
}

.dashboard-image-res {
  display: none !important;
}

.col-messages {
  border-left: 1px solid black;
}

.col-search-map2 {
  height: 100vh;
  overflow-y: scroll;
  background: url("../images/iStock-851833736.jpg");
  background-repeat: no-repeat;
  background-position: center center;
}

.container-fluid-payment-history {
  padding: 6em 0 !important;
  background-size: cover !important;
  background: url("../images/iStock-835817178.jpg") no-repeat center center;
}

.border-right-res {
  border-right: 1px solid black;
}

.interested-partner-text {
  font-size: 1.2em;
  padding-top: 5px;
  padding-bottom: 5px;
}

.btn-connect-me {
  font-size: 1.2em;
  padding-top: 5px;
  padding-bottom: 5px;
}

.back-search-results {
  font-size: 1.2em;
  padding-top: 5px;
  padding-bottom: 5px;
}

.image-member-profile-res {
  max-width: 7%;
  width: 7%;
}

.status-icon-member-profile {
  width: 60px;
  height: auto;
}

.interested-property-text {
  font-size: 1em;
  padding-top: 5px;
  padding-bottom: 5px;
}

.we-help-title {
  font-size: 30px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .we-help-title {
    margin: 40px 0 30px;
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .we-help-title {
    padding-top: 100px;
    margin: 60px 0 50px;
  }
}

.member-logggedIn-response {
  margin-left: 7% !important;
}

.member-logggedIn-date {
  margin-left: 15% !important;
  margin-top: 2% !important;
}

.member-messageWith-date {
  margin-left: 8% !important;
  margin-top: 2% !important;
}

.col-special-prelaunch {
  padding: 0;
}

.mb-15 {
  margin-bottom: 15px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.regular-link {
  transition: all 0.3s ease-in-out;
}
.regular-link:hover {
  opacity: 0.9;
}
@media (min-width: 992px) {
  .regular-link {
    text-decoration: none !important;
    color: #006AAC;
    font-weight: bold;
  }
}
@media (max-width: 992px) {
  .regular-link {
    display: inline !important;
    background: none !important;
    color: #006AAC !important;
    font-weight: bold !important;
    padding: 0 !important;
    text-transform: none !important;
  }
}

@media (max-width: 992px) {
  .text-res {
    font-size: 18px;
    line-height: 28px;
  }
}

.payment-history-title {
  font-size: 3em !important;
  line-height: 40px;
  margin-bottom: 0;
  background-color: #B5BD89 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
  padding: 35px 1.25rem !important;
}

#about-page .card-img-top {
  width: 70%;
  display: block;
  margin: 0 auto;
  padding: 15px 0 0;
}

@media (min-width: 1200px) {
  .property-list-container {
    /*margin-top: 110px;*/
  }
}
@media (max-width: 1650px) {
  .navbar-container-res {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .section-how-it-works h2 {
    font-size: 2.6em !important;
  }
  .section-how-it-works h3 {
    font-size: 1.4em !important;
  }
  .section-how-it-works h4 {
    font-size: 1em !important;
  }
  .section-how-it-works ul {
    font-size: 22px !important;
    line-height: 32px;
  }
  .section-how-it-works p {
    margin-top: 25px !important;
    margin-bottom: 0;
    line-height: 1.1em;
    font-weight: lighter;
  }
  .purchase-text {
    margin-bottom: 20px !important;
  }
  .col-how-it-works {
    width: 44% !important;
    max-width: 44% !important;
    flex: 44% !important;
  }
  .create-conversation {
    float: none !important;
    margin-bottom: 10px;
    margin-top: 5px;
    display: block !important;
  }
}
@media (max-width: 1570px) and (min-width: 1200px) {
  .select-home-map-res {
    margin-top: 0 !important;
  }
  .container-fluid-home-top {
    margin-top: 180px !important;
  }
}
@media (max-width: 1490px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 13px;
  }
  .logo-nav {
    height: auto;
    width: auto;
    max-width: 320px;
    padding: 5px 0;
  }
  .navbar-container-res {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .tp-caption-res-left {
    margin-left: 50px !important;
  }
  .tp-caption-res-right {
    margin-right: 50px !important;
  }
  .hide-col-how-it-works {
    display: none !important;
  }
  .col-signup {
    width: 80% !important;
    max-width: 80% !important;
    flex: 80% !important;
    margin: 0 auto;
  }
  .col-login {
    width: 60% !important;
    max-width: 60% !important;
    flex: 60% !important;
    margin: 0 auto;
  }
}
@media (max-width: 1376px) and (min-width: 1200px) {
  .container-fluid-home-top2 {
    margin-top: -100px !important;
  }
  .list-results p {
    font-size: 15px !important;
  }
  .float-none-res-match {
    float: none !important;
    display: block !important;
    margin: 10px 0;
    text-align: left !important;
  }
}
@media (max-width: 1357px) {
  .property-thumbnails {
    width: 100%;
  }
  .interested-partner-text {
    font-size: 16px;
  }
  .btn-connect-me {
    font-size: 20px;
  }
  .back-search-results {
    font-size: 1em;
  }
  .image-member-profile-res {
    max-width: 7%;
    width: 7%;
  }
  .status-icon-member-profile {
    width: 60px;
    height: auto;
  }
}
@media (max-width: 1200px) {
  .navbar-nav li.nav-item:not(.phone-nav) {
    margin-right: 5px;
  }
  .navbar-light .navbar-nav .nav-link {
    font-size: 12px;
  }
  .logo-nav {
    height: auto;
    width: auto;
    max-width: 185px;
    padding: 12px 0;
    height: auto !important;
  }
  .tp-caption-res-left {
    margin-left: 20px !important;
  }
  .tp-caption-res-right {
    margin-right: 20px !important;
  }
  .tp-caption-res-title {
    /*text-align: center !important;
    display: block !important;
    margin: 0 auto !important;*/
  }
  .cta-buttons a {
    font-size: 1em;
  }
  .col-full-member {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .form-check-label-res {
    padding-left: 0 !important;
  }
  .form-check-input-res {
    position: relative;
    float: left;
    margin-left: 0;
    margin-right: 10px;
    margin-bottom: 20px;
  }
  .price-range {
    margin-top: 0 !important;
  }
  .price-range-col {
    margin-bottom: 30px;
  }
  .user-profile-title {
    padding: 30px 10px !important;
    line-height: 40px;
  }
  .container-member-profile .font-2 {
    font-size: 1.6em !important;
    padding: 10px !important;
  }
  .col-search-map {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .search-row {
    position: relative;
  }
  .search-results {
    margin-top: 0 !important;
  }
  .col-search-map2 {
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    margin-bottom: 20px;
    margin-top: 50px;
  }
  .search-member-image {
    max-width: 120px;
  }
  .search-row {
    position: relative;
    /*top: 20px;*/
  }
  .price-range-search {
    margin-bottom: 20px !important;
    margin-top: -25px;
  }
  .col-property-map {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .float-none-res {
    float: none !important;
    display: block !important;
  }
  .text-left-res {
    text-align: left !important;
    margin-top: 10px;
    margin-bottom: 0 !important;
  }
  .btn-profile {
    margin-bottom: 20px;
  }
  .col-search-map-list {
    margin-left: 0 !important;
  }
  .profile-image-list {
    margin-top: 20px;
    text-align: left;
    margin: 15px 15px 0;
  }
  .background-search-list {
    background-size: cover !important;
  }
  .property-list-container {
    /*margin-top: 50px !important;*/
  }
  .price-range-search2 {
    margin-bottom: 30px !important;
  }
  .search-home-image {
    max-width: 100% !important;
    width: 100% !important;
    margin-top: 20px;
  }
  .col-property-details {
    padding-left: 0 !important;
    margin-bottom: 10px;
    margin-top: 15px;
  }
  .col-search-vacation-home {
    margin-top: 10px !important;
  }
  .detail-search-res {
    margin: 20px 0 !important;
    text-align: left !important;
    border-right: none !important;
    border-left: solid 1px #006d9e;
  }
  .detail-row-search {
    margin-top: 30px !important;
  }
  .btn-property-details {
    margin-top: 10px;
  }
  .border-right-res {
    border-right: none !important;
  }
  .img-search-list-properties {
    width: 100% !important;
  }
  .border-bottom {
    border-bottom: none !important;
  }
  .float-none-res-match {
    float: none !important;
    display: block !important;
    margin: 10px 0;
    text-align: left !important;
  }
  .container-member-profile2 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .col-search-map-list2 {
    padding-left: 0 !important;
  }
  .member-profile-list {
    padding-left: 0 !important;
  }
  .amenities-title {
    margin-top: 15px;
  }
  .divider-member-profile {
    margin-top: 20px !important;
  }
  .row-member-profile {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .couple-title {
    margin-top: 20px !important;
  }
  .col-search-map4 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .text-center-res-property {
    text-align: center !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    float: none !important;
    display: block !important;
  }
  .border-right-res-property {
    border-right: none !important;
    margin-bottom: 20px;
  }
  .py-1-top {
    padding: 20px 10px !important;
  }
  .my-2-right {
    margin-right: 0 !important;
  }
  .btn-view-photos {
    position: relative !important;
    bottom: 0;
    left: 0 !important;
    right: 0 !important;
    margin-bottom: -21px !important;
    margin-top: -27px !important;
    transform: none !important;
    -ms-transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center !important;
    display: block !important;
    left: auto !important;
    right: auto !important;
    z-index: 1 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .col-full-member2 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .text-left-res2 {
    text-align: left !important;
  }
  .col-special-prelaunch {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
    padding: 0 !important;
  }
}
@media (max-width: 992px) {
  .logo-nav {
    max-width: 89px !important;
    height: auto !important;
    padding: 5px 0 !important;
  }
  .navbar-toggler-icon {
    display: inline-block;
    width: 25px;
    height: 25px;
  }
  .navbar-toggler {
    padding: 9px 11px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 22px;
  }
  .navbar-toggler:focus {
    outline: none !important;
    border: solid 1px rgba(0, 0, 0, 0.15);
  }
  .phone-nav {
    max-width: 109px;
    width: 100%;
    text-align: center;
    margin: 5px 0;
    padding: 0 !important;
    height: auto;
  }
  .no_dropdown {
    padding-top: 0;
  }
  .navbar-light .navbar-nav .nav-link {
    height: auto !important;
    padding: 20px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .navbar-light .navbar-nav .nav-link {
    height: auto !important;
    padding: 24px 0;
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .about-section h2 {
    font-size: 2em;
  }
  .about-section {
    background-color: rgba(255, 255, 255, 0.75);
    margin-left: 0;
    width: 100%;
    max-width: 100%;
    flex: 100%;
  }
  .search-backgrounds {
    width: 100%;
    max-width: 100%;
    flex: 100%;
    height: 200px;
    background-position: center center !important;
    margin-bottom: 0 !important;
  }
  .testimonial {
    margin-left: 0 !important;
    width: 100%;
    max-width: 100%;
    flex: 100%;
    background-color: rgba(255, 255, 255, 0.75);
  }
  .carousel-control-prev {
    display: none;
  }
  .carousel-control-next {
    display: none;
  }
  .col-testimonials {
    padding-left: 0 !important;
    padding-right: 0 !important;
    width: 100%;
    max-width: 100%;
    flex: 100%;
  }
  .container-copyright-footer {
    padding-bottom: 45px;
  }
  .cta-buttons a {
    font-size: 15px;
  }
  .section-how-it-works h2 {
    font-size: 2.6em !important;
  }
  .section-how-it-works h3 {
    font-size: 2em !important;
  }
  .section-how-it-works ul {
    font-size: 22px !important;
  }
  .col-how-it-works {
    width: 100%;
    max-width: 100%;
    flex: 100%;
  }
  .col-how-it-works {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .col-special-prelaunch {
    margin-bottom: 20px;
  }
  .vacation-text {
    font-size: 2em !important;
  }
  .sign-up-now {
    padding: 30px 0 !important;
  }
  .member-benefits-title {
    margin-top: 20px !important;
  }
  .col-signup {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .container-signup {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .member-profile-form-text {
    float: none !important;
    text-align: center !important;
    display: block;
    margin: 20px auto 10px;
  }
  .col-form {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .card-signup {
    padding: 10px;
  }
  .col-login {
    width: 90% !important;
    max-width: 90% !important;
    flex: 90% !important;
    margin: 0 auto;
  }
  .welcome-text {
    font-size: 1.6em;
  }
  .palm-down-arrow {
    width: 50px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
  }
  .col-full-left {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .col-full-right {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .become-member-title {
    font-size: 1.6em;
  }
  .container-dashboard {
    margin-top: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .member-dashboard-padding {
    padding: 130px 0 50px;
  }
  .col-hide {
    display: none !important;
  }
  .col-full-width-res {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .dashboard-image-res {
    display: block !important;
    max-width: 30px;
    float: right;
    position: absolute;
    top: 7px;
    right: 0;
  }
  .member-title {
    margin-bottom: 10px;
  }
  .col-messages {
    border-left: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .container-messages {
    padding-top: 40px !important;
  }
  .message-left, .message-right {
    max-width: 80%;
  }
  .nav-space {
    height: 69px;
  }
  .container-np-res {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .payment-title {
    font-size: 2em !important;
  }
  .payment-btn {
    display: block;
    max-width: 250px;
    margin: 0 auto 10px;
    float: none !important;
    text-align: center;
    margin-right: auto !important;
  }
  .update-payment-padding-res {
    padding: 50px 0 !important;
  }
  .payment-history-title {
    font-size: 2em !important;
    line-height: 40px;
  }
  .table-payment-history {
    min-width: 550px !important;
  }
  .choose-file-btn {
    max-width: 240px;
    padding-left: 0;
    margin-left: 0;
    text-align: left !important;
  }
}
@media (max-width: 768px) {
  .logo-footer {
    margin-top: 20px;
  }
  .cta-buttons a {
    font-size: 12px;
  }
  .col-account-btn {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
    height: 45px;
  }
  .container-copyright-footer {
    padding-bottom: 150px;
  }
  .hide-footer-res {
    display: none !important;
  }
  .break-res {
    display: block !important;
  }
}
@media (max-width: 480px) {
  .logo-nav {
    max-width: 89px !important;
  }
  .col-account-btn {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
    height: 40px;
  }
  .cta-buttons a {
    font-size: 10px;
  }
  .container-copyright-footer {
    padding-bottom: 135px;
  }
  .copyright-text {
    font-size: 16px;
  }
  .section-how-it-works h2 {
    font-size: 2em !important;
  }
  .section-how-it-works h3 {
    font-size: 1.6em !important;
  }
  .section-how-it-works h4 {
    font-size: 20px !important;
  }
  .section-how-it-works ul {
    font-size: 22px !important;
  }
  .section-how-it-works p {
    font-size: 16px !important;
  }
  .vacation-text {
    font-size: 1.2em !important;
  }
  .container-signup2 {
    margin-top: 20px !important;
  }
  .welcome-text {
    font-size: 1.2em;
  }
  .user-profile-title {
    font-size: 1.6em !important;
  }
  .contact-information-text {
    font-size: 1.6em !important;
    padding: 10px;
  }
  .contact-info-text {
    font-size: 50%;
    font-weight: 300 !important;
  }
  .price-range-col {
    margin-bottom: 15px;
  }
  .member-title {
    font-size: 1.6em !important;
  }
  .dashboard-image-res {
    top: 3px;
  }
  .col-member-data p {
    font-size: 15px !important;
  }
  .container-np-res2 {
    padding-left: 8px;
    padding-right: 8px;
  }
  .payment-title {
    font-size: 1.6em !important;
  }
  #desired_distance {
    width: 100%;
    display: inline;
  }
  .search-results-list {
    margin-bottom: 0 !important;
  }
  .col-search-vacation-home {
    margin-top: 30px !important;
  }
  .container-fluid-payment-history {
    padding: 2em 0 !important;
  }
  .container-login2 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .container-signup3 {
    padding-bottom: 0 !important;
  }
  .form-check-label-res {
    display: inline !important;
  }
  .choose-file-btn {
    max-width: 240px;
    padding-left: 0;
    margin-left: 0;
    text-align: left !important;
  }
}
/***** DOCUMENT GENERATOR *****/
.document-generator .nav-pills .nav-link {
  font-size: 1.2em;
  line-height: 1em;
  color: black;
}

.document-generator .nav-pills .nav-link.active {
  font-size: 1.2em;
  line-height: 1em;
  color: white;
}

.document-generator h5.card-title {
  padding: 25px 0;
  font-size: 2em;
  margin-top: 0;
}

.document-generator .section-background {
  background-color: #e6e6e6;
  padding: 5px;
  border-radius: 5px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
  display: block;
  margin: 2px 0;
  padding: 4px;
  width: 20rem !important;
}

.form-check-input {
  position: absolute;
  margin-top: 0.25rem;
  margin-left: 0;
}

.disclaimers h4 {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 1.2em;
}

.remove-form-button {
  background-color: Transparent;
  background-repeat: no-repeat;
  border: none;
  cursor: pointer;
  overflow: hidden;
  outline: none;
  margin-top: 1.5em;
}

.contact-list-name {
  margin: 10px 0 0 0;
  font-size: 1.4em;
  line-height: 1.2em;
}

.contact-list-location {
  margin: 10px 0 15px 0;
  line-height: 1.2em;
}

.contact-list-date {
  font-size: 65%;
}

.message-conversation {
  max-height: 40%;
  overflow-y: scroll;
}

.message-search input {
  width: 100%;
}

.dropdown-value {
  color: #006d9e;
  margin-top: 15px;
  font-size: 1.2em;
  line-height: 1em;
  margin-bottom: 0;
}

.matches-col, .hotlist-col {
  margin-bottom: 15px;
}

.matches-col .card {
  box-shadow: 0 0 15px 1px #333;
}

.match-style {
  border-radius: 5px;
  padding: 5px;
}

.match-style.green {
  background-color: green;
  color: white;
}

.match-style.orange {
  background-color: orange;
  color: white;
}

.match-style.yellow {
  background-color: yellow;
  color: black;
}

.match-style.red {
  background-color: red;
  color: white;
}

.match-score-label,
.match-price-label {
  margin-top: 15px;
}

.matches-title, .hotlist-title {
  background-color: #006d9e;
  color: white;
  line-height: 1.2em;
  border-radius: 5px;
}

.price-range-search {
  margin-top: -30px !important;
}

.notification-number {
  height: 27px;
  line-height: 3px;
  position: absolute;
  z-index: 999;
  top: 0;
  left: 72%;
  font-size: 1em;
  color: white;
  background-color: red;
  border-radius: 50%;
  padding: 12px 7px;
}
@media (max-width: 992px) {
  .notification-number {
    top: 0 !important;
    left: 49px !important;
    height: 23px;
    width: 21px;
    line-height: 1px;
    padding: 11px 7px;
  }
}
@media (max-width: 992px) {
  .notification-number {
    top: 15px !important;
    left: 36px !important;
    height: 22px;
    width: 21px;
    line-height: 1px;
    margin-bottom: 0;
    font-size: 15px;
  }
}

.pagination-row {
  margin-top: 15px;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.1rem 0.7rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #006d9e;
  background-color: #fff;
  border: 1px solid #ddd;
}

.page-item.active .page-link {
  z-index: 2;
  color: #fff;
  background-color: #006d9e;
  border-color: #006d9e;
}

/* ----------- Retina Screens ----------- */
@media screen and (min-device-width: 1200px) and (max-device-width: 1600px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
  .member-profile-button {
    max-width: 125px !important;
    font-size: 0.8em;
    margin-top: 7px;
  }
  .search-results-col {
    font-size: 0.9em;
  }
  .interested-partner-text,
  .btn-connect-me {
    font-size: 0.9em;
  }
}
.bottom-section {
  background-color: #C5E6A6;
}

.bottom-section p {
  font-size: 1.2em;
  line-height: 1.6em;
  text-align: center;
  color: white;
  margin: 0 10%;
}

/***** CONTACT *****/
#contact-form {
  padding: 15px;
  box-shadow: -1px 1px 8px 1px #000;
  margin-bottom: 25px;
}

.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#div2 {
  display: none;
}

#loaded {
  margin: 25px;
  font-size: 1.2em;
  text-align: center;
}

#div2.show {
  -o-transition: opacity 3s;
  -moz-transition: opacity 3s;
  -webkit-transition: opacity 3s;
  transition: opacity 3s;
  opacity: 1;
  display: block;
}

.hide {
  opacity: 0;
  transition: opacity 3s;
}

.section-buy-for-less {
  background: url(../images/iStock-867413250.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}

.section-no-search-results {
  background: url(../images/iStock-1086460924.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}

.section-buy-for-less h1 {
  font-size: 2em;
}

#initial-property-search .row {
  background-color: rgba(255, 255, 255, 0.4);
  padding: 7px 0 0 0;
}

#initial-property-search button {
  display: block;
  margin: 0 auto;
  width: 100%;
}

#search-desired-state {
  width: 100%;
}

#no-search-results {
  background-color: #006d9e;
  padding: 15px;
}

/***/
.vp-text-bottom {
  font-weight: bolder;
  font-size: 1.2em;
}

@media (max-width: 480px) {
  .vp-text-bottom {
    font-size: 22px;
    word-break: break-all;
    display: block;
  }
  .nav-link img {
    height: 50px;
    width: auto !important;
    border-radius: 50%;
    margin-top: 0;
  }
  .navbar-collapse {
    overflow-y: scroll;
    height: 340px;
  }
  .testimonial > blockquote > p {
    font-size: 16px;
  }
  .testimonial > blockquote > footer {
    font-size: 16px;
  }
}
.cls-1 {
  isolation: isolate;
}

.cls-2 {
  mix-blend-mode: multiply;
}

.cls-3 {
  fill: #ffb800;
}

.cls-4 {
  fill: #ff1882;
}

.cls-5 {
  fill: #0fc7ff;
}

.cls-6 {
  fill: #00d4ab;
}

.cls-7 {
  fill: #c278ff;
}

.cls-8 {
  fill: #ff8300;
}

.cls-9 {
  fill: #6bd414;
}

svg#homes {
  width: 50%;
  float: right;
}

.btn.btn-red {
  background-color: #C1272D;
  border-radius: 15px;
  padding: 15px;
}

.play-column {
  background-color: white;
  margin: 15px;
  padding: 15px;
}

.nav.nav-tabs.faq {
  border-bottom: 1px solid #fff;
}

.nav-tabs.faq .nav-item.show .nav-link, .nav-tabs.faq .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #ddd #ddd #ddd;
}

.nav-tabs.faq .nav-link.active {
  background: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -webkit-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -o-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  border-color: #006AAC;
  color: #fff;
}

.nav-tabs.faq .nav-link {
  background: linear-gradient(#C5E6A6, #C5E6A6);
  background-image: -webkit-linear-gradient(#C5E6A6, #C5E6A6);
  background-image: -o-linear-gradient(#C5E6A6, #C5E6A6);
  background-image: linear-gradient(#C5E6A6, #C5E6A6);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="$secondary-accent-color", endColorstr="$secondary-accent-color");
  border: 1px solid #C5E6A6;
}

.nav-tabs.faq .nav-item {
  margin: 0 7%;
}
@media (max-width: 992px) {
  .nav-tabs.faq .nav-item {
    margin: 0 !important;
  }
}

.nav-tabs.faq .nav-item a {
  font-size: 1.6em;
}

#basics .card-header,
#properties .card-header,
#logistics .card-header {
  background: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -webkit-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -o-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="$secondary-accent-color", endColorstr="$secondary-accent-color");
}

#basics .card-header a,
#properties .card-header a,
#logistics .card-header a {
  color: #fff !important;
}

/***/
svg#homes {
  width: 50%;
  float: right;
}

.btn.btn-red {
  background-color: #C1272D;
  border-radius: 15px;
  padding: 15px;
}

.play-column {
  background-color: white;
  margin: 15px;
  padding: 15px;
}

.nav.nav-tabs.faq {
  border-bottom: 1px solid #fff;
}

.nav-tabs.faq .nav-item.show .nav-link, .nav-tabs.faq .nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #ddd #ddd #ddd;
}

.nav-tabs.faq .nav-link.active {
  background: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -webkit-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -o-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  border-color: #006AAC;
  color: #fff;
}

.nav-tabs.faq .nav-link {
  background: linear-gradient(#C5E6A6, #C5E6A6);
  background-image: -webkit-linear-gradient(#C5E6A6, #C5E6A6);
  background-image: -o-linear-gradient(#C5E6A6, #C5E6A6);
  background-image: linear-gradient(#C5E6A6, #C5E6A6);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="$secondary-accent-color", endColorstr="$secondary-accent-color");
  border: 1px solid #C5E6A6;
}

.nav-tabs.faq .nav-item {
  margin: 0 7%;
}

.nav-tabs.faq .nav-item a {
  font-size: 1.6em;
}

#basics .card-header,
#properties .card-header,
#logistics .card-header {
  background: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -webkit-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: -o-linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  background-image: linear-gradient(to top, #006AAC 1%, #006AAC 35%, #006AAC 82%);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="$secondary-accent-color", endColorstr="$secondary-accent-color");
}

#play-button {
  width: 10%;
  height: auto;
}

.play-letters {
  animation: kaboom 5s ease alternate;
}

.play-letters:nth-child(2) {
  animation-delay: 0.1s;
}

.play-letters:nth-child(3) {
  animation-delay: 0.2s;
}

.play-letters:nth-child(4) {
  animation-delay: 0.3s;
}

.play-letters:nth-child(5) {
  animation-delay: 0.4s;
}

@keyframes kaboom {
  90% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.top-section {
  border: 10px ridge #006AAC;
  padding: 0;
}

.border-right {
  border-right: 3px solid #fff;
}

.border-right.blue {
  border-right: 3px solid #006AAC;
}

.border-top {
  border-top: 3px solid #fff;
}

.border-top.blue {
  border-top: 3px solid #006AAC;
}

.col.same-height {
  box-shadow: inset 0 0 30px 5px #D9D5D6;
}

.borders {
  /*margin: 15px;*/
}
.borders .list-res {
  margin-left: 2rem;
}

.image-overlay-text {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 5px;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: calc(29% - 1em);
  margin-top: calc(30% - 0.5em);
}

/***RESPONSIVENESS***/
.section-how-it-works {
  margin-bottom: 50px;
}

.your-question-text {
  font-size: 1em;
  margin-bottom: 25px;
}

.section-how-it-works p {
  margin-top: 20px !important;
  margin-bottom: 20px;
}

.btn-become-member {
  font-size: 1.6em;
}

.nav-tab-how-it-works {
  width: 100% !important;
  display: block !important;
  text-align: center !important;
  margin-top: 30px;
}

.row-basics {
  margin-top: 50px;
}

.how-do-text {
  font-size: 1.2em;
  margin-bottom: 5px !important;
  line-height: 25px;
}

.row-register-now {
  padding: 30px 0;
}

#initial-property-search .row {
  padding: 15px 10px 10px;
}

.city-state-text {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.images-home-for-less {
  margin-top: 50px;
  margin-bottom: 50px;
}

.denote-text {
  margin-bottom: 30px;
}

.res-break {
  display: none !important;
}

.contact-title {
  line-height: 40px;
  margin-top: 30px;
}

.form-contact-vacation label {
  margin-bottom: 5px !important;
}

.btn-submit-contact {
  margin-top: 10px;
}

.container-contact {
  margin-top: 25px;
  margin-bottom: 25px;
}

.dating-text {
  font-size: 2.4em;
  margin-top: 30px;
}

.testimonial > blockquote > p {
  font-size: 1em;
  line-height: 30px;
}

.col-checkout {
  width: 100% !important;
  padding-left: 0 !important;
}

.form-control-checkout {
  width: 50%;
}

.no-results-text {
  font-size: 1.6em;
  line-height: 1.1em;
  text-align: center;
  hyphens: auto;
  color: #fff;
}

.service-image-res {
  display: none !important;
}

.create-profile .card-header.profile, .update-profile .card-header.profile {
  padding: 35px 1.25rem;
}

.col-nopad-desk {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.tooltip {
  z-index: 1028;
}

.title-profile-form {
  padding: 15px;
  margin-top: 15px;
}

.document-generator .section-background {
  padding: 15px;
}

.hebe.tparrows:hover .tp-title-wrap {
  display: none;
}

.tp-first-caption {
  font-size: 40px !important;
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 6px;
  padding: 6px;
  text-align: center !important;
}

.break-caption-first {
  display: none !important;
}

.member-profile-button {
  margin-top: 10px !important;
}

@media (min-width: 1200px) {
  .col-search-map p {
    margin-top: 10px !important;
  }
}
@media (min-width: 992px) {
  #initial-property-search button {
    margin-top: 6px !important;
  }
  .member-benefits-top {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  .btn-profile {
    margin-left: 15px !important;
    margin-top: 10px;
  }
  .nav-link img {
    margin-top: -36%;
  }
}
@media (max-width: 1746px) {
  .header-pre-launch {
    padding: 0 5px !important;
  }
  .footer-pre-launch {
    padding: 10px 10px 40px !important;
  }
  .tp-first-caption {
    font-size: 3vw !important;
  }
  .btn-connect-me {
    font-size: 16px !important;
  }
}
@media (max-width: 1200px) {
  .col-res, .col-lg {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .no-offset-res {
    margin-left: 0 !important;
  }
  .nav-tab-how-it-works li a {
    background: none !important;
    color: #006AAC !important;
    border: none !important;
    margin-bottom: 5px !important;
  }
  .hide-res {
    display: none !important;
  }
  .row-basics {
    margin-top: 0 !important;
  }
  .list-benefits-text {
    font-size: 20px;
  }
  #initial-property-search .row {
    padding: 15px 10px 15px;
  }
  .image-overlay-text {
    left: 0;
    right: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 26px;
    line-height: 32px;
    padding: 15px;
  }
  .float-res-none {
    float: none !important;
  }
  .denote-text {
    margin-bottom: 5px;
    margin-top: 20px;
  }
  .res-break {
    display: block !important;
  }
  .vp-text-bottom {
    font-size: 20px !important;
  }
  .vp-text-bottom2 {
    font-size: 20px !important;
  }
  .dating-text {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .dating-text2 {
    margin-top: 15px;
  }
  .no-offset {
    margin-left: 0 !important;
  }
  .form-control-checkout {
    width: 50%;
  }
  .section-no-search-results {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .form-check-label-res2 {
    padding-left: 20px !important;
  }
  .container-member-profile .font-2 {
    font-size: 1.6em !important;
    padding: 0 15px !important;
    text-align: center;
  }
  .testimonial {
    margin-left: 0;
  }
  .col-testimonials {
    padding: 0;
  }
  .carousel-control-next {
    margin-right: 0;
  }
  .col-conditions {
    margin-top: 15px;
  }
  .btn-add-person {
    margin-left: -15px;
  }
  .dashboard-text {
    float: none !important;
    text-align: center;
    color: #fff !important;
    margin: 15px auto !important;
    display: block !important;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
  }
  .matches-title, .hotlist-title {
    border-radius: 0;
    padding: 15px;
  }
  .tp-caption-res-center {
    text-align: center !important;
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    display: block !important;
    padding: 6px !important;
  }
  .nav-space-list {
    height: 78px !important;
  }
  .btn-profile {
    margin-left: 0 !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .member-profile-button {
    margin-left: 0 !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .col-search-map p {
    text-align: left !important;
  }
  .col-search-map-list .blue-font {
    font-size: 22px !important;
  }
  .btn-connect-me {
    font-size: 16px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    width: 100% !important;
    max-width: 350px !important;
    display: block !important;
    text-align: center !important;
  }
  .interested-partner-text {
    font-size: 16px !important;
    width: 100% !important;
    max-width: 350px !important;
    margin: 20px auto 0 !important;
    display: block !important;
  }
  .container-search-bottom {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
/***/
.link-signup {
  display: block !important;
  line-height: 25px;
}

.break-login {
  display: none !important;
}

@media (max-width: 1200px) {
  .profile-picture-res {
    width: 100% !important;
    max-width: 200px !important;
    margin-bottom: 15px !important;
    margin-left: 0 !important;
  }
}
@media (max-width: 480px) {
  .profile-picture-res {
    width: 100% !important;
    max-width: 100% !important;
  }
  .break-login {
    display: block !important;
  }
  .form-signup {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .btn-update-status {
    display: block !important;
    width: 100% !important;
    margin-top: 15px !important;
  }
  .img-update-status {
    width: 100% !important;
    max-width: 170px;
    margin: 0;
    display: block;
  }
  .modal-signup {
    padding-right: 0 !important;
  }
  .card-body-signup {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.partner-image {
  max-width: 100px;
  border-radius: 50%;
  z-index: 10;
}

.partner-image.one {
  margin-top: 1%;
  margin-left: 4%;
}

.partner-image.two {
  margin-left: 29%;
  margin-top: -2%;
}

.partner-image.three {
  margin-left: 15%;
  margin-top: 8%;
}

.partner-image.four {
  margin-left: 14%;
  margin-top: -5%;
}

.partner-image.five {
  margin-left: 11%;
  margin-top: -2%;
}

.partner-image.six {
  margin-left: 75%;
  margin-top: -5%;
}

.partner-image.plus {
  color: black;
  font-size: 3em;
  opacity: 0;
}

.partner-title, .property-title {
  opacity: 0;
  text-align: right;
  font-size: 1.6em;
  margin-top: 15%;
}

.partner-title {
  margin-left: 12%;
}

.property-title {
  margin-left: -45%;
  margin-right: 0;
}

.property-image {
  max-width: 100px;
  border-radius: 50%;
  position: absolute;
  bottom: 29%;
  right: 7%;
  box-shadow: -2px 1px 10px black;
}

.documents {
  border-radius: 50%;
  max-width: 100px;
  box-shadow: -2px 1px 10px black;
  opacity: 0;
}

.find-partner {
  /*background: url(../images/iStock-901281196.jpg) no-repeat center;*/
  background-size: contain !important;
}

.background-image {
  position: absolute;
  top: 0;
  bottom: 0;
  max-height: 500px;
  width: auto;
  z-index: -1;
  margin-top: 10%;
}

.find-home {
  /*background: url(../images/iStock-502839126.jpg) no-repeat center;*/
  background-size: contain !important;
  min-height: 500px;
}
@media (max-width: 992px) {
  .find-home {
    min-height: auto;
  }
}

svg.arrow {
  opacity: 0;
  width: 364px;
}

.joy-heart {
  max-width: 50%;
  margin-top: -50%;
  opacity: 0;
}

.percentage {
  margin-top: 12%;
  opacity: 0;
  margin-left: -50%;
  max-width: 60%;
  height: auto;
}

.square-box.one {
  position: absolute;
  top: 43%;
  left: 25%;
  width: 290px;
  height: 100%;
  z-index: -1;
}

.square {
  opacity: 0;
  width: 28px;
  height: 28px;
  background-color: greenyellow;
}

.square-box.two {
  position: absolute;
  top: 50%;
  left: 45%;
  width: 400px;
  height: 100%;
  z-index: -1;
}

.square.two {
  transform: rotate(15deg);
  opacity: 0;
  width: 28px;
  height: 28px;
  background-color: greenyellow;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.coupon-btn {
  margin-top: 5%;
}

.fas.fa-info-circle {
  color: limegreen;
}

.thank-you-page h1 {
  font-size: 3em;
}

.thank-you-page p {
  font-size: 2em;
}

.col.same-height {
  box-shadow: inset 0 0 30px 5px #D9D5D6;
}

.borders {
  /*margin: 15px;*/
}

.image-overlay-text {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 5px;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: calc(29% - 1em);
  margin-top: calc(30% - 0.5em);
}

/***RESPONSIVENESS***/
.section-how-it-works {
  margin-bottom: 50px;
}

.your-question-text {
  font-size: 1em;
  margin-bottom: 25px;
}

.section-how-it-works p {
  margin-top: 20px !important;
  margin-bottom: 20px;
  font-size: 22px !important;
  line-height: 32px;
}

.btn-become-member {
  font-size: 1.6em;
}

.nav-tab-how-it-works {
  width: 100% !important;
  display: block !important;
  text-align: center !important;
  margin-top: 30px;
}

.row-basics {
  margin-top: 50px;
}

.how-do-text {
  font-size: 1.2em;
  margin-bottom: 5px !important;
  line-height: 25px;
}

.row-register-now {
  padding: 30px 0;
}

#initial-property-search .row {
  padding: 15px 10px 10px;
}

.city-state-text {
  font-size: 1.2em;
  margin-bottom: 5px;
}

.images-home-for-less {
  margin-top: 30px;
  margin-bottom: 50px;
}

.denote-text {
  margin-bottom: 30px;
}

.res-break {
  display: none !important;
}

.contact-title {
  line-height: 40px;
  margin-top: 30px;
}

.form-contact-vacation label {
  margin-bottom: 5px !important;
}

.btn-submit-contact {
  margin-top: 10px;
}

.container-contact {
  margin-top: 25px;
  margin-bottom: 25px;
}

.dating-text {
  font-size: 2.4em;
  margin-top: 30px;
}

.testimonial > blockquote > p {
  font-size: 1em;
  line-height: 30px;
}

.col-checkout {
  width: 100% !important;
  padding-left: 0 !important;
}

.form-control-checkout {
  width: 50%;
}

.no-results-text {
  font-size: 1.6em;
  line-height: 1.1em;
  text-align: center;
  hyphens: auto;
  color: #fff;
}

.service-image-res {
  display: none !important;
}

.create-profile .card-header.profile, .update-profile .card-header.profile {
  padding: 35px 1.25rem;
}

.col-nopad-desk {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.tooltip {
  z-index: 1028;
}

.title-profile-form {
  padding: 15px;
  margin-top: 15px;
}

.document-generator .section-background {
  padding: 15px;
}

.hebe.tparrows:hover .tp-title-wrap {
  display: none;
}

.break-caption-first {
  display: none !important;
}

.member-profile-button {
  margin-top: 10px !important;
}

.buy-together-text {
  margin-bottom: 30px !important;
}

@media (min-width: 1200px) {
  .col-search-map p {
    margin-top: 10px !important;
  }
}
@media (min-width: 992px) {
  #initial-property-search button {
    margin-top: 6px !important;
  }
  .member-benefits-top {
    padding-top: 30px;
    padding-bottom: 15px;
  }
  .btn-profile {
    margin-left: 15px !important;
    margin-top: 10px;
  }
  .nav-link img {
    /*margin-top: 0;*/
  }
  .dropdown-menu-profile-desk {
    /*position: absolute;*/
    /*right: 15px;*/
    /*top: 92px;*/
    /*margin-left: calc(100% - 185px);*/
    /*margin-right: 15px !important;*/
  }
}
@media (max-width: 1840px) {
  .col-checkout-form {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .btn-apply {
    margin-bottom: 15px;
  }
}
@media (max-width: 1200px) {
  .col-res, .col-lg {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .no-offset-res {
    margin-left: 0 !important;
  }
  .nav-tab-how-it-works li a {
    background: none !important;
    color: #006AAC !important;
    border: none !important;
    margin-bottom: 5px !important;
  }
  .hide-res {
    display: none !important;
  }
  .row-basics {
    margin-top: 0 !important;
  }
  .list-benefits-text {
    font-size: 20px;
  }
  #initial-property-search .row {
    padding: 15px 10px 15px;
  }
  .image-overlay-text {
    left: 0;
    right: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    font-size: 26px;
    line-height: 32px;
    padding: 15px;
  }
  .float-res-none {
    float: none !important;
  }
  .denote-text {
    margin-bottom: 5px;
    margin-top: 20px;
  }
  .res-break {
    display: block !important;
  }
  .vp-text-bottom {
    font-size: 20px !important;
  }
  .vp-text-bottom2 {
    font-size: 20px !important;
  }
  .dating-text {
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .dating-text2 {
    margin-top: 15px;
  }
  .no-offset {
    margin-left: 0 !important;
  }
  .form-control-checkout {
    width: 50%;
  }
  .section-no-search-results {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .form-check-label-res2 {
    padding-left: 20px !important;
  }
  .container-member-profile .font-2 {
    font-size: 1.6em !important;
    padding: 0 15px !important;
    text-align: center;
  }
  .testimonial {
    margin-left: 0;
  }
  .col-testimonials {
    padding: 0;
  }
  .carousel-control-next {
    margin-right: 0;
  }
  .col-conditions {
    margin-top: 15px;
  }
  .btn-add-person {
    margin-left: -15px;
  }
  .dashboard-text {
    float: none !important;
    text-align: center;
    color: #fff !important;
    margin: 15px auto !important;
    display: block !important;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
  }
  .matches-title, .hotlist-title {
    border-radius: 0;
    padding: 15px;
  }
  .tp-caption-res-center {
    text-align: center !important;
    margin: 0 auto !important;
    left: 0 !important;
    right: 0 !important;
    display: block !important;
    padding: 6px !important;
  }
  .nav-space-list {
    height: 78px !important;
  }
  .btn-profile {
    margin-left: 0 !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .member-profile-button {
    margin-left: 0 !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .col-search-map p {
    text-align: left !important;
  }
  .col-search-map-list .blue-font {
    font-size: 22px !important;
  }
  .btn-connect-me {
    font-size: 16px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    width: 100% !important;
    max-width: 350px !important;
    display: block !important;
    text-align: center !important;
  }
  .interested-partner-text {
    font-size: 16px !important;
    width: 100% !important;
    max-width: 350px !important;
    margin: 20px auto 0 !important;
    display: block !important;
  }
  .container-search-bottom {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
@media (max-width: 992px) {
  .nav-space {
    height: 74px;
  }
  .section-how-it-works h2 {
    font-size: 2.2em !important;
  }
  .section-how-it-works h3 {
    font-size: 2em !important;
  }
  .secondary-title {
    font-size: 2em !important;
  }
  .primary-text {
    font-size: 22px !important;
    line-height: 32px;
  }
  .section-how-it-works p {
    font-size: 22px !important;
    line-height: 32px;
  }
  .these-questions-text {
    font-size: 22px !important;
    line-height: 32px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .these-questions-text {
    font-size: 18px !important;
    line-height: 28px !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 992px) {
  .section-how-it-works p {
    margin-top: 10px !important;
    margin-bottom: 20px;
    font-size: 22px !important;
    line-height: 32px;
  }
  .col-res-footer {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .row-footer {
    padding-top: 15px;
  }
  .city-state-text {
    font-size: 1em;
  }
  .col-nopad-res {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .images-home-for-less {
    margin-top: 0;
    margin-bottom: 0;
  }
  .search-backgrounds .search-content > a.btn-default {
    padding: 15px 22px;
    font-size: 22px;
  }
  .manage-user-profile-title {
    font-size: 24px !important;
  }
  .btn-profile {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .nav-link img {
    margin-top: 0;
  }
  .navbar-nav {
    max-height: 100%;
    overflow-y: scroll;
  }
  .buy-together-text {
    margin-bottom: 30px !important;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .row-footer {
    padding-top: 0;
  }
  .section-buy-for-less {
    padding: 50px 0 !important;
  }
  .service-image-desk {
    display: none !important;
  }
  .service-image-res {
    display: block !important;
  }
  .testimonial > blockquote > p {
    line-height: 26px;
    font-size: 18px !important;
  }
}
@media (max-height: 820px) and (min-width: 1366px) {
  .tp-first-caption {
    font-size: 24px !important;
    line-height: 30px !important;
  }
  .tp-caption-one-height {
    margin-top: 150px !important;
  }
  .tp-caption-one-height {
    margin-top: 100px !important;
  }
  .tp-caption-res-left {
    margin-left: -150px !important;
  }
  .tp-caption-res-right {
    margin-right: -250px !important;
  }
}
@media (max-height: 820px) and (min-width: 480px) {
  .tp-first-caption {
    font-size: 20px !important;
    line-height: 20px !important;
  }
  .tp-caption-one-height {
    margin-top: 150px !important;
  }
  .tp-caption-one-height {
    margin-top: 100px !important;
  }
  .tp-caption-res-left {
    margin-left: 0px !important;
  }
  .tp-caption-res-right {
    margin-right: 0px !important;
  }
  .tp-caption-middle-height {
    margin-top: 120px;
  }
}
@media (max-height: 820px) and (max-width: 1366px) and (min-width: 992px) {
  .tp-first-caption {
    font-size: 24px !important;
    line-height: 26px !important;
  }
}
@media (max-height: 820px) and (max-width: 768px) and (min-width: 480px) {
  .tp-first-caption {
    font-size: 20px !important;
    line-height: 20px !important;
  }
  .tp-caption-one-height {
    margin-top: 20px !important;
    margin-left: 10px !important;
  }
  .left-caption-res {
    margin-left: 10px !important;
  }
  .right-caption-res {
    margin-right: 10px !important;
  }
  .tp-caption-middle-height {
    margin-top: 60px;
  }
}
@media (min-width: 1920px) {
  .tp-first-caption {
    font-size: 1.6em !important;
    line-height: 30px !important;
  }
}
@media (max-width: 570px) and (min-width: 480px) {
  .tp-first-caption {
    font-size: 16px !important;
    line-height: 20px !important;
  }
}
@media (max-width: 480px) {
  .left-caption-res {
    margin-left: 10px !important;
  }
  .right-caption-res {
    margin-right: 10px !important;
  }
}
.section-how-it-works.two {
  margin-bottom: 0;
}

@-webkit-keyframes fade-In {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-In {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#favorite-property-detail .col.same-height {
  box-shadow: none;
}

.favorite-property-detail-image {
  box-shadow: 0 0 15px 0 black;
}

.favorite-property-detail-description {
  border: 10px white groove;
}

.home-thumbnail {
  border: 1px solid black;
}

.property-row .col-4 {
  margin-bottom: 15px;
}

.home-thumbnail p {
  color: black;
}

.home-thumbnail img {
  display: block;
  margin: 0 auto !important;
}

#favoriteModal .modal-dialog {
  height: 80vh;
}

.red-font {
  color: red;
  font-weight: bolder;
}

.green-font {
  color: green;
  font-weight: bolder;
}

#permissions-table {
  overflow: auto;
}

#permissions-table thead {
  background-color: #C5E6A6;
  color: #006AAC;
}

#permissions-table.table-bordered td {
  border: 1px solid #000;
}

#permissions-table .td {
  border-top: 1px solid black;
}

#permissions-table-mobile {
  display: none;
}

#featured_properties_table {
  vertical-align: middle;
  text-align: center;
}

#featured_properties_table td > a {
  line-height: 1;
}

.test-popup-page #permissions-table h4 {
  font-size: 0.8em;
}

.youtube-video {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 30%;
}

.youtube-video iframe {
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1201px) and (max-width: 1560px) {
  #permissions-table {
    display: block;
  }
  #permissions-table-mobile {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  #permissions-table.test-popup {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #permissions-table {
    display: none;
  }
  #permissions-table-mobile {
    display: block;
  }
  #permissions-table.test-popup {
    display: none;
  }
}
.steps-container img {
  margin-top: 25px;
}

.steps-title {
  font-size: 2em;
  margin-top: 0;
  margin-bottom: 25px;
}

.dream-text {
  text-align: center;
  margin-left: 50%;
  margin-top: 5%;
  width: 50%;
  font-size: 4em;
  color: #006AAC;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1em;
}

.main-title {
  font-size: 3.2em;
}

.sub-title {
  font-size: 2.4em;
}

.resource-container ul li {
  font-size: 1.6em;
  line-height: 1.4;
}

.resource-container img {
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

.featured-property-box a {
  margin-bottom: 5px;
}

.featured-property-description {
  border: 1px solid #C5E6A6;
  padding: 5px;
  width: 50%;
  margin: 15px auto 15px;
}

#modalNotice h4 {
  font-size: 1.4em;
  font-weight: bold;
}

#modalNotice button {
  color: #006AAC;
}

#modalNotice img {
  width: 33%;
}

#modalNotice .modal-content {
  border-radius: 5rem;
}

#modalNotice .close {
  font-size: 2em;
}

#modalNotice .modal-body {
  padding: 25px 25px 50px 25px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/modal-bg.jpg);
  background-position: center 60%;
  -webkit-background-size: cover;
  background-size: cover;
  border-radius: 5rem;
}

.blurred-text {
  color: transparent;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.close.close-text {
  color: #006AAC;
  font-size: 1.2em !important;
  background: none !important;
  border: none !important;
  text-shadow: none !important;
}

.test-popup-page {
  padding-top: 50px;
  background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url(../images/modal-bg.jpg);
  background-position: center 60%;
  -webkit-background-size: cover;
  background-size: cover;
}

.test-popup-page h4 {
  font-size: 1.6em;
}

.test-popup-executive-images {
  max-width: 50%;
}

/***RESPONSIVENESS LOGIN***/
.article-checkout {
  margin-left: 15px;
  margin-right: 15px;
}

.power-title {
  margin: 40px 0 20px !important;
}

.steps-title {
  margin-top: 15px;
  margin-bottom: 15px;
}

.living-dream-background {
  background: url("../images/live-the-dream.jpg") no-repeat center left;
  height: 100vh;
}
@media (max-width: 1366px) {
  .living-dream-background {
    height: 100%;
  }
}

.show-res {
  display: none !important;
}

.faqs-title {
  margin: 40px 0 0;
}

.faq-title {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.interested-partner-text {
  font-size: 1em;
  padding-top: 5px;
  padding-bottom: 5px;
  padding: 10px !important;
}

.btn-connect-me {
  font-size: 1em;
  padding: 10px !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.no-results-text {
  font-size: 1.4em !important;
}

.steps-title {
  font-size: 1.6em;
  margin-bottom: 30px !important;
}

.thankyou-property-text {
  font-size: 18px;
  line-height: 26px;
}

.search-btn-container {
  max-width: 300px;
  display: block;
  margin: 0 auto;
}

.btn-register-now {
  padding: 10px 6px;
  font-size: 16px !important;
}

.article-checkout-register {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.article-checkout-register footer {
  padding-bottom: 30px !important;
}

.container-table-home {
  margin-top: 30px !important;
  margin-bottom: 15px !important;
}

@media (min-width: 1200px) {
  .search-results {
    margin-top: 0 !important;
  }
  .property-list-container {
    /*margin-top: 134px;*/
  }
}
@media (min-width: 992px) {
  .dropdown-menu-profile-desk {
    left: -113px;
  }
}
@media (max-width: 1630px) {
  .col-register-now {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .article-checkout-register {
    max-width: 600px;
    margin: 15px auto 30px !important;
  }
}
@media (max-width: 1560px) {
  .dream-text {
    text-align: center;
    margin-left: 0;
    margin-top: 0;
    bottom: 0 !important;
    width: 100%;
    font-size: 3em;
    position: absolute;
  }
}
@media (max-width: 1366px) and (min-width: 1200px) {
  .list-results span .blue-font {
    font-size: 12px !important;
  }
  .col-search-map-list .green-font {
    font-size: 14px !important;
  }
  .property-list-container {
    /*margin-top: 152px;*/
  }
  .interested-partner-text {
    font-size: 14px !important;
  }
  .btn-connect-me {
    font-size: 14px !important;
  }
}
@media (max-width: 1200px) {
  .coupon-btn {
    margin-top: 0;
    margin-bottom: 5px;
  }
  .nav-space {
    height: 71px;
  }
  .fullwidth-image {
    width: 100% !important;
  }
  .how-it-works-col {
    width: 50% !important;
    max-width: 50% !important;
    flex: 50% !important;
  }
  .living-dream-background {
    background: none !important;
    height: auto !important;
  }
  .show-res {
    display: block !important;
  }
  .hide-res {
    display: none !important;
  }
  .dream-text {
    text-align: center;
    margin-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    bottom: 0 !important;
    width: 100%;
    font-size: 2em;
    background: #fff;
    position: relative;
  }
  .col-how-it-works-two {
    padding-bottom: 15px;
  }
  .search-row {
    position: relative;
    top: 0;
    /*margin-top: 20px;*/
  }
  .row-search-map-view {
    margin-bottom: 15px !important;
  }
  .no-border-right {
    border: none !important;
  }
  .boders-res-top {
    margin-top: 0 !important;
  }
  .property-list-container {
    margin-top: 0 !important;
    padding-top: 20px;
  }
  .col-search-map2 {
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
  }
  #map-view {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .search-results a.search-views, .list-results a.search-views {
    margin-bottom: 20px !important;
  }
  .border-bottom {
    border-bottom: solid 1px #e2e2e2 !important;
  }
  .col-search-map p {
    margin-top: 15px;
  }
  .mb-0-res {
    margin-bottom: 0 !important;
  }
  .article-checkout {
    max-width: 600px;
    width: 100%;
    margin: 15px auto 0;
  }
}
@media (max-width: 992px) {
  .power-title {
    margin: 20px 0 15px !important;
  }
  .steps-title {
    margin-top: 15px;
    margin-bottom: 10px;
  }
  .how-it-works-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .primary-title {
    font-size: 2em !important;
  }
  .no-results-text {
    font-size: 1.2em !important;
  }
  .steps-title {
    font-size: 1.4em !important;
    margin-bottom: 15px !important;
  }
}
@media (max-width: 768px) {
  .article-checkout {
    max-width: 100%;
    width: auto;
    margin: 15px 15px 0;
  }
  .container-table-home {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .membership-title-home {
    margin-bottom: 30px !important;
    margin-top: 10px !important;
    text-align: left !important;
  }
  .section-how-it-works.two p {
    font-weight: 600;
  }
}
@media (max-width: 480px) {
  .btn-res {
    display: block !important;
    margin: 5px auto !important;
    width: 100% !important;
  }
  .col-checkout {
    padding-left: 0 !important;
    padding-right: 0;
  }
  .page-link {
    padding: 2px 4px;
    font-size: 14px;
  }
  .faqs-title {
    margin: 40px 0 15px !important;
  }
  .primary-title {
    font-size: 1.4em !important;
  }
  .profile-image-list {
    width: 100% !important;
    max-width: 100% !important;
  }
  .search-member-image {
    width: 100% !important;
    max-width: 100% !important;
  }
  .col-search-map p {
    text-align: center !important;
  }
  .background-search-list {
    padding: 15px 10px;
  }
  .member-profile-button {
    width: 100% !important;
    max-width: 100% !important;
  }
  .no-results-text {
    font-size: 18px !important;
  }
  .section-no-search-results {
    padding-top: 50px !important;
  }
  .steps-title {
    font-size: 1.2em !important;
  }
  .article-checkout .yellow-font {
    font-size: 20px !important;
  }
  .article-checkout .white-font {
    font-size: 18px !important;
  }
  .article-checkout header {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .btn-register-now {
    max-width: 80% !important;
  }
}
/***/
.faq-dropdown {
  padding-top: 30px !important;
}

@media (max-width: 1662px) and (min-width: 1490px) {
  .navbar-light .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media (max-width: 1490px) {
  .dropdown-item {
    font-size: 12px;
  }
  .navbar-light .navbar-nav .dropdown-menu > a:nth-child(6), .navbar-light .navbar-nav .dropdown-menu {
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .dropdown-nav {
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .dropdown-item {
    font-size: 18px;
  }
  .dropdown {
    padding-bottom: 0;
  }
  .faq-dropdown {
    padding-top: 20px !important;
  }
  .faq-dropdown:hover {
    opacity: 1;
  }
  .faq-dropdown .dropdown-menu-faq {
    background: inherit !important;
    color: inherit !important;
  }
  .faq-dropdown .dropdown-menu-faq a {
    transition: all 0.3s ease-in-out;
    padding: 25px 15px;
  }
  .faq-dropdown .dropdown-menu-faq a:hover {
    opacity: 0.9;
  }
}
/***ABOUT***/
.about-title {
  margin-top: 30px;
}

.card-about {
  padding: 15px;
}

@media (max-width: 1200px) {
  .col-member {
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  #about-page .card-img-top {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .about-title {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
/***/
.article-register-home {
  max-width: 460px;
  margin: 0 auto 40px !important;
  display: block;
}

.container-table-home {
  margin-bottom: 0 !important;
}

.italic-text {
  font-style: italic !important;
}

.document-agreement-image {
  max-width: 500px;
  float: right;
  margin-right: 140px;
  border-radius: 6px;
  margin-left: 20px;
  margin-bottom: 20px;
}

.col-agreement {
  padding-left: 15px !important;
  padding-right: 15px !important;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.section-how-it-works.two ul {
  font-size: 15px !important;
}

.section-how-it-works.two ul li {
  margin-bottom: 10px !important;
}

@media (max-width: 1200px) {
  .document-agreement-list {
    padding: 15px;
  }
  .document-agreement-image {
    max-width: 100%;
    float: none;
    margin-right: 0;
    border-radius: 0;
    padding: 0 5%;
    margin: 5px auto 20px;
  }
}
@media (max-width: 992px) {
  .section-how-it-works h3 {
    font-size: 1.2em !important;
  }
  .section-how-it-works.two ul {
    font-size: 16px !important;
  }
  .section-how-it-works.two ul li {
    margin-bottom: 10px !important;
  }
}
/***/
.row-checkout {
  padding-bottom: 100px;
}

@media (max-width: 1746px) {
  .header-pre-launch {
    padding: 0 5px !important;
  }
  .footer-pre-launch {
    padding: 10px 10px 40px !important;
  }
  .tp-first-caption {
    font-size: 3vw !important;
  }
  .btn-connect-me {
    font-size: 16px !important;
  }
  .checkout-title {
    font-size: 2em !important;
  }
}
@media (max-width: 1460px) {
  .col-checkout-two {
    width: 100% !important;
    max-width: 100% !important;
    flex: 100% !important;
  }
  .membership-checkout {
    background-color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto;
  }
  .row-checkout {
    padding-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .btn-register-now-res {
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .btn-register-now-res {
    width: 100% !important;
    max-width: 100% !important;
  }
}
/***RESPONSIVENESS CAROUSEL HOME***/
@media (max-width: 1746px) and (max-height: 830px) and (min-width: 768px) {
  .tp-caption-res-title {
    font-size: 28px !important;
    line-height: 30px !important;
  }
}
@media (max-width: 1746px) and (max-height: 560px) and (min-width: 768px) {
  .tp-caption-res-title {
    font-size: 20px !important;
    line-height: 22px !important;
  }
}
@media (max-width: 1746px) and (max-height: 440px) and (min-width: 768px) {
  .tp-caption-res-title {
    font-size: 16px !important;
    line-height: 20px !important;
  }
}
@media (max-width: 1746px) and (max-height: 381px) and (min-width: 768px) {
  .tp-caption-res-title {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}
@media (max-width: 992px) and (max-height: 1080px) and (min-width: 768px) {
  .tp-caption-res-title {
    font-size: 18px !important;
    line-height: 20px !important;
  }
  .left-caption-res {
    margin-left: 15px !important;
  }
  .right-caption-res {
    margin-right: 15px !important;
  }
}
@media (max-width: 992px) and (max-height: 480px) and (min-width: 768px) {
  .tp-caption-res-title {
    font-size: 16px !important;
    line-height: 20px !important;
  }
  .left-caption-res {
    margin-left: 0 !important;
  }
  .right-caption-res {
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) and (max-height: 1080px) and (min-width: 480px) {
  .tp-caption-res-title {
    font-size: 20px !important;
    line-height: 25px !important;
  }
  .left-caption-res {
    margin-left: 15px !important;
  }
  .right-caption-res {
    margin-right: 15px !important;
  }
}
@media (max-width: 768px) and (max-height: 620px) and (min-width: 480px) {
  .tp-caption-res-title {
    font-size: 16px !important;
    line-height: 20px !important;
  }
}
@media (max-width: 768px) and (max-height: 510px) and (min-width: 480px) {
  .tp-caption-res-title {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .left-caption-res {
    margin-left: 15px !important;
  }
  .right-caption-res {
    margin-right: 15px !important;
  }
  .tp-caption-one-height {
    margin-top: 80px !important;
  }
  .tp-caption-middle-height {
    margin-top: 60px !important;
  }
  .tp-caption-two-height {
    margin-top: 40px !important;
  }
}
@media (max-width: 620px) and (max-height: 1080px) and (min-width: 480px) {
  .tp-caption-res-title {
    font-size: 14px !important;
    line-height: 20px !important;
  }
}
@media (max-width: 480px) {
  .tp-caption-res-title {
    font-size: 10px !important;
    line-height: 12px !important;
  }
}
/***RESPONSIVE VIDEO***/
.videoWrapper {
  position: relative;
  /*padding-bottom: 56.25%;*/
  padding-top: 25px;
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 315px;
  display: block;
  margin: 0 auto;
}

.videoWrapperPopup {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.videoWrapperPopup iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 315px;
  display: block;
  margin: 0 auto;
}

#modalNotice {
  z-index: 99999;
}

.close-modal-home {
  outline: none !important;
  box-shadow: none !important;
}

/***RESPONSIVENESS POPUP PAGE***/
.how-it-works-text {
  line-height: 40px;
}

.team-list-popup li {
  margin-bottom: 8px;
}

.test-popup-executive-images {
  width: 100% !important;
  display: block;
  margin: 0 auto;
  padding: 0 !important;
  height: auto !important;
  max-width: 100% !important;
}

@media (max-width: 1200px) {
  .btn-popup-page {
    font-size: 14px !important;
  }
  .mt-15-res-two {
    margin-top: 15px !important;
  }
}
@media (max-width: 768px) {
  .videoWrapperPopup iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: auto;
  }
}
@media (max-width: 480px) {
  .how-it-works-text {
    line-height: 30px;
    text-align: center;
    margin: 15px 0;
  }
  .test-popup-page h4 {
    font-size: 1.4em;
    text-align: center;
  }
  .test-popup-executive-images {
    width: 100% !important;
    max-width: 100% !important;
  }
  .title-popup-members {
    margin-top: 0 !important;
  }
  .plr-0-res {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .team-list-popup li {
    margin-bottom: 8px;
  }
  .mt-15-res {
    margin-top: 15px !important;
  }
  #modalNotice .modal-body {
    padding-bottom: 150px;
  }
}
.home-page .banner {
  background: url("../images/home-banner-one.jpg") center/cover no-repeat;
  min-height: 100vh;
  display: grid;
  align-items: start;
  justify-items: start;
}
.home-page .banner h1 {
  font-size: 3rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  margin-top: 20vh;
  margin-right: 10vw;
  margin-left: auto;
  text-align: center;
  margin-bottom: 0;
  line-height: 1.2;
}
.home-page .banner .text-carousel {
  background: rgba(255, 255, 255, 0.8);
  padding: 1.5rem;
  margin-top: 30px;
  margin-right: 40vh;
  margin-left: auto;
}
@media (max-width: 1200px) {
  .home-page .banner .text-carousel {
    margin: 15px auto 0;
    font-size: 18px;
  }
}
@media (max-width: 992px) {
  .home-page .banner .text-carousel {
    border-radius: 6px;
  }
}
.home-page .banner .text-carousel ul {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .home-page .banner .text-carousel ul {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 992px) {
  .home-page .banner .text-carousel ul {
    text-align: left;
    font-size: 18px;
  }
}
.home-page .banner .text-carousel ul li {
  margin-bottom: 5px;
}
.home-page .banner .text-carousel ul li:last-child {
  margin-bottom: 0;
}
.home-page .banner .text-bottom {
  font-weight: bold;
  text-align: right;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .home-page .banner .text-bottom {
    font-size: 18px;
  }
}
.home-page .third-section {
  background: url("../images/iStock-1393249160.jpg") center bottom/cover no-repeat;
  min-height: 100vh;
  display: grid;
  align-items: center;
  justify-items: center;
}
.home-page .third-section .text {
  background: rgba(255, 255, 255, 0.8);
  margin: 0 20vw;
  padding: 1.5rem;
}
.home-page .third-section .text p {
  margin-bottom: 0;
}
.home-page .third-section .text p b {
  line-height: 1.2;
  font-size: 2.5rem;
  font-family: "Alata", serif;
}
.home-page .third-section .icon-partnership-row {
  display: flex;
  grid-gap: 2rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 10vh;
}
.home-page .third-section .icon-partnership-row p {
  font-size: 6rem;
  margin-bottom: 0;
}
.home-page .third-section .partnership-icons {
  max-width: 150px;
}
.home-page .third-section .prohibited-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.home-page .third-section .prohibited-row .prohibited-box {
  position: relative;
  text-align: center;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: 100px;
  background: url("../images/prohibited-sign-10-opacity.png") center/contain no-repeat;
}
.home-page .third-section .prohibited-row .prohibited-box p {
  font-weight: bolder;
}
.home-page .third-section .green-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-items: center;
  align-content: center;
  justify-content: center;
}
.home-page .third-section .green-row p {
  font-size: 1.5rem;
  margin-bottom: 0;
}
.home-page .third-section .green-row .green-check {
  max-height: 30px;
  margin-right: 7px;
}
.home-page .third-section .green-row .green-exclamation {
  margin-top: -15px;
}
.home-page .third-section .green-underline {
  display: block;
  margin: 0 auto;
  transform: rotateX(180deg);
}
.home-page .second-section, .home-page .fourth-section {
  display: grid;
  position: relative;
  padding: 3rem;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .home-page .second-section, .home-page .fourth-section {
    grid-template-columns: 30% 70%;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .home-page .second-section, .home-page .fourth-section {
    padding: 15px;
    margin-top: 0;
  }
}
.home-page .second-section h2, .home-page .fourth-section h2 {
  text-align: center;
  background: linear-gradient(90deg, #fff, transparent);
  padding: 0.5rem;
}
@media (max-width: 1600px) {
  .home-page .second-section h2, .home-page .fourth-section h2 {
    font-size: 2.5em;
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .home-page .second-section h2, .home-page .fourth-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .home-page .second-section h2, .home-page .fourth-section h2 {
    text-align: left;
    font-size: 1.6rem;
    line-height: 38px;
  }
}
.home-page .second-section hr, .home-page .fourth-section hr {
  border: solid 2px #106c9e;
  border-radius: 100px;
}
.home-page .second-section .benefits-row, .home-page .fourth-section .benefits-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  justify-items: center;
  grid-gap: 3rem;
  padding: 1.5rem;
}
@media (max-width: 1366px) {
  .home-page .second-section .benefits-row, .home-page .fourth-section .benefits-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .home-page .second-section .benefits-row, .home-page .fourth-section .benefits-row {
    grid-template-columns: 1fr;
    grid-gap: 15px;
    padding: 0;
  }
}
.home-page .second-section .box, .home-page .fourth-section .box {
  background: #B5BD89;
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.4);
  padding: 0.5rem 1.5rem;
  position: relative;
}
@media (min-width: 992px) {
  .home-page .second-section .box, .home-page .fourth-section .box {
    display: grid;
    grid-template-rows: auto 1fr auto auto;
  }
}
.home-page .second-section .box .benefits-image-icon, .home-page .fourth-section .box .benefits-image-icon {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 100px;
  width: auto;
}
.home-page .second-section h3, .home-page .fourth-section h3 {
  font-size: 26px;
  text-align: center;
  color: #004B7A;
}
@media (max-width: 992px) {
  .home-page .second-section h3, .home-page .fourth-section h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
    margin-top: 20px;
  }
}
@media (max-width: 480px) {
  .home-page .second-section h3, .home-page .fourth-section h3 {
    text-align: left;
    font-size: 1.4rem;
  }
}
.home-page .second-section a, .home-page .fourth-section a {
  color: #004B7A;
}
@media (max-width: 992px) {
  .home-page .second-section p, .home-page .fourth-section p {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .home-page .second-section p, .home-page .fourth-section p {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .home-page .second-section .call-to-action, .home-page .fourth-section .call-to-action {
    margin-bottom: 0;
    margin-top: 0;
  }
  .home-page .second-section .call-to-action a, .home-page .fourth-section .call-to-action a {
    outline: none;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .home-page .second-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .home-page .second-section h2 {
    font-size: 50px;
  }
}
.home-page .second-section ul {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .home-page .second-section ul {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 992px) {
  .home-page .second-section ul {
    text-align: left;
    font-size: 18px;
    padding-left: 20px;
  }
}
.home-page .second-section ul li {
  margin-bottom: 5px;
}
.home-page .second-section ul li:last-child {
  margin-bottom: 0;
}
.home-page .second-section .text p {
  font-size: 2rem;
  margin-top: 3rem;
}
.home-page .second-section .text .left-half {
  margin-left: -10rem;
}
.home-page .second-section .text .left-half img {
  max-height: 85px;
}
.home-page .second-section .text .right-half {
  margin-right: -15rem;
}
.home-page .second-section .text .right-half img {
  max-height: 75px;
}
.home-page .second-section .home-image-one {
  border-radius: 12px;
}

.row-footer {
  padding-top: 1rem;
  display: grid;
}
@media (min-width: 1200px) {
  .row-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-gap: 3rem;
    justify-items: center;
  }
}

.container-copyright-footer {
  background-color: #006AAC;
  text-align: center;
  color: #fff;
}

.fifth-section {
  padding-top: 100px;
  padding-bottom: 3rem;
  max-height: 100vh;
}
.fifth-section .carousel-box {
  padding: 0 7vw;
  display: flex;
  grid-gap: 3rem;
}
.fifth-section .carousel-box .info-box {
  max-width: 40vw;
  align-content: center;
  align-self: center;
}
.fifth-section .carousel-box .info-box .location {
  font-size: 2rem;
  margin-bottom: 0;
}
.fifth-section .carousel-box .info-box .title {
  font-size: 2.6rem;
  margin-top: 0.3em;
}
.fifth-section .carousel-box .info-box .house-specs {
  font-size: 20px;
}
.fifth-section .carousel-box .info-box .house-specs i {
  color: #004B7A;
}
.fifth-section .carousel-control-next, .fifth-section .carousel-control-prev {
  color: #000;
  text-align: center;
}
.fifth-section .carousel-indicators {
  bottom: -45px;
}
.fifth-section .carousel-indicators li {
  background-color: rgba(0, 0, 0, 0.4);
}
.fifth-section .carousel-indicators .active {
  background-color: #000;
}
.fifth-section .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' 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;
}
.fifth-section .carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23000' 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;
}
.fifth-section .carousel-control-next-icon, .fifth-section .carousel-control-prev-icon {
  height: 30px;
  width: 30px;
}
.fifth-section .carousel-control-next-icon {
  margin-right: -60px;
}
.fifth-section .carousel-control-prev-icon {
  margin-left: -60px;
}

.home-list-page .banner {
  background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url("../images/iStock-1148761711.jpg") center/cover no-repeat;
  min-height: 60vh;
  display: grid;
  align-items: center;
  justify-self: center;
}
@media (max-width: 992px) {
  .home-list-page .banner {
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../images/iStock-1148761711.jpg") center/cover no-repeat;
  }
}
.home-list-page .banner h1 {
  font-size: 95px;
}
@media (min-width: 1200px) {
  .home-list-page .content {
    padding: 100px 10vw;
  }
}

.home-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-gap: 3rem;
  padding: 1rem;
}

.home-box {
  margin-bottom: 15px;
}
.home-box .home-listing {
  position: relative;
  border: none;
}
.home-box .home-listing.three {
  background: #B5BD89;
  padding: 0.5rem;
}
.home-box .home-listing.three .list-image {
  width: 90%;
  display: block;
  margin: 0 auto;
  margin-top: -25px;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.4);
}
.home-box .home-listing.three .home-price {
  margin: 0.5rem 0;
}
.home-box .home-listing.three p {
  margin-bottom: 0;
}
.home-box .home-listing.three .button {
  text-align: right;
}
.home-box .home-listing.three .button a {
  font-size: 2.3rem;
  color: #000;
}
.home-box .home-listing.three .description-box {
  display: block;
  width: 90%;
  margin: auto;
}
.home-box .home-listing.three .description-box i {
  color: #006AAC;
}

.how-it-works-page {
  padding-top: 100px;
  background: #f3f0e9;
}
.how-it-works-page .icon-partnership-row {
  display: flex;
  grid-gap: 2rem;
  align-items: center;
  justify-items: center;
  margin-bottom: 10vh;
  justify-content: center;
}
.how-it-works-page .icon-partnership-row p {
  font-size: 4rem;
  margin-bottom: 0;
}
.how-it-works-page .partnership-icons {
  max-width: 100px;
}
.how-it-works-page .find-partner {
  display: grid;
  align-items: start;
  justify-items: center;
  position: relative;
}
@media (min-width: 1200px) {
  .how-it-works-page .find-partner {
    grid-template-columns: 1fr 1fr;
  }
}
.how-it-works-page .find-partner .text {
  text-align: center;
  grid-column: 1/-1;
}
@media (min-width: 1200px) {
  .how-it-works-page .find-partner .text {
    margin-top: -10%;
    padding: 0 10vw;
  }
}
.how-it-works-page .find-home {
  display: grid;
  align-items: center;
  justify-items: center;
  position: relative;
}
@media (min-width: 1200px) {
  .how-it-works-page .find-home {
    grid-template-columns: 1fr 1fr;
  }
}
.how-it-works-page .find-home .text {
  padding: 1rem;
}
.how-it-works-page .sign-agreement {
  display: grid;
  align-items: center;
  justify-items: center;
  position: relative;
}
.how-it-works-page .sign-agreement img {
  max-width: 50%;
}
.how-it-works-page .dream {
  display: grid;
  align-items: center;
  justify-items: center;
  position: relative;
}
@media (min-width: 1366px) {
  .how-it-works-page .dream {
    min-height: 100vh;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1366px) {
  .how-it-works-page .dream {
    min-height: 100%;
  }
}
.how-it-works-page .dream img {
  max-width: 80%;
  justify-self: end;
  width: 100%;
}
@media (max-width: 1366px) {
  .how-it-works-page .dream img {
    max-width: 100%;
  }
}
.how-it-works-page .property-management .text p {
  margin-bottom: 0;
}
.how-it-works-page .property-management img {
  max-width: 40%;
  display: block;
  margin: auto;
}

@media (min-width: 1600px) {
  .new-register-now {
    padding: 50px 0;
  }
}
@media (max-width: 1600px) {
  .new-register-now {
    padding: 30px;
  }
}
@media (max-width: 1366px) {
  .new-register-now {
    padding: 30px 15px 15px;
  }
}
@media (min-width: 1200px) {
  .new-register-now {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-items: center;
  }
}
@media (max-width: 992px) {
  .new-register-now {
    grid-template-columns: 1fr;
    grid-gap: 15px;
    padding: 20px 15px 15px;
  }
}
.new-register-now h1 {
  grid-column: 1/-1;
  margin-top: 0;
}
@media (max-width: 1600px) {
  .new-register-now h1 {
    font-size: 3em;
  }
}
@media (max-width: 992px) {
  .new-register-now h1 {
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 480px) {
  .new-register-now h1 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1600px) {
  .new-register-now .membership-section h2:first-child {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .new-register-now .membership-section .list-item {
    line-height: 35px;
  }
}
@media (max-width: 480px) {
  .new-register-now .membership-section .list-item {
    text-align: left;
  }
}
.new-register-now .member-benefit-box {
  background: #fff;
  position: relative;
  padding: 1rem;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}
.new-register-now .member-benefit-box .member-box-background {
  background: #B5BD89;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .new-register-now .member-benefit-box .member-box-background {
    top: -15px;
    left: -15px;
  }
}
@media (max-width: 992px) {
  .new-register-now .member-benefit-box .member-box-background {
    left: 0;
    top: 0;
    padding: 15px;
  }
}
@media (max-width: 1600px) {
  .new-register-now .member-benefit-box .member-box-background h2 {
    font-size: 30px;
    line-height: 40px;
  }
}
.new-register-now .member-benefit-box .list-item {
  line-height: 2.4;
}
@media (max-width: 992px) {
  .new-register-now .member-benefit-box .list-item {
    line-height: 35px;
  }
}
.new-register-now .member-benefit-box img {
  max-height: 25px;
  margin-right: 15px;
  width: auto;
}
.new-register-now .member-level-row {
  box-sizing: border-box;
  margin-right: 1rem;
  padding: 1rem;
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
}
@media (max-width: 992px) {
  .new-register-now .member-level-row {
    grid-template-columns: 1fr 1fr;
    padding: 0;
    margin: 0;
  }
}
@media (max-width: 576px) {
  .new-register-now .member-level-row {
    grid-template-columns: 1fr;
  }
}
.new-register-now .membership {
  display: block;
}
.new-register-now .membership.one {
  align-self: end;
  justify-self: start;
}
@media (min-width: 992px) {
  .new-register-now .membership.one {
    align-self: center;
    justify-self: center;
  }
}
.new-register-now .membership.two {
  align-self: start;
  justify-self: end;
}
.new-register-now .member-level-box {
  position: relative;
  background: #fff;
  padding: 1rem;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  text-align: center;
}
@media (max-width: 992px) {
  .new-register-now .member-level-box {
    padding: 15px;
  }
}
.new-register-now .member-level-box .list-item {
  text-align: left;
}
.new-register-now .member-level-box .member-box-background {
  background: #B5BD89;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -25px;
  z-index: -1;
}
@media (max-width: 1600px) {
  .new-register-now .member-level-box .member-box-background {
    top: -15px;
  }
}
@media (max-width: 992px) {
  .new-register-now .member-level-box .member-box-background {
    top: 0;
    background: none;
  }
}
.new-register-now .member-level-box h2 {
  font-size: 2rem;
}
@media (max-width: 1600px) {
  .new-register-now .member-level-box h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 0;
  }
}
.new-register-now .member-level-box a:hover {
  opacity: 0.7;
}
@media (max-width: 992px) {
  .new-register-now .member-level-box a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    background: #006AAC;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 15px;
    border-radius: 6px;
    opacity: 1;
    max-width: 250px;
    margin: 10px auto 0;
    display: block;
  }
  .new-register-now .member-level-box a:hover {
    opacity: 0.9;
  }
}
@media (max-width: 480px) {
  .new-register-now .member-level-box a {
    width: 100%;
    max-width: 100%;
  }
}
.new-register-now .member-level-box .member-price {
  font-size: 4rem;
  line-height: 1;
  color: #006AAC;
  font-family: "Alata", serif;
  margin: 1rem;
}
@media (max-width: 1600px) {
  .new-register-now .member-level-box .member-price {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 992px) {
  .new-register-now .member-level-box .member-price {
    margin: 0;
    font-size: 50px;
    line-height: 60px;
    padding: 15px;
  }
}
@media (max-width: 480px) {
  .new-register-now .member-level-box .member-price {
    font-size: 40px;
    line-height: 50px;
  }
}
.new-register-now .member-level-box .member-price small {
  font-size: 50%;
}
.new-register-now .member-level-box img {
  height: 20px;
  width: auto;
  margin-right: 10px;
}
.new-register-now .member-level-box .styled-hr {
  width: 100%;
  border-color: #b5bd89;
  display: block;
  margin: 15px auto;
}
@media (max-width: 992px) {
  .new-register-now .member-level-box .styled-hr {
    width: 100%;
    border-color: #b5bd89;
    display: block;
    margin: 15px auto;
  }
}

@media (max-width: 1600px) {
  .member-benefits-title {
    font-size: 30px;
    line-height: 40px;
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .member-benefits-title {
    margin-top: 0 !important;
    margin-bottom: 15px;
  }
}

.member-benefit-box {
  background: #fff;
  position: relative;
  padding: 1rem;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}
.member-benefit-box .member-box-background {
  background: #B5BD89;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -25px;
  left: -25px;
  z-index: -1;
}
.member-benefit-box .list-item {
  line-height: 2.4;
}
.member-benefit-box img {
  max-height: 25px;
  margin-right: 15px;
  width: auto;
}

.member-level-row {
  box-sizing: border-box;
  margin-right: 1rem;
  padding: 1rem;
  display: grid;
  align-items: stretch;
  justify-items: stretch;
  grid-template-columns: 1fr 1fr;
  grid-gap: 0;
}
@media (max-width: 992px) {
  .member-level-row {
    grid-gap: 0;
  }
}

.membership {
  display: block;
}
.membership.one {
  align-self: end;
  justify-self: start;
}
.membership.two {
  align-self: start;
  justify-self: end;
}

.member-level-box {
  position: relative;
  background: #fff;
  padding: 1rem;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.member-level-box .member-box-background {
  background: #B5BD89;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -25px;
  z-index: -1;
}
.member-level-box h2 {
  font-size: 2rem;
}
.member-level-box .member-price {
  font-size: 4rem;
  line-height: 1;
  color: #006AAC;
  font-family: "Alata", serif;
  margin: 1rem;
}
.member-level-box .member-price small {
  font-size: 50%;
}
.member-level-box img {
  height: 20px;
  width: auto;
  margin-right: 10px;
}
.member-level-box .styled-hr {
  width: 100%;
  border-color: #b5bd89;
  display: block;
  margin: 15px auto;
}
@media (max-width: 992px) {
  .member-level-box .styled-hr {
    width: 100%;
    border-color: #b5bd89;
    display: block;
    margin: 15px auto;
  }
}

.about-page {
  padding: 30px;
}
@media (max-width: 1200px) {
  .about-page {
    padding: 15px 15px 0;
  }
}
.about-page .about-title-two {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .about-page .about-title-two {
    margin-bottom: 30px;
  }
}
.about-page .bio-row {
  display: grid;
}
@media (min-width: 1200px) {
  .about-page .bio-row {
    padding: 0;
  }
}
.about-page .bio-row .col-member {
  display: grid;
  grid-gap: 3rem;
}
@media (min-width: 1200px) {
  .about-page .bio-row .col-member {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-items: center;
    margin-bottom: 5rem;
  }
}
@media (max-width: 1200px) {
  .about-page .bio-row .col-member {
    grid-template-columns: 1fr;
    margin-bottom: 15px;
    grid-gap: 15px;
  }
}
.about-page .bio-box {
  position: relative;
  background: #fff;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  padding: 1rem;
}
@media (max-width: 1200px) {
  .about-page .bio-box {
    grid-gap: 15px;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 15px;
    border-radius: 6px;
  }
  .about-page .bio-box:last-child {
    margin-bottom: 0;
  }
}
.about-page .bio-box .team-box-background {
  background: #B5BD89;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -25px;
  right: -25px;
  z-index: -1;
}
.about-page .bio-box .team-box-background.two {
  left: -25px;
}
.about-page h1 {
  margin-bottom: 70px;
}
@media (max-width: 1600px) {
  .about-page h1 {
    font-size: 3em;
    margin-bottom: 30px;
  }
}
@media (max-width: 992px) {
  .about-page h1 {
    margin-bottom: 20px;
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 480px) {
  .about-page h1 {
    font-size: 36px;
    line-height: 46px;
    margin-bottom: 15px;
  }
}
.about-page .col-member {
  max-width: 1170px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .about-page .col-member {
    max-width: 100%;
    grid-gap: 15px;
  }
}
.about-page .image-about, .about-page .card-img-top {
  border-radius: 12px;
  border: solid 1px #ececec;
}
.about-page .show-res-two {
  display: none;
}
@media (max-width: 1200px) {
  .about-page .show-res-two {
    display: block;
  }
}
.about-page .bio-box {
  padding: 15px;
}
@media (max-width: 1200px) {
  .about-page .team-box-background {
    display: none;
  }
}
@media (max-width: 1200px) {
  .about-page .card-about {
    padding: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 1200px) {
  .about-page .card-text {
    font-size: 18px;
    line-height: 28px;
  }
}

.cost-calculator-page {
  background: none;
  padding: 30px 0 15px;
}
@media (max-width: 1200px) {
  .cost-calculator-page {
    padding: 80px 0 15px;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page {
    padding: 90px 0 15px;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page {
    padding: 85px 0 15px;
  }
}
.cost-calculator-page h1 {
  font-size: 3em;
  margin-top: 0;
  color: #006AAC;
}
@media (max-width: 992px) {
  .cost-calculator-page h1 {
    font-size: 1.8em;
  }
}
.cost-calculator-page h2 {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: bold;
  text-align: center;
  color: #006AAC;
}
@media (max-width: 992px) {
  .cost-calculator-page h2 {
    font-size: 1.2em;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .cost-calculator-page h2 {
    margin-bottom: 15px;
  }
}
.cost-calculator-page .col-cost-calculator {
  background-color: #fff;
  padding: 30px 30px 0;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .cost-calculator-page .col-cost-calculator {
    padding: 15px;
  }
}
.cost-calculator-page .row {
  display: block;
}
.cost-calculator-page #costCalculator {
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px;
  margin: 0 auto;
  align-items: start;
}
@media (min-width: 992px) {
  .cost-calculator-page #costCalculator {
    padding: 50px 0 0 0;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator {
    grid-template-columns: 1fr;
    margin-top: 30px;
    padding: 0;
    display: block;
  }
}
.cost-calculator-page #costCalculator .left {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .left {
    grid-template-columns: 1fr;
  }
}
.cost-calculator-page #costCalculator .left .column-calc {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  margin-right: 10px;
}
@media (min-width: 992px) {
  .cost-calculator-page #costCalculator .left .column-calc {
    grid-template-columns: 1fr;
    grid-column: 1/-1;
    display: grid;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .left .column-calc {
    display: block;
  }
}
.cost-calculator-page #costCalculator .right {
  border-left: 1px solid #006AAC;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .right {
    border-left: none;
    margin-top: 30px;
  }
}
.cost-calculator-page #costCalculator .second-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .second-section {
    grid-template-columns: 1fr;
  }
}
.cost-calculator-page #costCalculator .second-section .right.right-second-section .column-calc {
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: end;
}
.cost-calculator-page #costCalculator .second-section .right.right-second-section .column-calc-two {
  grid-template-columns: 1fr;
  align-items: start;
  justify-items: start;
}
.cost-calculator-page #costCalculator .full-columns {
  grid-column: 1/-1;
  margin: 0 0 15px;
}
@media (max-width: 480px) {
  .cost-calculator-page #costCalculator .full-columns {
    text-align: left !important;
  }
}
.cost-calculator-page #costCalculator label {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  color: #000;
  grid-column: 1/-1;
  text-align: left !important;
  line-height: 28px;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator label {
    margin-bottom: 10px;
  }
}
.cost-calculator-page #costCalculator p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
  color: #000;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator p {
    margin-bottom: 0;
  }
}
.cost-calculator-page #costCalculator .blank-space {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  border-bottom: solid 1px #fff;
  padding-bottom: 15px;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .blank-space {
    padding-top: 15px;
  }
}
.cost-calculator-page #costCalculator .column-calc {
  border-bottom: solid 1px #fff;
  padding-bottom: 15px;
  margin-top: 0;
}
@media (min-width: 992px) {
  .cost-calculator-page #costCalculator .column-calc {
    grid-template-columns: 1fr 1fr auto;
    grid-column: 1/-3;
    display: grid;
    align-items: center;
  }
}
.cost-calculator-page #costCalculator .white-character {
  color: #fff;
  text-decoration: none;
  text-transform: none;
  font-weight: bold;
  justify-self: right;
  font-size: 20px;
  display: none;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .white-character {
    display: none;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .column-calc-two {
    padding-bottom: 0;
  }
}
.cost-calculator-page #costCalculator .column-calc-first, .cost-calculator-page #costCalculator .column-four-calc {
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
  display: grid;
}
@media (min-width: 992px) {
  .cost-calculator-page #costCalculator .column-calc-first, .cost-calculator-page #costCalculator .column-four-calc {
    align-items: end !important;
    margin-bottom: 15px;
  }
}
@media (max-width: 1600px) {
  .cost-calculator-page #costCalculator .column-calc-first, .cost-calculator-page #costCalculator .column-four-calc {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .column-calc-first, .cost-calculator-page #costCalculator .column-four-calc {
    margin-top: 0;
    grid-template-columns: 1fr !important;
  }
}
.cost-calculator-page #costCalculator .four-columns {
  grid-column: 1/-1;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .four-columns {
    grid-template-columns: 1fr;
    margin-top: 0;
    display: block;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .four-columns input {
    margin-bottom: 15px;
  }
  .cost-calculator-page #costCalculator .four-columns input:last-child {
    margin-bottom: 0;
  }
}
.cost-calculator-page #costCalculator .four-columns .blank-space {
  padding: 0;
  border: none;
}
.cost-calculator-page #costCalculator .three-columns {
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column: 1/-1;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .three-columns {
    grid-template-columns: 1fr;
  }
}
.cost-calculator-page #costCalculator .mb-15-res {
  margin-bottom: 15px !important;
}
.cost-calculator-page #costCalculator .three-columns-rent {
  grid-template-columns: 1fr 1fr 1fr;
  grid-column: 1/-1;
  align-items: start;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .three-columns-rent {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .cost-calculator-page #costCalculator .four-columns-three {
    grid-template-columns: 0 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .cost-calculator-page #costCalculator .two-columns {
    grid-template-columns: 1fr 1fr;
  }
}
.cost-calculator-page #costCalculator input {
  font-size: 18px;
  color: #000;
}
@media (min-width: 992px) {
  .cost-calculator-page #costCalculator input {
    max-width: 180px;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .input-bottom-res {
    margin-bottom: 0 !important;
  }
}
.cost-calculator-page #costCalculator .middle-heading {
  display: grid;
  grid-gap: 0;
}
@media (max-width: 992px) {
  .cost-calculator-page #costCalculator .middle-heading {
    display: none;
  }
}
@media (min-width: 992px) {
  .cost-calculator-page #costCalculator .middle-heading .blank-space {
    text-align: left;
  }
}
.cost-calculator-page .form-divider {
  margin-top: 15px;
  margin-bottom: 0;
  border-top: solid 5px #fff;
  grid-column: 1/-1;
}
.cost-calculator-page .nbb {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
.cost-calculator-page #calculateBtn, .cost-calculator-page #scrollToTop, .cost-calculator-page #goTop {
  background: #004B7A;
  box-shadow: none;
  outline: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 15px;
  border-radius: 6px;
  margin: 15px auto 0;
  display: block;
  grid-column: 1/-1;
  width: 300px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cost-calculator-page #calculateBtn:hover, .cost-calculator-page #scrollToTop:hover, .cost-calculator-page #goTop:hover {
  background: #C5E6A6;
  color: #000;
}
.cost-calculator-page .form-control {
  display: block;
  width: 100%;
  padding: 0.5rem 0.5rem;
  line-height: 1em;
  background-color: #fcff00;
  background-image: none;
  background-clip: padding-box;
  border: solid 1px #33873c;
  border-radius: 0.25rem;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  box-shadow: inset -1px -1px 5px #fcff00;
  color: #000 !important;
}
.cost-calculator-page .form-control:disabled, .cost-calculator-page .form-control[readonly] {
  background: #B5BD89;
  border: 1px solid #B5BD89;
  box-shadow: inset -1px -1px 5px rgba(0, 0, 0, 0.2);
  color: #000 !important;
  font-weight: bold;
}
@media (min-width: 992px) {
  .cost-calculator-page .percentage-input {
    max-width: 50%;
    justify-self: left;
  }
  .cost-calculator-page .percentage-input:before {
    content: "&#37;";
    color: red;
    right: 10px;
  }
}
@media (min-width: 992px) {
  .cost-calculator-page .percentage-input-three {
    max-width: 50%;
    justify-self: left;
  }
  .cost-calculator-page .percentage-input-three:before {
    content: "&#37;";
    color: red;
    right: 10px;
  }
}
.cost-calculator-page .is-invalid {
  background: linear-gradient(#ebc65c, #e8b423);
  background-image: -webkit-linear-gradient(#ebc65c, #e8b423);
  background-image: -o-linear-gradient(#ebc65c, #e8b423);
  background-image: linear-gradient(#ebc65c, #e8b423);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="#ebc65c", endColorstr="#e8b423");
  border: 1px solid #ebc65c;
  box-shadow: inset -1px -1px 5px #ab9455;
  color: #fff !important;
  font-weight: bold;
}
.cost-calculator-page .is-invalid:focus {
  box-shadow: inset -1px -1px 5px #ab9455;
}
.cost-calculator-page .required-fields-container {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 100%;
  grid-gap: 15px;
  align-items: center;
}
@media (min-width: 992px) {
  .cost-calculator-page .required-fields-container {
    max-width: 480px;
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .cost-calculator-page .required-fields-container {
    grid-template-columns: 1fr;
  }
}
.cost-calculator-page .required-fields-container .required-fields {
  margin-bottom: 0;
  padding: 8px 10px 9px;
  font-size: 20px;
  border-radius: 6px;
  outline: none;
  text-align: center;
  font-weight: bold;
  background: #fff;
  color: #000 !important;
  max-width: 180px;
  min-width: 180px;
  min-height: 40.5px;
}
@media (min-width: 992px) {
  .cost-calculator-page .required-fields-container .required-fields {
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
  .cost-calculator-page .required-fields-container .required-fields {
    margin-bottom: 0;
    max-width: 100%;
    width: 100%;
    display: block;
  }
}
.cost-calculator-page .required-fields-container .optional-fields {
  max-width: 180px;
  color: #000 !important;
  min-width: 180px;
  min-height: 25.5px;
  display: inline-block;
}
@media (max-width: 480px) {
  .cost-calculator-page .required-fields-container .optional-fields {
    width: 75px;
    min-width: 0;
  }
}
.cost-calculator-page .required-fields-container .boxes-text-calculator {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
  margin-top: 10px;
}
@media (min-width: 992px) {
  .cost-calculator-page .required-fields-container .boxes-text-calculator {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page .required-fields-container .boxes-text-calculator {
    margin-top: 0;
  }
}
.cost-calculator-page .required-fields-container .green-box-calculator {
  background: #B5BD89 !important;
  border: 1px solid #B5BD89 !important;
  box-shadow: inset -1px -1px 5px rgba(0, 0, 0, 0.2) !important;
}
@media (max-width: 992px) {
  .cost-calculator-page .required-fields-container .green-box-calculator {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cost-calculator-page .rentals-heading {
    display: none;
  }
}
.cost-calculator-page .rental-income-title {
  width: 100%;
  height: 100%;
  grid-column: 1/-1;
}
@media (max-width: 992px) {
  .cost-calculator-page .rental-income-title {
    margin-top: 30px !important;
  }
}
.cost-calculator-page .rental-income-title h2 {
  font-size: 1.4em;
  font-weight: bold;
  color: #006AAC;
  text-align: center;
  margin: 20px 0 5px;
}
@media (max-width: 992px) {
  .cost-calculator-page .rental-income-title h2 {
    font-size: 1.2em;
    line-height: 34px;
  }
}
.cost-calculator-page .rental-input, .cost-calculator-page .optional-fields {
  background: #fcff00 !important;
  border: solid 1px #33873c !important;
  box-shadow: inset -1px -1px 5px #fcff00 !important;
}
.cost-calculator-page .rental-input {
  color: #000 !important;
}
.cost-calculator-page .regular-input::placeholder, .cost-calculator-page .rental-input::placeholder, .cost-calculator-page .normal-input::placeholder, .cost-calculator-page .percentage-input::placeholder {
  color: #000;
  opacity: 1; /* Firefox */
}
.cost-calculator-page .regular-input :-ms-input-placeholder, .cost-calculator-page .rental-input :-ms-input-placeholder, .cost-calculator-page .normal-input :-ms-input-placeholder, .cost-calculator-page .percentage-input :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}
.cost-calculator-page .regular-input ::-ms-input-placeholder, .cost-calculator-page .rental-input ::-ms-input-placeholder, .cost-calculator-page .normal-input ::-ms-input-placeholder, .cost-calculator-page .percentage-input ::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}
.cost-calculator-page .required-regular::placeholder, .cost-calculator-page .required-percentage::placeholder {
  color: #000;
  opacity: 1; /* Firefox */
}
.cost-calculator-page .required-regular :-ms-input-placeholder, .cost-calculator-page .required-percentage :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000;
}
.cost-calculator-page .required-regular ::-ms-input-placeholder, .cost-calculator-page .required-percentage ::-ms-input-placeholder { /* Microsoft Edge */
  color: #000;
}
@media (max-width: 992px) {
  .cost-calculator-page .text-right {
    text-align: left !important;
  }
}
.cost-calculator-page .column-cal-box label {
  margin-bottom: 10px !important;
}
.cost-calculator-page .column-cal-box-two {
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .cost-calculator-page .column-cal-box-two {
    margin-bottom: 0;
  }
}

.checkout-page {
  padding-top: 100px;
}
@media (max-width: 1366px) {
  .checkout-page {
    padding-top: 15px;
  }
}
.checkout-page .member-box-background {
  left: -25px;
}
@media (max-width: 1366px) {
  .checkout-page .member-box-background {
    display: none;
  }
}
.checkout-page .top-part {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
}
@media (max-width: 1366px) {
  .checkout-page .top-part {
    grid-template-columns: 1fr;
    padding: 15px;
  }
}
@media (max-width: 1366px) {
  .checkout-page .top-part .membership-section {
    margin-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .checkout-page .top-part .membership-section {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .checkout-page h1 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  .checkout-page h1 {
    font-size: 26px;
    line-height: 36px;
  }
}
.checkout-page h2.bottom {
  background: #B5BD89;
  margin-bottom: 0;
  padding: 1rem;
}
.checkout-page .bottom-part {
  background: #B5BD89;
  padding: 1rem;
  display: grid;
  grid-gap: 5rem;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
@media (max-width: 1366px) {
  .checkout-page .bottom-part {
    padding: 15px;
    display: grid;
    grid-gap: 15px;
    grid-template-columns: 1fr;
    text-align: left;
  }
}
.checkout-page .bottom-part #membership {
  background: transparent;
  color: #000;
}
.checkout-page .bottom-part form {
  max-width: 100%;
}
@media (max-width: 1366px) {
  .checkout-page .bottom-part h2 {
    margin: 0;
    padding: 0;
  }
}
.checkout-page .bottom-part .left-side {
  justify-self: end;
}
@media (max-width: 1366px) {
  .checkout-page .bottom-part .left-side {
    justify-self: start;
    width: 100%;
  }
}
.checkout-page .bottom-part .card-row {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.checkout-page .bottom-part .card-row img {
  margin-right: 5px;
}
.checkout-page .bottom-part .coupon-row {
  display: flex;
  justify-content: center;
}
@media (max-width: 992px) {
  .checkout-page .bottom-part .coupon-row {
    display: block;
  }
}
.checkout-page .bottom-part .coupon-row .form-group {
  margin-right: 10px;
}
.checkout-page .bottom-part .coupon-row .coupon-btn {
  margin-top: 5px;
  align-self: center;
}
.checkout-page .bottom-part button {
  background: #006AAC;
  color: #fff !important;
}
@media (max-width: 992px) {
  .checkout-page .form-control {
    margin-bottom: 15px;
  }
}

.navbar-analytics-desk {
  background-color: #006AAC;
}

header nav.nav a.nav-link i {
  color: #C5E6A6;
}

.card-header {
  background-color: #006AAC;
}

.navbar-analytics-desk .navbar-brand {
  background: #fff;
  width: 100%;
}
.navbar-analytics-desk .navbar-brand img {
  width: 175px;
  height: auto;
}

.home-detail-page {
  padding: 3rem;
  background: #006AAC;
  border-bottom: 10px solid #fff;
}
@media (max-width: 992px) {
  .home-detail-page {
    padding: 15px;
  }
}
@media (min-width: 1200px) {
  .home-detail-page .content {
    width: 100%;
    max-width: 1600px;
    margin: 3rem auto;
  }
}
@media (max-width: 1600px) {
  .home-detail-page .top-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    margin-top: 30px;
  }
}
@media (max-width: 1366px) {
  .home-detail-page .top-row {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .home-detail-page .top-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .home-detail-page .top-row {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 1600px) {
  .home-detail-page .col-home-detail-divider {
    width: 100%;
    max-width: 100%;
    flex: 100%;
    grid-column: 1/-1;
    padding-left: 0;
    padding-right: 0;
  }
}
.home-detail-page .card {
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
  padding: 30px;
  border: none;
}
@media (max-width: 992px) {
  .home-detail-page .card {
    padding: 15px;
  }
}
.home-detail-page .card-header {
  background: #B5BD89;
  color: #000;
  font-size: 3rem;
  text-align: center;
  padding: 15px;
  line-height: 4rem;
}
@media (max-width: 1600px) {
  .home-detail-page .card-header {
    font-size: 2.5em;
  }
}
@media (max-width: 992px) {
  .home-detail-page .card-header {
    font-size: 36px;
    line-height: 46px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .home-detail-page .card-header {
    font-size: 30px;
    line-height: 40px;
  }
}
.home-detail-page .card-body {
  padding: 0;
}
.home-detail-page .card-body hr {
  margin: 0.5rem 0;
}
@media (max-width: 992px) {
  .home-detail-page .card-body hr {
    margin: 0;
  }
}
.home-detail-page .top-row {
  text-align: center;
  align-items: start;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .home-detail-page .top-row {
    margin-top: 15px;
  }
}
.home-detail-page .top-row a {
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.home-detail-page .top-row a:hover {
  opacity: 0.9;
}
.home-detail-page .top-row i {
  font-size: 2.4rem;
  color: #006AAC;
}
@media (max-width: 1600px) {
  .home-detail-page .col-home-detail {
    width: 100%;
    max-width: 100%;
    flex: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.home-detail-page .form-value {
  margin-bottom: 1rem;
}
.home-detail-page .label {
  color: #006AAC;
  margin-bottom: 0;
}
.home-detail-page .sales-price-column {
  margin: 0;
}
.home-detail-page .sales-price-column .label {
  background: #B5BD89;
  color: #000;
  font-size: 1.8rem;
  padding: 0.5rem;
  text-align: center;
}
@media (max-width: 992px) {
  .home-detail-page .sales-price-column .label {
    font-size: 26px;
  }
}
.home-detail-page .sales-price-column .form-value {
  font-size: 2rem;
  color: #006AAC;
  font-weight: bold;
  margin-bottom: 1rem !important;
}
@media (max-width: 992px) {
  .home-detail-page .sales-price-column .form-value {
    margin-bottom: 15px !important;
    font-size: 30px;
    line-height: 40px;
  }
}

.home-specifications {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr);
  grid-gap: 1.5rem;
  justify-items: center;
  margin-top: 10px;
}
@media (max-width: 1600px) {
  .home-specifications {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 1366px) {
  .home-specifications {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .home-specifications {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .home-specifications {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.home-specifications .home-field .label, .home-specifications .home-field .form-value {
  text-align: center;
}
.home-specifications .home-field .label {
  margin-bottom: 0;
  color: #006AAC;
}
@media (max-width: 992px) {
  .home-specifications .home-field .last-form-value {
    margin-bottom: 15px;
  }
}

.description-title {
  display: block !important;
  margin-bottom: 10px !important;
}
@media (max-width: 992px) {
  .description-title {
    margin-top: 15px;
  }
}

.description-text {
  line-height: 28px;
}
@media (max-width: 480px) {
  .description-text {
    line-height: 26px;
  }
}

@media (max-width: 992px) {
  .home-images {
    margin-bottom: 10px;
  }
}
.home-images .first-image {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 10px auto 15px;
  border-radius: 12px;
}
@media (min-width: 1200px) {
  .home-images .first-image {
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }
}
@media (max-width: 992px) {
  .home-images .first-image {
    max-width: 100%;
    margin: 15px auto 0;
  }
}
.home-images .thumbnail {
  height: auto;
  width: 100%;
  margin-bottom: 1rem;
  max-width: 120px;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
}
.home-images .thumbnail:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
  .home-images .thumbnail {
    max-width: 80px;
    border-radius: 6px;
    margin-bottom: 5px;
  }
}

.agreement-row {
  padding: 3rem;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}
.agreement-row h2 {
  margin-bottom: 0;
}

.agreement-box {
  margin-top: 2rem;
  position: relative;
  background-color: #fff;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
.agreement-box .document-agreement-list {
  padding: 1rem;
}
.agreement-box .agreement-box-background {
  background: #B5BD89;
  height: 100%;
  width: 100%;
  position: absolute;
  top: -25px;
  z-index: -1;
  left: -25px;
}

.second-section-letter {
  padding: 3rem;
  display: grid;
  align-items: center;
  justify-items: center;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
}

.home-cash-page .home-cash-top h1 {
  font-size: 4em;
  padding: 0;
  margin-bottom: 15px;
  line-height: 80px;
}
@media (min-width: 992px) {
  .home-cash-page .home-cash-top h1 {
    margin-top: 35px;
  }
}
@media (max-width: 992px) {
  .home-cash-page .home-cash-top h1 {
    margin-top: 15px;
    line-height: 45px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .home-cash-page .home-cash-top h1 {
    line-height: 36px;
  }
}
.home-cash-page .home-cash-top p {
  font-size: 1.2em;
  line-height: 42px;
}
@media (max-width: 992px) {
  .home-cash-page .home-cash-top p {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 15px;
  }
}
.home-cash-page .above-fold-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 15px;
}
.home-cash-page .above-fold-content h3 {
  margin-top: 5px;
  margin-bottom: 20px;
  font-size: 26px;
}
@media (max-width: 992px) {
  .home-cash-page .above-fold-content h3 {
    font-size: 22px;
    margin-top: 0;
  }
}
.home-cash-page .above-fold-content h2 {
  font-size: 1.6em;
  line-height: 36px;
  background: #B5BD89;
  align-self: stretch;
  color: #000;
  margin-bottom: 0;
  padding: 1rem;
  margin-left: 5rem;
  margin-right: 5rem;
}
@media (max-width: 992px) {
  .home-cash-page .above-fold-content h2 {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.4em;
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .home-cash-page .above-fold-content h2 {
    font-size: 1.2em;
    line-height: 30px;
  }
}
.home-cash-page .above-fold-content .right {
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border: solid 1px #dadada;
}
.home-cash-page .above-fold-content .example-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #006AAC;
  padding-bottom: 15px;
  padding-top: 15px;
}
@media (max-width: 992px) {
  .home-cash-page .above-fold-content .example-row {
    grid-template-columns: 1fr;
  }
}
.home-cash-page .above-fold-content .example-row .first-title {
  font-size: 1.6em;
  color: #006AAC;
  align-items: center;
  align-self: center;
  justify-self: center;
}
.home-cash-page .above-fold-content .example-row .sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.home-cash-page .above-fold-content .example-row #home-price {
  background-color: #B5BD89;
  font-size: 1.4em;
  width: 100%;
  margin-bottom: 15px;
  max-width: 100%;
  padding: 9px;
  border-radius: 6px;
}
@media (max-width: 992px) {
  .home-cash-page .above-fold-content .example-row #home-price {
    font-size: 1.2em;
  }
}
.home-cash-page .above-fold-content .example-row .getRefundBtn {
  width: 100%;
  font-weight: bold;
  padding: 12px;
  background-image: linear-gradient(#34a937, #247625);
  border: 1px solid #31a536;
  max-width: 250px;
  margin: 0 auto;
  display: block;
}
.home-cash-page .above-fold-content .example-row .getRefundBtn:hover {
  opacity: 0.9;
}
.home-cash-page .above-fold-content .example-row .label {
  margin-bottom: 15px;
}
.home-cash-page .above-fold-content .example-row .label:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .home-cash-page .above-fold-content .example-row .label {
    padding-left: 15px;
    margin-bottom: 10px;
  }
}
@media (min-width: 992px) {
  .home-cash-page .above-fold-content .example-row .label-home-cost {
    padding-left: 0;
  }
}
@media (max-width: 992px) {
  .home-cash-page .above-fold-content .example-row .label-home-cost {
    margin-bottom: 25px;
  }
}
.home-cash-page .above-fold-content .example-row-two {
  grid-template-columns: 1fr;
}
.home-cash-page .above-fold-content .example-row-two .value {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.home-cash-page .cta-home-bottom {
  margin-bottom: 0;
  background: linear-gradient(#B5BD89, #B5BD89);
  background-image: -webkit-linear-gradient(#B5BD89, #B5BD89);
  background-image: -o-linear-gradient(#B5BD89, #B5BD89);
  background-image: linear-gradient(#B5BD89, #B5BD89);
  filter: progid:DXImageTransform.Microsoft.Gradient(startColorstr="$tertiary-accent-color", endColorstr="$tertiary-accent-color");
  border: 1px solid #B5BD89;
  border-radius: 0;
  color: #fff !important;
  transition: all 0.3s ease-in-out;
}
.home-cash-page .cta-home-bottom:hover {
  opacity: 0.9;
}
.home-cash-page .cta-home-bottom a {
  color: #000;
  font-weight: bold;
  width: 100%;
}
.home-cash-page .new-reward-amount {
  border: 1px solid #000;
  padding: 0.5rem;
  font-size: 1.6em;
  color: red;
  margin-left: 10px;
  margin-right: 10px;
  border-radius: 6px;
}
@media (max-width: 480px) {
  .home-cash-page .new-reward-amount {
    display: block;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 0;
    margin-right: 0;
  }
}
.home-cash-page p small {
  font-size: 16px;
  margin-top: 15px;
  display: block;
  line-height: 28px;
  font-weight: normal;
}
@media (max-width: 992px) {
  .home-cash-page #commission_split {
    margin-bottom: 10px;
  }
}

.home-pages {
  padding: 3rem;
  background: url("../images/example-home-upload/iStock-1355379414.jpeg") center/cover no-repeat;
}
@media (min-width: 1200px) {
  .home-pages {
    padding: 10rem 20vw;
  }
}
.home-pages .card {
  box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.8);
  background: rgba(255, 255, 255, 0.9);
}
.home-pages .card-header {
  background: rgba(208, 176, 118, 0.2);
  color: #006AAC;
  font-size: 3rem;
  text-align: center;
  padding: 2rem;
}
.home-pages .card-body {
  padding: 0;
}
.home-pages form {
  background: rgba(255, 255, 255, 0.2);
  padding: 3rem;
}
.home-pages form label {
  color: #000;
}
.home-pages form hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid #006AAC;
}
.home-pages button {
  border: 2px solid #fff;
}

@media (max-width: 992px) {
  .navbar-nav {
    margin-top: 0;
    overflow-y: auto;
  }
}

@media (max-width: 992px) {
  .nav-item .dropdown a {
    opacity: 1 !important;
    border-radius: 0 !important;
  }
  .nav-item .dropdown a:hover {
    opacity: 1 !important;
  }
}

@media (max-width: 992px) {
  .navbar-nav li.nav-item:not(.phone-nav):hover, .dropdown-item:hover {
    opacity: 1 !important;
    border-radius: 0 !important;
  }
  .navbar-nav li.nav-item:not(.phone-nav):hover .dropdown-menu, .dropdown-item:hover .dropdown-menu {
    border-radius: 0 !important;
    color: inherit !important;
  }
  .navbar-nav li.nav-item:not(.phone-nav):hover .dropdown-menu .nav-item, .dropdown-item:hover .dropdown-menu .nav-item {
    border-radius: 0 !important;
    color: inherit !important;
  }
  .navbar-nav li.nav-item:not(.phone-nav):hover .dropdown-menu .dropdown-menu-faq a, .dropdown-item:hover .dropdown-menu .dropdown-menu-faq a {
    border-radius: 0 !important;
    color: inherit !important;
  }
  .navbar-nav li.nav-item:not(.phone-nav):hover .dropdown-menu .dropdown-menu-faq a:hover, .dropdown-item:hover .dropdown-menu .dropdown-menu-faq a:hover {
    opacity: 0.9 !important;
    border-radius: 0 !important;
    color: inherit !important;
  }
}

@media (max-width: 992px) {
  .custom-navbar {
    max-height: 100%;
  }
}

@media (max-width: 992px) {
  .navbar-collapse {
    border-top: solid 1px #d3d3d3;
  }
}

.nav-space {
  height: 100px;
}
@media (max-width: 992px) {
  .nav-space {
    height: 60px;
  }
}

.login-btn {
  margin-right: 5px !important;
}
@media (max-width: 992px) {
  .login-btn {
    padding: 12px 15px;
    width: 100%;
    max-width: 100px;
    border-radius: 6px;
    margin-bottom: 0;
    box-shadow: none;
    outline: none;
    border: none;
    margin-right: 0 !important;
  }
  .login-btn a {
    box-shadow: none;
    outline: none;
    border: none;
  }
}
@media (max-width: 480px) {
  .login-btn {
    max-width: 100%;
  }
}

@media (min-width: 1600px) {
  .home-page .home-image-one {
    max-width: 90% !important;
    margin: 0 auto !important;
  }
}
.home-page .banner {
  padding: 15px;
  height: 100%;
  min-height: calc(100vh - 100px);
}
@media (max-width: 992px) {
  .home-page .banner {
    min-height: calc(100vh - 60px);
    align-items: center;
  }
}
@media (max-width: 1600px) {
  .home-page .banner h1 {
    align-self: center;
    justify-content: center;
    justify-self: center;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .home-page .banner h1 {
    font-size: 40px;
    line-height: 50px;
    border-radius: 6px;
  }
}
@media (max-width: 480px) {
  .home-page .banner h1 {
    font-size: 26px;
    line-height: 36px;
  }
}
@media (max-width: 1600px) {
  .home-page .second-section {
    grid-template-columns: 1fr 1fr;
  }
  .home-page .second-section .left-half {
    margin-left: 0 !important;
  }
  .home-page .second-section .right-half {
    margin-right: 0 !important;
  }
  .home-page .second-section .text {
    margin-top: 30px;
  }
  .home-page .second-section img {
    align-self: center !important;
  }
}
@media (max-width: 992px) {
  .home-page .second-section {
    grid-template-columns: 1fr;
  }
  .home-page .second-section h2 {
    margin-top: 0;
    margin-bottom: 15px;
    text-align: center !important;
  }
  .home-page .second-section .text {
    margin-top: 0;
  }
  .home-page .second-section .text p {
    font-size: 26px !important;
    margin-top: 30px !important;
  }
}
.home-page .third-section {
  padding: 15px;
}
@media (max-width: 992px) {
  .home-page .third-section {
    grid-template-columns: 1fr;
    min-height: calc(100vh - 60px);
  }
}
.home-page .third-section .text {
  margin: 0 auto;
  padding: 30px;
  border-radius: 6px;
}
@media (max-width: 992px) {
  .home-page .third-section .text {
    padding: 15px;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .home-page .third-section .text p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
  }
}
.home-page .third-section .text p b {
  margin-bottom: 10px;
  display: block;
}
@media (max-width: 992px) {
  .home-page .third-section .text p b {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .home-page .third-section .text .prohibited-row {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .home-page .third-section .text .prohibited-row {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.home-page .fourth-section {
  padding: 30px;
  grid-template-columns: 1fr;
}
.home-page .fourth-section .main-title {
  grid-column: 1/-1;
}
@media (max-width: 1600px) {
  .home-page .fourth-section {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1366px) {
  .home-page .fourth-section {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .home-page .fourth-section {
    padding: 15px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1600px) {
  .home-page .fourth-section h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1366px) {
  .home-page .fourth-section h2 {
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  .home-page .fourth-section h2 {
    font-size: 30px;
    line-height: 40px;
    padding: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .home-page .fourth-section h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.home-page .fourth-section .benefits-row {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 1366px) {
  .home-page .fourth-section .benefits-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .home-page .fourth-section .benefits-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1600px) {
  .home-page .fourth-section .benefits-row {
    padding: 0;
  }
  .home-page .fourth-section .benefits-row p {
    margin-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .home-page .fourth-section .benefits-row {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.home-page .fourth-section a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.home-page .fourth-section a:hover {
  opacity: 0.7;
}
.home-page .fourth-section h3 {
  margin-bottom: 15px;
}
@media (max-width: 1366px) {
  .home-page .fourth-section h3 {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 1600px) {
  .home-page .fourth-section p {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .home-page .fourth-section p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1600px) {
  .home-page .fourth-section .benefits-image-icon {
    opacity: 0.15;
    right: 15px !important;
    bottom: 15px !important;
  }
}
@media (max-width: 1366px) {
  .home-page .fourth-section .box {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .home-page .fourth-section .call-to-action {
    margin-bottom: 0 !important;
    font-size: 18px;
    font-weight: bold;
    background: #fff;
    color: #006AAC;
    padding: 10px 15px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
  }
  .home-page .fourth-section .call-to-action:hover {
    opacity: 0.9;
  }
}
@media (max-width: 1600px) {
  .home-page .fourth-section .calculate-text {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .home-page .fourth-section .calculate-text {
    text-align: left !important;
    margin-bottom: 20px;
  }
}
.home-page .fifth-section {
  max-height: 100%;
  border-top: solid 1px #d3d3d3;
  padding: 30px;
}
@media (max-width: 1366px) {
  .home-page .fifth-section {
    padding: 15px 15px 30px;
  }
}
.home-page .fifth-section h2 {
  margin-top: 0;
  margin-bottom: 40px;
}
@media (max-width: 1600px) {
  .home-page .fifth-section h2 {
    font-size: 40px;
    line-height: 50px;
  }
}
@media (max-width: 1366px) {
  .home-page .fifth-section h2 {
    margin-top: 0;
    margin-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .home-page .fifth-section h2 {
    font-size: 30px;
    line-height: 40px;
    padding: 0;
  }
}
@media (max-width: 480px) {
  .home-page .fifth-section h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
.home-page .fifth-section #carouselExampleIndicators {
  position: relative;
  background: #f2f2f2;
  border-radius: 12px;
}
.home-page .fifth-section #carouselExampleIndicators .carousel-control-prev {
  transition: all 0.3s ease-in-out;
}
.home-page .fifth-section #carouselExampleIndicators .carousel-control-prev .carousel-control-prev-icon {
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.home-page .fifth-section #carouselExampleIndicators .carousel-control-prev:hover .carousel-control-prev-icon {
  transition: all 0.3s ease-in-out;
  visibility: visible;
}
.home-page .fifth-section #carouselExampleIndicators .carousel-control-next {
  transition: all 0.3s ease-in-out;
}
.home-page .fifth-section #carouselExampleIndicators .carousel-control-next .carousel-control-next-icon {
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.home-page .fifth-section #carouselExampleIndicators .carousel-control-next:hover .carousel-control-next-icon {
  transition: all 0.3s ease-in-out;
  visibility: visible;
}
.home-page .fifth-section #carouselExampleIndicators .carousel-box {
  padding: 0;
  display: flex;
  grid-gap: 30px;
}
@media (max-width: 992px) {
  .home-page .fifth-section #carouselExampleIndicators .carousel-box {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }
}
.home-page .fifth-section #carouselExampleIndicators img.d-block {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.home-page .fifth-section #carouselExampleIndicators .carousel-item {
  padding: 15px;
}
.home-page .fifth-section #carouselExampleIndicators .carousel-image.first {
  background: url("../images/iStock-1327080125.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
@media (min-width: 992px) {
  .home-page .fifth-section #carouselExampleIndicators .carousel-image.first {
    min-height: 500px;
  }
}
@media (max-width: 992px) {
  .home-page .fifth-section #carouselExampleIndicators .carousel-image.first {
    min-height: 450px;
  }
}
@media (max-width: 480px) {
  .home-page .fifth-section #carouselExampleIndicators .carousel-image.first {
    min-height: 250px;
  }
}
.home-page .fifth-section #carouselExampleIndicators .carousel-image.second {
  background: url("../images/iStock-130408311.jpg") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: auto;
  border-radius: 6px;
}
@media (min-width: 992px) {
  .home-page .fifth-section #carouselExampleIndicators .carousel-image.second {
    min-height: 500px;
  }
}
@media (max-width: 992px) {
  .home-page .fifth-section #carouselExampleIndicators .carousel-image.second {
    min-height: 450px;
  }
}
@media (max-width: 480px) {
  .home-page .fifth-section #carouselExampleIndicators .carousel-image.second {
    min-height: 250px;
  }
}
.home-page .fifth-section .info-box {
  width: 100%;
  max-width: 100%;
}
.home-page .fifth-section .info-box .location {
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .home-page .fifth-section .info-box .location {
    font-size: 30px;
    line-height: 40px;
  }
}
@media (max-width: 480px) {
  .home-page .fifth-section .info-box .location {
    font-size: 24px;
    line-height: 34px;
  }
}
.home-page .fifth-section .info-box .title {
  font-size: 2.6rem;
  margin-top: 10px;
  margin-bottom: 15px;
}
@media (max-width: 992px) {
  .home-page .fifth-section .info-box .title {
    font-size: 38px;
    line-height: 48px;
  }
}
@media (max-width: 480px) {
  .home-page .fifth-section .info-box .title {
    font-size: 28px;
    line-height: 38px;
  }
}
.home-page .fifth-section .info-box .price {
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .home-page .fifth-section .info-box .price {
    margin-bottom: 15px;
  }
}
.home-page .fifth-section .info-box .house-specs {
  font-size: 20px;
  margin-bottom: 15px;
}
.home-page .fifth-section .info-box .featured-description {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 992px) {
  .home-page .fifth-section .info-box .featured-description {
    font-size: 18px;
    line-height: 28px;
  }
}
.home-page .fifth-section .info-box .featured-detail-link {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.home-page .fifth-section .info-box .featured-detail-link:hover {
  opacity: 0.7;
}
@media (max-width: 992px) {
  .home-page .fifth-section .info-box .featured-detail-link {
    margin-bottom: 0 !important;
    font-size: 18px;
    font-weight: bold;
    background: #006AAC;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    width: 100%;
    max-width: 100%;
    display: block;
    text-align: center;
    padding: 14px 15px;
  }
  .home-page .fifth-section .info-box .featured-detail-link:hover {
    opacity: 0.9;
  }
}

.how-it-works-page {
  padding-top: 0;
}
.how-it-works-page .banner-first {
  padding: 15px;
}
@media (min-width: 1600px) {
  .how-it-works-page .banner-first {
    height: 100%;
    min-height: calc(45vh - 100px);
    align-items: center;
    align-self: center;
  }
}
@media (min-width: 992px) {
  .how-it-works-page .banner-first {
    padding: 30px;
  }
}
.how-it-works-page .banner-first h1 {
  margin-top: 0;
}
@media (max-width: 1600px) {
  .how-it-works-page .banner-first h1 {
    font-size: 3em;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .banner-first h1 {
    margin-bottom: 30px;
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 480px) {
  .how-it-works-page .banner-first h1 {
    font-size: 36px;
    line-height: 46px;
  }
}
.how-it-works-page .banner-first .icon-partnership-row {
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .how-it-works-page .banner-first .icon-partnership-row {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    grid-gap: 15px;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .banner-first .icon-partnership-row {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  .how-it-works-page .banner-second {
    height: 100%;
    min-height: calc(50vh - 100px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 0;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .banner-second {
    display: block;
    padding: 15px;
  }
  .how-it-works-page .banner-second img {
    border-radius: 12px;
    margin-bottom: 15px;
  }
  .how-it-works-page .banner-second img:last-child {
    margin-bottom: 0;
  }
}
.how-it-works-page .find-partner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px;
}
@media (max-width: 992px) {
  .how-it-works-page .find-partner {
    padding-top: 0;
  }
}
.how-it-works-page .find-partner .text {
  margin-top: 0;
  padding: 0;
}
.how-it-works-page .find-partner .text h2 {
  margin-top: 0;
}
@media (max-width: 480px) {
  .how-it-works-page .find-partner .text h2 {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .find-partner img {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .find-partner p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .how-it-works-page .find-partner p {
    text-align: left;
  }
}
.how-it-works-page .find-home, .how-it-works-page .sign-agreement, .how-it-works-page .property-management, .how-it-works-page .dream {
  max-width: 1600px;
  margin: 0 auto;
  padding: 15px;
}
@media (max-width: 1366px) {
  .how-it-works-page .find-home, .how-it-works-page .sign-agreement, .how-it-works-page .property-management, .how-it-works-page .dream {
    display: grid;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .find-home img, .how-it-works-page .find-home .agreement-image, .how-it-works-page .sign-agreement img, .how-it-works-page .sign-agreement .agreement-image, .how-it-works-page .property-management img, .how-it-works-page .property-management .agreement-image, .how-it-works-page .dream img, .how-it-works-page .dream .agreement-image {
    width: 100%;
    max-width: 100%;
  }
}
.how-it-works-page .find-home .text, .how-it-works-page .sign-agreement .text, .how-it-works-page .property-management .text, .how-it-works-page .dream .text {
  padding: 0;
}
@media (max-width: 1366px) {
  .how-it-works-page .find-home .text, .how-it-works-page .sign-agreement .text, .how-it-works-page .property-management .text, .how-it-works-page .dream .text {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .find-home p, .how-it-works-page .sign-agreement p, .how-it-works-page .property-management p, .how-it-works-page .dream p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .how-it-works-page .find-home p, .how-it-works-page .sign-agreement p, .how-it-works-page .property-management p, .how-it-works-page .dream p {
    text-align: left !important;
  }
}
.how-it-works-page h2 {
  margin-top: 0;
}
@media (max-width: 1600px) {
  .how-it-works-page h2 {
    font-size: 2.8em;
  }
}
@media (max-width: 992px) {
  .how-it-works-page h2 {
    font-size: 48px;
    line-height: 58px;
  }
}
@media (max-width: 480px) {
  .how-it-works-page h2 {
    font-size: 34px;
    line-height: 44px;
    text-align: left !important;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .equal-sign {
    transform: rotate(90deg);
    margin-left: 10px;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .icon-partnership-row p {
    line-height: 50px;
  }
}
.how-it-works-page .find-partner a:hover, .how-it-works-page .find-home a:hover, .how-it-works-page .sign-agreement a:hover, .how-it-works-page .dream a:hover, .how-it-works-page .property-management a:hover {
  opacity: 0.7;
}
@media (max-width: 992px) {
  .how-it-works-page .find-partner a, .how-it-works-page .find-home a, .how-it-works-page .sign-agreement a, .how-it-works-page .dream a, .how-it-works-page .property-management a {
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    background: #006AAC;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    padding: 10px 15px;
    border-radius: 6px;
    opacity: 1;
    max-width: 120px;
    margin: 10px auto 0;
  }
  .how-it-works-page .find-partner a:hover, .how-it-works-page .find-home a:hover, .how-it-works-page .sign-agreement a:hover, .how-it-works-page .dream a:hover, .how-it-works-page .property-management a:hover {
    opacity: 0.9;
  }
}
@media (max-width: 480px) {
  .how-it-works-page .find-partner a, .how-it-works-page .find-home a, .how-it-works-page .sign-agreement a, .how-it-works-page .dream a, .how-it-works-page .property-management a {
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .find-partner p, .how-it-works-page .find-home p, .how-it-works-page .sign-agreement p, .how-it-works-page .dream p, .how-it-works-page .property-management p {
    margin-bottom: 0;
  }
  .how-it-works-page .find-partner a, .how-it-works-page .find-home a, .how-it-works-page .sign-agreement a, .how-it-works-page .dream a, .how-it-works-page .property-management a {
    margin-top: 15px;
    display: block;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .sign-agreement {
    padding-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .how-it-works-page .generate-agreement-title {
    margin-bottom: 15px;
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  .how-it-works-page #imgOne, .how-it-works-page #imgTwo, .how-it-works-page #imgThree {
    display: none;
  }
}

footer .row-footer {
  padding: 15px;
}
footer .row-footer .logo-footer-two {
  max-width: 280px;
}
footer .row-footer .btn-primary {
  background: #B5BD89;
  border: 1px solid #B5BD89;
  color: #000 !important;
  display: block;
  width: 100%;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
footer .row-footer .btn-primary:hover {
  opacity: 0.9;
}
footer .row-footer .form-group-mail {
  width: 100%;
  display: block;
}
footer .row-footer .footer-social li {
  margin-right: 5px !important;
}
footer .row-footer .footer-social li a {
  font-size: 40px;
  color: #004B7A;
  transition: all 0.3s ease-in-out;
}
footer .row-footer .footer-social li a:hover {
  color: #006AAC;
}
footer .row-footer .legal-list-footer {
  margin: 0;
  list-style-type: none;
}
footer .row-footer .legal-list-footer li {
  margin-bottom: 5px;
}
footer .row-footer .legal-list-footer li:last-child {
  margin-bottom: 0;
}
footer .row-footer .legal-list-footer li a {
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .row-footer .legal-list-footer li a:hover {
  opacity: 0.9;
}
@media (max-width: 1200px) {
  footer .footer-item {
    margin-bottom: 15px;
  }
  footer .footer-item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  footer .secondary-title {
    font-size: 26px !important;
    line-height: 36px;
  }
}

.container-copyright-footer {
  padding: 15px;
}
.container-copyright-footer .copyright-text {
  margin: 0;
  padding: 0;
  font-size: 18px;
  line-height: 28px;
}
.container-copyright-footer a {
  color: #fff !important;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.container-copyright-footer a:hover {
  opacity: 0.9;
}

@media (min-width: 1600px) {
  .search-members-page {
    padding: 30px;
  }
}
@media (max-width: 1600px) {
  .search-members-page {
    padding: 30px;
  }
}
@media (max-width: 992px) {
  .search-members-page {
    padding: 15px;
  }
}
.search-members-page h4 {
  font-size: 4rem;
  margin-top: 0;
  margin-bottom: 15px;
}
@media (max-width: 1600px) {
  .search-members-page h4 {
    font-size: 50px;
    line-height: 60px;
  }
}
@media (max-width: 1366px) {
  .search-members-page h4 {
    font-size: 40px;
    line-height: 50px;
  }
}
.search-members-page #map-view {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 992px) {
  .search-members-page #id_location, .search-members-page #id_distance {
    width: 100%;
  }
}
.search-members-page #member-city-search {
  margin-bottom: 15px;
}
.search-members-page .start-here-list {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
}
.search-members-page .start-here-list li {
  margin-bottom: 5px;
}
.search-members-page .start-here-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .search-members-page .start-here-list {
    font-size: 18px;
    line-height: 28px;
    margin: 0 auto 15px;
  }
}
@media (max-width: 480px) {
  .search-members-page .start-here-list {
    text-align: left;
  }
}
@media (max-width: 992px) {
  .search-members-page .col-res {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .search-members-page .price-range-search {
    margin-top: 0 !important;
  }
}
@media (max-width: 992px) {
  .search-members-page .search-row {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .search-members-page .col-search-map2 {
    padding: 0 15px;
  }
}
@media (max-width: 992px) {
  .search-members-page #propertyMap {
    height: 300px;
  }
}
@media (max-width: 992px) {
  .search-members-page .col-search-map p {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .search-members-page .search-results h3, .search-members-page .list-results h3 {
    margin-top: 15px !important;
  }
}
.search-members-page .col-search-map3 {
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1200px) {
  .search-members-page .row-align-items-two {
    padding: 15px;
    align-items: center !important;
  }
}
@media (min-width: 1600px) {
  .search-members-page .row-align-items-two .search-results-title {
    margin-top: -5px !important;
  }
}
@media (max-width: 1600px) {
  .search-members-page .row-align-items-two .search-results-title {
    margin-top: 0 !important;
  }
}
@media (max-width: 1200px) {
  .search-members-page .row-align-items-two .search-results-title {
    margin-left: 0 !important;
    margin-bottom: 10px;
  }
}
@media (max-width: 1200px) {
  .search-members-page .col-search-map4 {
    padding-left: 0;
    padding-top: 15px;
  }
}
@media (max-width: 1200px) {
  .search-members-page #resultsSort-map {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .search-members-page .search-results a.search-views, .search-members-page .list-results a.search-views {
    margin-bottom: 15px !important;
    display: block;
  }
}
@media (max-width: 1600px) {
  .search-members-page .col-search-map p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1200px) {
  .search-members-page .col-search-map p {
    margin-top: 0;
  }
}
@media (max-width: 1200px) {
  .search-members-page .search-results a.search-views, .search-members-page .list-results a.search-views {
    box-shadow: none;
    border-radius: 6px;
    font-size: 18px;
  }
}
.search-members-page #member-city-search {
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .search-members-page #member-city-search {
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .search-members-page #member-city-search {
    text-align: left;
  }
}
.search-members-page .pagination {
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .search-members-page .border-bottom {
    padding-top: 15px;
  }
}
@media (max-width: 1200px) {
  .search-members-page .green-font {
    text-align: left !important;
    display: block;
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .search-members-page .green-font {
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  .search-members-page #resultsSort-list {
    width: 100%;
    max-width: 100%;
  }
}

.list-results-page .background-search-list {
  margin-top: 15px;
}
@media (max-width: 1200px) {
  .list-results-page .background-search-list {
    margin-top: 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.list-results-page .col-search-map-list-three {
  padding: 15px !important;
}
.list-results-page .pagination {
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .list-results-page .search-results-list {
    display: inline;
    font-size: 26px;
    line-height: 46px;
  }
}
@media (max-width: 1600px) {
  .list-results-page .search-results-list {
    font-size: 22px;
    line-height: 32px;
  }
}
@media (min-width: 1200px) {
  .list-results-page .custom-select {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .list-results-page .background-search-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .list-results-page .font-2 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1200px) {
  .list-results-page .col-search-map-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1200px) {
  .list-results-page .profile-image-list {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .list-results-page .background-search-list-two {
    margin-top: 0;
    padding-top: 10px;
  }
}
@media (max-width: 1200px) {
  .list-results-page .background-search-list-two {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 1200px) {
  .list-results-page .border-bottom {
    padding-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .list-results-page .mt-0-res {
    margin-top: 0 !important;
  }
}
@media (max-width: 992px) {
  .list-results-page .mt-15-res {
    margin-top: 15px !important;
  }
}
@media (max-width: 992px) {
  .list-results-page .pt-0-res {
    padding-top: 0 !important;
  }
}
@media (max-width: 480px) {
  .list-results-page .btn-profile {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .list-results-page .green-font {
    text-align: left !important;
    display: block;
    margin-top: 15px;
  }
}
@media (max-width: 480px) {
  .list-results-page .green-font {
    text-align: center !important;
  }
}
@media (max-width: 480px) {
  .list-results-page .map-list-btn {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .list-results-page .map-list-btn-two {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 480px) {
  .list-results-page .map-list-btn-two {
    margin-bottom: 15px !important;
  }
}

.label-search-members {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.home-list-page .content {
  padding: 30px 30px 0;
  max-width: 1600px;
  margin: 0 auto;
}
@media (max-width: 1600px) {
  .home-list-page .content {
    padding: 35px 15px 0;
    max-width: 950px;
    margin: 0 auto;
  }
}
@media (max-width: 992px) {
  .home-list-page .content {
    max-width: 600px;
    padding: 15px 15px 0;
  }
}
@media (max-width: 1600px) {
  .home-list-page .content .home-row {
    padding: 0;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .home-list-page .content .home-row {
    grid-template-columns: 1fr;
    grid-gap: 5px;
  }
}
@media (max-width: 992px) {
  .home-list-page .home-listing {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .home-list-page .home-listing {
    padding: 15px !important;
    border-radius: 6px !important;
  }
}
@media (max-width: 992px) {
  .home-list-page .home-box .home-listing.three .list-image {
    width: 100%;
    display: block;
    margin: 0 auto;
    box-shadow: none;
    border-radius: 12px;
  }
}
@media (max-width: 992px) {
  .home-list-page .description-box {
    width: 100% !important;
  }
}
@media (max-width: 992px) {
  .home-list-page .home-box .home-listing.three .button {
    line-height: 0;
  }
}
@media (max-width: 1600px) {
  .home-list-page .banner {
    height: 100%;
    min-height: 100%;
    padding: 30px 15px;
  }
}
@media (max-width: 1600px) {
  .home-list-page .banner h1 {
    font-size: 3em;
  }
}
@media (max-width: 992px) {
  .home-list-page .banner h1 {
    font-size: 50px;
    line-height: 60px;
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .home-list-page .banner h1 {
    font-size: 36px;
    line-height: 46px;
  }
}
.home-list-page .home-box .home-listing.three .home-price {
  margin: 10px 0;
}
.home-list-page .home-box .home-listing.three .home-description {
  margin: 10px 0;
}
@media (max-width: 992px) {
  .home-list-page .home-box .home-listing.three .home-description {
    line-height: 42px;
  }
}
.home-list-page .home-box .home-listing.three .home-address-sale {
  line-height: 36px;
}
.home-list-page .button {
  transition: all 0.3s ease-in-out;
}
.home-list-page .button:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
  .home-list-page a {
    transition: all 0.3s ease-in-out;
  }
  .home-list-page a:hover {
    opacity: 0.9;
  }
}

@media (max-width: 992px) {
  .row-fix {
    margin-left: -15px !important;
    margin-right: -15px !important;
  }
}

.faqs-page-new .faqs-title {
  margin-top: 0;
}
@media (max-width: 1600px) {
  .faqs-page-new .faqs-title {
    font-size: 3em !important;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .faqs-title {
    margin-bottom: 30px;
    font-size: 50px !important;
    line-height: 60px !important;
  }
}
@media (max-width: 480px) {
  .faqs-page-new .faqs-title {
    font-size: 36px !important;
    line-height: 46px !important;
    margin-top: 0 !important;
  }
}
.faqs-page-new .container-faqs {
  padding: 30px;
}
@media (max-width: 992px) {
  .faqs-page-new .container-faqs {
    padding: 15px;
  }
}
.faqs-page-new .container-faqs .col-lg {
  padding-left: 0;
  padding-right: 0;
}
.faqs-page-new .mb-0 {
  margin-bottom: 0 !important;
}
@media (max-width: 992px) {
  .faqs-page-new .section-how-it-works p {
    font-size: 18px !important;
    line-height: 28px !important;
  }
}
.faqs-page-new .blue-gradient-background {
  padding-left: 0;
  padding-right: 0;
}
.faqs-page-new .blue-gradient-background .col {
  padding-left: 0;
  padding-right: 0;
}
.faqs-page-new .blue-gradient-background p {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
@media (max-width: 992px) {
  .faqs-page-new .blue-gradient-background .col-res {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .faqs-page-new .list-res {
    margin-left: 20px !important;
    font-size: 18px !important;
    line-height: 28px;
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .list-res {
    margin-left: 20px !important;
    margin-top: 10px !important;
    font-size: 18px !important;
    line-height: 28px;
    margin-bottom: 15px;
  }
  .faqs-page-new .list-res:last-child {
    margin-bottom: 0;
  }
}
.faqs-page-new .list-res li {
  margin-bottom: 5px;
}
.faqs-page-new .list-res li:last-child {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .faqs-page-new .list-res-two {
    margin-left: 0 !important;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .primary-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding: 0 !important;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .boders-res-top {
    margin-top: 0 !important;
    margin: 0 !important;
  }
}
.faqs-page-new .borders-res {
  margin: 0 !important;
}
.faqs-page-new .faq-title {
  margin: 0 !important;
  padding: 15px;
}
@media (max-width: 480px) {
  .faqs-page-new .faq-title {
    padding: 15px 10px;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .col-res-two {
    padding: 15px !important;
  }
}
.faqs-page-new .card-body {
  font-size: 18px;
  line-height: 28px;
  padding: 15px;
}
@media (max-width: 992px) {
  .faqs-page-new .card-header {
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .nav-tab-how-it-works {
    margin-top: 0 !important;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .section-how-it-works {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .nav-tabs.faq .nav-link.active {
    line-height: 36px;
    font-size: 30px;
  }
}
.faqs-page-new .container-faqs-accordions {
  padding: 30px;
}
@media (max-width: 992px) {
  .faqs-page-new .container-faqs-accordions {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .faqs-page-new .nav-tabs.faq .nav-link.active {
    line-height: 36px;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .nav-tabs.faq .nav-link.active {
    padding: 0 !important;
    margin: 15px 0 15px 0 !important;
  }
}
.faqs-page-new .row-accordions .col-lg-4 {
  padding-left: 0;
  padding-right: 0;
}
.faqs-page-new .row-bottom {
  padding: 0 15px 0;
}
.faqs-page-new .row-bottom .col-lg-4 {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 992px) {
  .faqs-page-new .col-bottom {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100%;
    flex: 100%;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .col-bottom p {
    margin-top: 10px !important;
    margin-bottom: 0;
  }
}
.faqs-page-new .row-bottom {
  padding: 2em 0 0;
  border-bottom: solid 2px #fff;
}
@media (max-width: 992px) {
  .faqs-page-new .row-bottom {
    padding: 0;
    border: none;
  }
}
.faqs-page-new .col-bottom-faqs {
  padding: 2em 0;
}
@media (max-width: 992px) {
  .faqs-page-new .col-bottom-faqs {
    padding: 15px;
  }
}
.faqs-page-new .col-bottom-faqs a {
  transition: all 0.3s ease-in-out;
}
.faqs-page-new .col-bottom-faqs a:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
  .faqs-page-new .col-bottom-faqs a {
    font-size: 22px;
    line-height: 32px;
    border-radius: 6px;
  }
}
@media (max-width: 480px) {
  .faqs-page-new .col-bottom-faqs a {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 992px) {
  .faqs-page-new .btn-submit-contact {
    border-radius: 6px;
  }
}
@media (max-width: 480px) {
  .faqs-page-new .btn-submit-contact {
    width: 100%;
    max-width: 100%;
    display: block;
  }
}
.faqs-page-new .your-question-text {
  margin-top: 15px !important;
}
.faqs-page-new .have-question-title {
  margin-bottom: 10px !important;
}
.faqs-page-new .collapse h4 {
  margin-top: 0;
}
@media (max-width: 992px) {
  .faqs-page-new .top-section-two {
    padding: 15px;
  }
}

.register-detail {
  padding: 30px;
}
@media (max-width: 992px) {
  .register-detail {
    padding: 15px;
  }
}
.register-detail .card-body {
  padding: 15px;
}
.register-detail .btn-primary {
  color: #fff;
  background: #B5BD89;
  cursor: pointer;
  border-radius: 6px;
  outline: none !important;
}
.register-detail .btn-primary:hover {
  opacity: 0.9;
  color: #fff;
  background: #B5BD89;
}
.register-detail .btn-reset-password {
  width: 100% !important;
  max-width: 100% !important;
}
.register-detail .reset-password-text {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
.register-detail .link-signup, .register-detail .secondaryAction {
  margin-top: 15px;
  margin-bottom: 0;
  text-decoration: none;
}
.register-detail .link-signup:hover, .register-detail .secondaryAction:hover {
  opacity: 0.9;
}
.register-detail .secondaryAction {
  margin-top: 15px;
  display: block;
  line-height: 25px;
}
.register-detail .no-padding {
  padding: 0 !important;
}
@media (max-width: 992px) {
  .register-detail .p-15 {
    padding: 15px !important;
  }
}
.register-detail .plr-15-res {
  padding-left: 15px !important;
  padding-right: 15px !important;
}
.register-detail .become-member-title {
  padding: 15px;
}
.register-detail .col-set-password, .register-detail .col-form {
  padding-left: 0;
  padding-right: 0;
}
.register-detail .container-signup2 {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0 !important;
}
@media (max-width: 480px) {
  .register-detail .secondary-title {
    font-size: 1.6em !important;
    line-height: 38px;
  }
}
.register-detail .form-group {
  margin-bottom: 15px;
}
.register-detail label {
  margin-bottom: 5px;
}
.register-detail .login-screen-padding {
  padding: 0 !important;
}
.register-detail .col-login {
  width: 100% !important;
  max-width: 540px !important;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .register-detail .col-login {
    max-width: 100% !important;
  }
}
.register-detail .col-signup {
  width: 100% !important;
  max-width: 600px !important;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .register-detail .col-signup {
    max-width: 100% !important;
  }
}
.register-detail .password-reset-page {
  margin: 0 auto;
}

.container-signup4 {
  padding: 15px 0 !important;
}
.container-signup4 .password-reset-page {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.base-signup {
  padding: 0 !important;
}

.full-height-page {
  height: 100%;
  min-height: calc(100vh - 100px);
  display: grid;
  align-items: center;
}
@media (max-width: 992px) {
  .full-height-page {
    min-height: calc(100vh - 60px);
  }
}
.full-height-page .we-help-title {
  margin: 0;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.partners-container {
  align-self: center;
  padding: 30px;
}
@media (max-width: 992px) {
  .partners-container {
    padding: 15px;
  }
}
@media (max-width: 1600px) {
  .partners-container h1 {
    font-size: 3em;
  }
}
@media (max-width: 992px) {
  .partners-container h1 {
    font-size: 50px !important;
    line-height: 60px !important;
    margin-top: 0;
    margin-bottom: 20px !important;
  }
}
@media (max-width: 480px) {
  .partners-container h1 {
    font-size: 36px !important;
    line-height: 46px !important;
    margin-bottom: 15px !important;
  }
}
.partners-container .list-unstyled {
  font-size: 18px;
  line-height: 28px;
  display: block;
}
.partners-container .list-unstyled a {
  text-decoration: none;
}
@media (max-width: 1200px) {
  .partners-container .list-unstyled a {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 15px;
    display: block;
  }
}
.partners-container .list-unstyled a:hover {
  opacity: 0.9;
}
.partners-container .resource-container {
  padding-left: 0;
  padding-right: 0;
}
.partners-container .resource-container img {
  max-width: 100%;
}
@media (max-width: 1200px) {
  .partners-container .resource-container img {
    max-width: 400px;
  }
}
@media (max-width: 480px) {
  .partners-container .resource-container img {
    max-width: 100%;
  }
}

.contact-page .row-contact {
  padding-top: 15px;
  padding-bottom: 15px;
}
@media (max-width: 1200px) {
  .contact-page p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 480px) {
  .contact-page p {
    text-align: left;
  }
}
@media (max-width: 1600px) {
  .contact-page h1 {
    font-size: 3em;
    line-height: 70px;
  }
}
@media (max-width: 992px) {
  .contact-page h1 {
    font-size: 50px !important;
    line-height: 60px !important;
    margin-top: 0;
    margin-bottom: 20px !important;
  }
}
@media (max-width: 480px) {
  .contact-page h1 {
    font-size: 36px !important;
    line-height: 46px !important;
    margin-bottom: 15px !important;
  }
}
.contact-page .contact-page-image {
  border-radius: 12px;
}
.contact-page a {
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.contact-page a:hover {
  opacity: 0.9;
}
.contact-page #contact-form {
  padding: 15px 0;
}
@media (max-width: 1200px) {
  .contact-page #contact-form {
    margin-bottom: 15px;
  }
}
.contact-page #contact-form label {
  font-size: 18px;
  line-height: 28px;
}
.contact-page #contact-form input, .contact-page #contact-form textarea {
  font-size: 18px;
}
@media (max-width: 1200px) {
  .contact-page .fa-phone {
    margin-top: 10px;
  }
}
.contact-page .form-contact-vacation {
  margin-bottom: 0;
}
.contact-page .form-contact-vacation button {
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}
.contact-page .form-contact-vacation button:hover {
  opacity: 0.9;
}
@media (max-width: 480px) {
  .contact-page .form-contact-vacation button {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
}
.contact-page .form-group {
  margin-bottom: 15px;
}
@media (max-width: 1200px) {
  .contact-page .container-contact {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }
}

.thank-you-page {
  background: #006AAC;
  padding: 15px;
  align-items: center;
}
.thank-you-page .col-lg, .thank-you-page .container-fluid {
  padding: 0 !important;
}
.thank-you-page h1 {
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .thank-you-page h1 {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 40px;
  }
}
.thank-you-page p {
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .thank-you-page p {
    font-size: 20px;
    line-height: 30px;
  }
}

.red-text {
  color: #c1272d;
}

@media (min-width: 992px) {
  .home-text {
    font-size: 1.5rem;
  }
}

.banner-text {
  margin-top: 15px;
  padding-left: 15px;
  padding-right: 15px;
  text-align: center;
}
@media (min-width: 992px) {
  .banner-text {
    background: rgba(255, 255, 255, 0.6);
    padding: 15px;
  }
}
@media (max-width: 992px) {
  .banner-text {
    font-size: 18px;
    line-height: 28px;
  }
}

.calculator-text {
  margin-top: 15px;
  text-align: center !important;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .calculator-text {
    text-align: left !important;
  }
}

.rental-title {
  grid-column: auto !important;
}

@media (min-width: 992px) {
  .pl-15-desk {
    padding-left: 15px;
  }
}

@media (max-width: 992px) {
  .four-columns {
    display: grid;
    grid-gap: 15px;
  }
  .four-columns label {
    margin-bottom: 0 !important;
  }
  .four-columns .pc-sign, .four-columns .dl-sign {
    margin-bottom: 10px;
  }
  .four-columns .pc-sign:last-child, .four-columns .dl-sign:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .dl-sign.show-dlr, .pc-sign.show-pc {
    display: block;
    position: relative;
    margin-top: 11px;
  }
}

.show-dlr:before {
  content: "$";
  color: #000;
  font-size: 18px;
  display: block;
  margin-left: 10px;
  position: absolute;
  margin-top: 9px;
}

.show-dlr input {
  padding-left: 25px !important;
}

.show-dlr:before .regular-input {
  color: #fff;
}

.show-pc:before {
  content: "%";
  color: #000;
  font-size: 18px;
  margin-bottom: 0;
  justify-content: right;
  justify-items: right;
  display: grid;
  padding-right: 15px;
  margin-top: 10px;
  position: absolute;
  left: 180px;
}
@media (min-width: 992px) {
  .show-pc:before {
    margin-top: 0 !important;
    margin-bottom: -23px !important;
    bottom: -8px !important;
    position: relative;
    left: 150px;
    max-width: 16px;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .show-pc:before {
    left: auto;
    right: 0;
  }
}
.show-pc-three:before {
  content: "%";
  color: #000;
  font-size: 18px;
  /* margin-bottom: 0; */
  /* justify-content: right; */
  /* justify-items: right; */
  display: grid;
  padding-right: 15px;
  margin-top: 10px;
  position: relative;
  left: 150px;
  margin-bottom: -31px;
}

@media (min-width: 992px) {
  .pc-sign, .pc-sign-three {
    max-width: 180px;
  }
}

.home-cash-rebate-calculator h1 {
  font-size: 54px;
  line-height: 64px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .home-cash-rebate-calculator h1 {
    font-size: 36px;
    line-height: 46px;
  }
}
@media (max-width: 480px) {
  .home-cash-rebate-calculator h1 {
    font-size: 32px;
    line-height: 42px;
  }
}
.home-cash-rebate-calculator .example-tables {
  max-width: 900px;
  margin: 30px auto 0 !important;
  border: solid 1px #d3d3d3;
  padding: 15px;
}
@media (min-width: 992px) {
  .home-cash-rebate-calculator .example-tables {
    margin: 1rem;
  }
}
.home-cash-rebate-calculator .example-tables .example-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #004B7A;
  padding-bottom: 15px;
}
@media (max-width: 992px) {
  .home-cash-rebate-calculator .example-tables .example-row {
    grid-template-columns: 1fr;
  }
}
.home-cash-rebate-calculator .example-tables .example-row .table-title {
  margin-top: 15px;
  font-size: 22px;
  margin-bottom: 10px;
}
.home-cash-rebate-calculator .example-tables .example-row .label {
  padding-left: 5rem;
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 992px) {
  .home-cash-rebate-calculator .example-tables .example-row .label {
    padding-left: 0;
  }
}
.home-cash-rebate-calculator .example-tables .example-row .label.first-title {
  font-size: 40px;
  margin-top: 32px;
  color: #006AAC;
  font-family: "Alata", serif;
}
@media (max-width: 992px) {
  .home-cash-rebate-calculator .example-tables .example-row .label.first-title {
    font-size: 40px;
    line-height: 50px;
    margin-top: 0;
    margin-bottom: 15px;
  }
}
.home-cash-rebate-calculator .example-tables .example-row .value {
  text-align: center;
}
@media (max-width: 992px) {
  .home-cash-rebate-calculator .example-tables .example-row .value {
    text-align: left;
  }
}
.home-cash-rebate-calculator .example-tables .first-title {
  font-size: 30px;
  line-height: 40px;
}
.home-cash-rebate-calculator .example-tables .enter-home-price {
  padding: 9px;
}
.home-cash-rebate-calculator .example-tables .btn-primary {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.home-cash-rebate-calculator .example-tables .btn-primary:hover {
  opacity: 0.9;
}
.home-cash-rebate-calculator .rebate-title {
  font-size: 30px;
  line-height: 40px;
}
.home-cash-rebate-calculator .new-reward-amount {
  font-weight: bold;
}

@media (max-width: 992px) {
  #costCalcPage {
    padding-top: 15px;
  }
}
#costCalcPage .primary-title {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  #costCalcPage .primary-title {
    line-height: 40px;
    text-align: left !important;
  }
}
@media (max-width: 480px) {
  #costCalcPage .primary-title {
    line-height: 36px;
    margin-bottom: 15px;
    font-size: 26px !important;
  }
}
@media (max-width: 992px) {
  #costCalcPage .col-cost-calculator {
    padding: 0;
  }
}
#costCalcPage .calculator-text {
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}
@media (max-width: 992px) {
  #costCalcPage .container-calculator h2, #costCalcPage .container-calculator h3 {
    text-align: left !important;
  }
}
@media (min-width: 992px) {
  #costCalcPage .container-calculator h2 {
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  #costCalcPage .container-calculator h3 {
    font-size: 28px;
    line-height: 38px;
  }
}
#costCalcPage .second-section-upgrades {
  margin-top: 5rem !important;
  grid-template-columns: 1fr !important;
}
@media (max-width: 992px) {
  #costCalcPage .second-section-upgrades {
    margin-top: 30px !important;
  }
}
#costCalcPage #goTop {
  margin: 0 auto;
}
@media (max-width: 480px) {
  #costCalcPage #goTop {
    width: 100%;
    max-width: 100%;
    display: block;
  }
}
@media (max-width: 992px) {
  #costCalcPage .required-white {
    text-align: left;
    padding-left: 0;
  }
}
@media (max-width: 480px) {
  #costCalcPage .required-white {
    margin-bottom: 15px;
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  #costCalcPage label {
    margin-bottom: 0 !important;
    margin-top: 0;
  }
}
@media (max-width: 992px) {
  #costCalcPage input {
    margin-bottom: 10px;
    margin-top: 10px;
  }
}
@media (max-width: 992px) {
  #costCalcPage .mt-10-res {
    margin-top: 10px !important;
  }
}

.vacation-home-protection-page {
  padding: 30px;
}
@media (max-width: 992px) {
  .vacation-home-protection-page {
    padding: 15px;
  }
}
@media (min-width: 992px) {
  .vacation-home-protection-page .first-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-gap: 30px;
  }
}
@media (min-width: 992px) {
  .vacation-home-protection-page .first-section h1 {
    font-size: 50px;
  }
}
@media (max-width: 992px) {
  .vacation-home-protection-page .first-section h1 {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 992px) {
  .vacation-home-protection-page .first-section p {
    font-size: 18px;
    line-height: 28px;
  }
}
.vacation-home-protection-page .first-section ul {
  margin-bottom: 15px;
}
@media (min-width: 992px) {
  .vacation-home-protection-page .first-section ul {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 992px) {
  .vacation-home-protection-page .first-section ul {
    text-align: left;
    font-size: 18px;
    padding-left: 20px;
  }
}
.vacation-home-protection-page .first-section ul li {
  margin-bottom: 5px;
}
.vacation-home-protection-page .first-section ul li:last-child {
  margin-bottom: 0;
}
.vacation-home-protection-page .first-section .text p {
  font-size: 2rem;
  margin-top: 3rem;
}
.vacation-home-protection-page .first-section .text .left-half {
  margin-left: -10rem;
}
.vacation-home-protection-page .first-section .text .left-half img {
  max-height: 85px;
}
.vacation-home-protection-page .first-section .text .right-half {
  margin-right: -15rem;
}
.vacation-home-protection-page .first-section .text .right-half img {
  max-height: 75px;
}
.vacation-home-protection-page .first-section .home-image-one {
  border-radius: 12px;
  margin: 0 auto;
  display: block;
}

.signup-member-btn {
  background: #b4bc88 !important;
  padding: 15px;
  border-radius: 6px;
  border: none !important;
  outline: none !important;
  box-shadow: none;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
  color: white !important;
  font-weight: bold;
  text-shadow: 2px 1px 1px #000 !important;
  text-transform: uppercase !important;
}
@media (min-width: 992px) {
  .signup-member-btn {
    margin: 0 auto !important;
    display: block;
    position: absolute;
    bottom: 0;
    margin-bottom: 15px !important;
    width: 100%;
    max-width: 90%;
  }
}

@media (min-width: 992px) {
  .member-level-box {
    padding-bottom: 60px !important;
  }
}

.checkout-title-bottom {
  margin-top: 0;
  margin-bottom: 30px !important;
  text-align: center;
}
@media (min-width: 576px) {
  .checkout-title-bottom {
    text-align: center;
  }
}

.slider.slider-horizontal {
  width: 100% !important;
}

@media (min-width: 1200px) {
  .container-dashboard {
    padding: 15px 5rem !important;
  }
}

.cta-buttons-bottom {
  padding: 15px;
  font-family: "Alata", serif;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 992px) {
  .cta-buttons-bottom {
    padding-bottom: 5px;
  }
}
@media (max-width: 992px) {
  .cta-buttons-bottom .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.cta-buttons-bottom a {
  font-size: 20px;
  opacity: 1 !important;
  border: none;
  box-shadow: none;
  text-align: center;
  padding: 10px 0;
  background: #B5BD89;
  display: block;
  max-width: 150px;
  margin: 0 auto;
  font-weight: bolder;
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: black;
}
@media (max-width: 1366px) {
  .cta-buttons-bottom a {
    display: block;
    width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .cta-buttons-bottom a {
    font-size: 16px;
    margin-bottom: 10px !important;
  }
}
.cta-buttons-bottom a:hover {
  color: #fff;
}
@media (max-width: 992px) {
  .cta-buttons-bottom .col-account-btn {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cta-buttons-bottom .col-account-btn {
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.container-copyright-footer {
  padding-bottom: 135px !important;
}
@media (max-width: 1366px) {
  .container-copyright-footer {
    padding-bottom: 125px !important;
  }
}
@media (max-width: 992px) {
  .container-copyright-footer {
    padding-bottom: 220px !important;
  }
}
@media (max-width: 768px) {
  .container-copyright-footer {
    padding-bottom: 120px !important;
  }
}

.grecaptcha-badge {
  bottom: 120px !important;
}
@media (max-width: 1366px) {
  .grecaptcha-badge {
    bottom: 100px !important;
  }
}
@media (max-width: 992px) {
  .grecaptcha-badge {
    bottom: 150px !important;
  }
}

#modalContactHome.show, #modalNewsletter.show {
  display: grid !important;
  align-content: center;
  align-self: center;
}

#modalContactHome {
  background: rgba(0, 0, 0, 0.3);
  z-index: 999999;
  overflow: auto !important;
}
#modalContactHome .modal-dialog {
  width: 100%;
  max-width: 600px;
  margin: 0 auto !important;
}
@media (max-width: 992px) {
  #modalContactHome .modal-dialog {
    margin: 0;
    padding: 15px;
    overflow: auto;
  }
}
#modalContactHome .modal-content {
  border-radius: 0;
  border: none;
}
#modalContactHome .modal-header {
  background: #fff;
}
#modalContactHome .modal-header .logo-footer-two {
  width: 100%;
  max-width: 80px;
}
#modalContactHome .close {
  color: #016aad !important;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  cursor: pointer;
  margin-top: -2px;
}
#modalContactHome .close:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
  #modalContactHome .modal-title {
    padding-right: 5px;
  }
}
#modalContactHome .modal-header h5 {
  font-size: 20px !important;
}
#modalContactHome #contact-form-home {
  background: #006AAC;
  padding: 15px 0 18px;
  border-radius: 6px;
}
#modalContactHome #contact-form-home label {
  color: #fff;
  margin-bottom: 5px;
}
#modalContactHome p {
  font-size: 18px;
  margin-bottom: 0;
}
#modalContactHome hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-color: #006AAC;
}
#modalContactHome .row-form-contact {
  display: block;
}
#modalContactHome .form-group {
  margin-bottom: 15px;
}
#modalContactHome .btn-primary {
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#modalContactHome .btn-primary:hover {
  opacity: 0.9;
}
@media (max-width: 480px) {
  #modalContactHome .btn-primary {
    margin-top: 0;
    width: 100%;
    display: block;
  }
}
@media (max-width: 480px) {
  #modalContactHome #quote-recaptcha, #modalContactHome .g-recaptcha {
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    max-width: 290px;
  }
}

#modalNewsletter {
  background: rgba(0, 0, 0, 0.3);
  z-index: 999999;
  overflow: auto !important;
}
#modalNewsletter .modal-dialog {
  width: 100%;
  max-width: 600px;
  margin: 0 auto !important;
}
@media (max-width: 992px) {
  #modalNewsletter .modal-dialog {
    margin: 0;
    padding: 15px;
    overflow: auto;
  }
}
#modalNewsletter .modal-content {
  border-radius: 0;
  border: none;
}
#modalNewsletter .modal-header {
  background: #006AAC;
}
#modalNewsletter .modal-header .logo-footer-two {
  width: 100%;
  max-width: 80px;
}
#modalNewsletter .close {
  color: #fff !important;
  transition: all 0.3s ease-in-out;
  outline: none !important;
  cursor: pointer;
  margin-top: -2px;
}
#modalNewsletter .close:hover {
  opacity: 0.9;
}
@media (max-width: 992px) {
  #modalNewsletter .modal-title {
    padding-right: 5px;
  }
}
#modalNewsletter .modal-header h5 {
  color: #fff;
  font-size: 20px !important;
}
#modalNewsletter #contact-form-home {
  background: #006AAC;
  padding: 15px 0 18px;
  border-radius: 6px;
}
#modalNewsletter #contact-form-home label {
  color: #fff;
  margin-bottom: 5px;
}
#modalNewsletter p {
  font-size: 18px;
  margin-bottom: 0;
}
#modalNewsletter hr {
  margin-top: 15px;
  margin-bottom: 15px;
  border-color: #006AAC;
}
#modalNewsletter .row-form-contact {
  display: block;
}
#modalNewsletter .form-group {
  margin-bottom: 15px;
}
#modalNewsletter .btn-primary {
  margin-top: 15px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
#modalNewsletter .btn-primary:hover {
  opacity: 0.9;
}
@media (max-width: 480px) {
  #modalNewsletter .btn-primary {
    margin-top: 0;
    width: 100%;
    display: block;
  }
}
@media (max-width: 480px) {
  #modalNewsletter #quote-recaptcha, #modalNewsletter .g-recaptcha {
    transform: scale(0.75);
    -webkit-transform: scale(0.75);
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    max-width: 290px;
  }
}
#modalNewsletter .form-group-mail {
  display: block;
  width: 100%;
  margin-bottom: 0 !important;
}
#modalNewsletter .form-group-mail input {
  display: block;
  width: 100%;
}
#modalNewsletter .btn-subscribe-newsletter {
  margin-bottom: 0 !important;
}
@media (max-width: 480px) {
  #modalNewsletter .btn-subscribe-newsletter {
    display: block;
    width: 100%;
    margin-top: 15px;
  }
}

.btn-newsletter-footer {
  background: #b5bd89;
  color: #000;
  padding: 13px 15px 15px;
  margin-top: 15px;
  display: block;
  height: auto;
  font-family: "Alata";
  font-size: 20px;
  line-height: 32px;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
.btn-newsletter-footer:hover {
  color: #fff;
  background: #006AAC;
}
@media (max-width: 992px) {
  .btn-newsletter-footer {
    text-align: center;
    max-width: 230px;
  }
}
@media (max-width: 480px) {
  .btn-newsletter-footer {
    max-width: 100%;
  }
}

.document-agreement-list {
  padding-left: 30px !important;
}

.secondary-list {
  padding-left: 20px;
}
@media (max-width: 992px) {
  .secondary-list {
    padding-left: 10px;
  }
}

.home-exchange-image {
  width: 100% !important;
  max-width: 100% !important;
}

@media (max-width: 992px) {
  .col-res-three {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 992px) {
  .full-height-banner-res {
    display: block !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: 100% !important;
  }
}

.home-exchange-container {
  border: solid 3px #000;
  padding: 15px;
}
@media (max-width: 992px) {
  .home-exchange-container {
    padding: 15px !important;
  }
}
@media (max-width: 992px) {
  .home-exchange-container p {
    font-size: 18px;
  }
}

.property-management-container h1 {
  color: #000;
  font-size: 30px !important;
  line-height: 42px !important;
  margin-bottom: 20px;
}
@media (max-width: 480px) {
  .property-management-container h1 {
    font-size: 26px !important;
    line-height: 38px !important;
    margin-bottom: 15px;
  }
}
.property-management-container .bigger-text {
  font-size: 26px;
  font-weight: bold;
  line-height: 38px;
}
@media (max-width: 992px) {
  .property-management-container .bigger-text {
    font-size: 20px;
    line-height: 32px;
  }
}
.property-management-container img {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .property-management-container img {
    margin-bottom: 15px;
  }
}
.property-management-container img:last-child {
  margin-bottom: 0;
}

.strikethrough-text {
  text-decoration: line-through;
  color: #000;
}
.strikethrough-text .color-year {
  color: #006AAC;
}

.inline-text {
  display: inline-block;
}

.member-price-two {
  margin: 1rem 0 !important;
}
@media (max-width: 992px) {
  .member-price-two {
    padding: 0 !important;
  }
}

#id_property_comments::placeholder {
  line-height: 1.2;
}

.container-fluid-payment-history {
  padding: 2em 0 !important;
  background-size: cover !important;
  background: url("../images/iStock-835817178.jpg") no-repeat center center;
}
@media (min-width: 1600px) {
  .container-fluid-payment-history {
    padding: 6em 0 !important;
  }
}

.dropdown-menu-two {
  top: 33px;
}

.coachella-page {
  background-image: url("../images/coachella-banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}
@media (max-width: 992px) {
  .coachella-page {
    background-position: center;
  }
}
.coachella-page .full-height-banner {
  height: 100% !important;
  min-height: calc(100vh - 99.5px) !important;
  max-height: 100% !important;
}
@media (max-width: 992px) {
  .coachella-page .full-height-banner {
    display: block !important;
    height: 100% !important;
    min-height: calc(100vh - 60.03px) !important;
    max-height: 100% !important;
  }
}
.coachella-page .container-contact {
  margin: 0;
}
.coachella-page .background-coachella-page {
  align-items: center;
  align-self: center;
  justify-content: center;
  height: 100%;
  min-height: 990px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  padding: 30px;
  align-content: end;
}
@media (min-width: 992px) {
  .coachella-page .background-coachella-page {
    height: 100%;
  }
}
@media (max-width: 1366px) {
  .coachella-page .background-coachella-page {
    min-height: auto !important;
    height: 100%;
    padding: 15px;
    align-content: center;
  }
}
.coachella-page .coachella-container, .coachella-page .coachella-container-two {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px;
}
@media (max-width: 1366px) {
  .coachella-page .coachella-container, .coachella-page .coachella-container-two {
    grid-template-columns: 1fr;
    grid-gap: 15px;
    padding: 0;
  }
}
.coachella-page .coachella-container .item-coachella .text-cost p, .coachella-page .coachella-container-two .item-coachella .text-cost p {
  font-weight: bold;
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
}
.coachella-page .coachella-container .item-coachella .prohibited-row, .coachella-page .coachella-container-two .item-coachella .prohibited-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 15px;
}
@media (max-width: 992px) {
  .coachella-page .coachella-container .item-coachella .prohibited-row, .coachella-page .coachella-container-two .item-coachella .prohibited-row {
    grid-template-columns: 1fr;
  }
}
.coachella-page .coachella-container .item-coachella .prohibited-row p, .coachella-page .coachella-container-two .item-coachella .prohibited-row p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 15px !important;
  font-weight: bold;
}
@media (max-width: 992px) {
  .coachella-page .coachella-container .item-coachella .prohibited-row p, .coachella-page .coachella-container-two .item-coachella .prohibited-row p {
    margin-bottom: 0 !important;
  }
}
.coachella-page .coachella-container .item-coachella .green-row img, .coachella-page .coachella-container-two .item-coachella .green-row img {
  max-width: 20px;
}
.coachella-page .coachella-container .item-coachella .green-row p, .coachella-page .coachella-container-two .item-coachella .green-row p {
  display: inline;
  font-size: 20px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 10px;
  text-align: center;
}
.coachella-page .coachella-container .item-coachella .green-check, .coachella-page .coachella-container-two .item-coachella .green-check {
  float: left;
}
.coachella-page .coachella-container .item-coachella .green-exclamation, .coachella-page .coachella-container-two .item-coachella .green-exclamation {
  float: right;
}
.coachella-page .coachella-container .item-coachella .text-co-ownership h2, .coachella-page .coachella-container-two .item-coachella .text-co-ownership h2 {
  font-size: 26px;
  line-height: 36px;
  margin: 0;
  text-align: center;
  margin-bottom: 15px;
}
.coachella-page .coachella-container .item-coachella .text-co-ownership p, .coachella-page .coachella-container-two .item-coachella .text-co-ownership p {
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}
.coachella-page .coachella-container .item-coachella .text-co-ownership .left-half, .coachella-page .coachella-container-two .item-coachella .text-co-ownership .left-half {
  margin-right: 60px;
}
@media (max-width: 992px) {
  .coachella-page .coachella-container .item-coachella .text-co-ownership .left-half, .coachella-page .coachella-container-two .item-coachella .text-co-ownership .left-half {
    margin-right: 0;
  }
}
.coachella-page .coachella-container .item-coachella .text-co-ownership .right-half, .coachella-page .coachella-container-two .item-coachella .text-co-ownership .right-half {
  margin-left: 60px;
}
@media (max-width: 992px) {
  .coachella-page .coachella-container .item-coachella .text-co-ownership .right-half, .coachella-page .coachella-container-two .item-coachella .text-co-ownership .right-half {
    margin-left: 0;
  }
}
.coachella-page .empty-item-coachella {
  background: none !important;
}
@media (max-width: 1366px) {
  .coachella-page .empty-item-coachella {
    display: none !important;
  }
}
.coachella-page .col-coachella {
  min-height: 384px;
  display: flex;
  align-content: space-around;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
@media (max-width: 1366px) {
  .coachella-page .col-coachella {
    padding: 0;
    min-height: auto;
    display: block;
    width: 100%;
  }
}
.coachella-page .col-coachella .top-section-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  height: 100%;
  margin-bottom: 50px;
}
@media (min-width: 1366px) {
  .coachella-page .col-coachella .top-section-item {
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    margin-top: 70px;
  }
}
@media (max-width: 1366px) {
  .coachella-page .col-coachella .top-section-item {
    margin-bottom: 15px;
  }
}
.coachella-page .col-coachella .top-section-item p {
  margin-bottom: 0;
  text-align: center;
}
.coachella-page .col-coachella .bottom-section-item {
  padding-top: 15px;
  max-width: 350px;
  margin: 0 auto;
}
@media (max-width: 1366px) {
  .coachella-page .col-coachella .bottom-section-item {
    width: 100%;
    max-width: 100%;
    padding-top: 0;
  }
}
@media (max-width: 1200px) {
  .coachella-page .col-coachella .bottom-section-item {
    width: 100%;
    max-width: 100%;
  }
}
.coachella-page .col-coachella .bottom-section-item h3 {
  margin: 0;
  background: #B5BD89;
  padding: 15px;
  color: #004B7A;
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 94px;
}
@media (max-width: 480px) {
  .coachella-page .col-coachella .bottom-section-item h3 {
    text-align: left;
  }
}

.address-phone-bottom-two {
  background: #fff !important;
  padding: 15px;
  width: 100%;
  max-width: 360px;
  font-size: 18px;
  line-height: 32px;
  display: block;
  margin: 0 auto;
}
.address-phone-bottom-two p {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
  text-align: center;
}
@media (max-width: 480px) {
  .address-phone-bottom-two p {
    text-align: left;
  }
}
.address-phone-bottom-two a {
  display: inline;
  font-size: 18px;
  font-weight: normal !important;
}
.address-phone-bottom-two a {
  color: #000 !important;
  background: none !important;
  transition: all 0.3s ease-in-out;
  text-decoration: none !important;
}
.address-phone-bottom-two a:hover {
  opacity: 0.9;
}

/*# sourceMappingURL=new_design_3_0.css.map */
