/*
Theme Name: hurryhome
Theme URI: https://marjoriejayme.ca/hurryhome/
Author: Team Powerhouse
Author URI: https://wordpress.org/
Description: Hurry Home is a custom WordPress theme.
Tags: blog, one-column, custom-background, custom-colors, custom-logo, custom-menu, editor-style, featured-images, footer-widgets, full-width-template, rtl-language-support, sticky-post, theme-options, threaded-comments, translation-ready, block-styles, wide-blocks, accessibility-ready
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: hurryhome
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/
/*
$breakpoint arguement choices:
- medium
- large

1rem = 16px
*/
@font-face {
  font-family: "ProximaNova-Light";
  src: url("../font/ProximaNova-Light.ttf") format("ttf");
}
@font-face {
  font-family: "ProximaNova-Regular";
  src: url("../font/ProximaNova-Regular.ttf") format("ttf");
}
@font-face {
  font-family: "ProximaNova-Semibold";
  src: url("../font/ProximaNova-Semibold.ttf") format("ttf");
}
@font-face {
  font-family: "ProximaNova-Bold";
  src: url("../font/ProximaNova-Bold.ttf") format("ttf");
}
@font-face {
  font-family: "ProximaNova-Extrabold";
  src: url("../font/ProximaNova-Extrabold.ttf") format("ttf");
}
@keyframes borderAnimate {
  from {
    border-color: rgba(0, 0, 0, 0);
  }
  to {
    border-color: #c99700;
  }
}
@keyframes main-enticer-arrow-reveal {
  from {
    opacity: 0;
    transform: translateX(-5px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes main-enticer-reveal {
  from {
    border-left: 0;
    border-top: 0;
    border-left-color: rgba(0, 0, 0, 0);
    border-bottom: 10.2rem solid rgba(0, 0, 0, 0);
  }
  to {
    border-left: 10.6rem solid rgba(0, 0, 0, 0);
    border-bottom: 10.2rem solid rgba(0, 0, 0, 0);
    border-top: 10.2rem solid #fff;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

img {
  width: 100%;
}

p {
  margin-bottom: 1.8rem;
}

a {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

body {
  font-size: 1.6rem;
  font-family: "ProximaNova-Regular", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #212721;
}
body.active {
  overflow: hidden;
}

.section-title {
  color: #0b354f;
  font-size: 1.4rem;
  font-family: "ProximaNova-Semibold", sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
@media only screen and (min-width: 50rem) {
  .section-title {
    font-size: 1.6rem;
  }
}

.heading-primary {
  color: #fff;
  font-size: 5.5rem;
  letter-spacing: -0.1rem;
  line-height: 1.2;
}
@media only screen and (min-width: 50rem) {
  .heading-primary {
    margin-top: 4rem;
  }
}
@media only screen and (min-width: 68.75rem) {
  .heading-primary {
    font-size: 6.5rem;
    margin-bottom: 3rem;
  }
}
@media only screen and (min-width: 68.75rem) {
  .heading-primary {
    font-size: 7.5rem;
    padding: 0 10rem;
  }
}

.heading-secondary {
  color: #212721;
  margin-bottom: 1.8rem;
  font-size: 3rem;
  line-height: 1.2;
}
@media only screen and (min-width: 50rem) {
  .heading-secondary {
    font-size: 3.5rem;
  }
}
.heading-secondary--white {
  color: #fff;
}

h3 {
  color: #212721;
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
  font-weight: 600;
}
@media only screen and (min-width: 68.75rem) {
  h3 {
    font-size: 2rem;
  }
}

.container {
  max-width: 125rem;
  margin: 0 auto;
  padding: 5rem 2rem;
}
@media only screen and (min-width: 50rem) {
  .container {
    width: 85%;
  }
}
@media only screen and (min-width: 68.75rem) {
  .container {
    padding: 7rem 2rem;
    width: 100%;
  }
}
@media only screen and (min-width: 81rem) {
  .container {
    padding: 11rem 2rem;
  }
}

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

.text-left {
  text-align: left;
}

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

.sr-only {
  position: absolute;
  top: -999rem;
  left: -999rem;
}

.btn, .btn:link, .btn:visited,
.wpcf7-submit,
.wpcf7-submit:link,
.wpcf7-submit:visited {
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 1.5rem 3.5rem;
  font-size: 1.6rem;
  font-family: "ProximaNova-Regular", sans-serif;
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.05rem;
  cursor: pointer;
  transition: all 200ms ease-in-out;
}
.btn:active, .btn:focus,
.wpcf7-submit:active,
.wpcf7-submit:focus {
  outline: none;
}
.btn-with-icon,
.wpcf7-submit-with-icon {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 1rem;
}
.btn-with-icon svg,
.wpcf7-submit-with-icon svg {
  width: 1.6rem;
  transform: rotate(-45deg);
}
.btn-banner,
.wpcf7-submit-banner {
  background-color: #056178;
  color: #fff;
  width: 100%;
}
.btn-banner:hover,
.wpcf7-submit-banner:hover {
  background-color: #076982;
  transform: scale(1.05);
}
@media only screen and (min-width: 50rem) {
  .btn-banner,
  .wpcf7-submit-banner {
    width: 40%;
  }
}
@media only screen and (min-width: 68.75rem) {
  .btn-banner,
  .wpcf7-submit-banner {
    width: 30%;
  }
}
@media only screen and (min-width: 81rem) {
  .btn-banner,
  .wpcf7-submit-banner {
    width: 25%;
  }
}
.btn-content,
.wpcf7-submit-content {
  background-color: #082639;
  color: #fff;
  margin-top: 3rem;
}
.btn-content:hover,
.wpcf7-submit-content:hover {
  background-color: #0b354f;
  transform: scale(1.025);
}
.btn-content-light,
.wpcf7-submit-content-light {
  background-color: #056178;
  color: #fff;
}
.btn-content-light:hover,
.wpcf7-submit-content-light:hover {
  background-color: #076982;
}
.btn-white--outline,
.wpcf7-submit-white--outline {
  background-color: transparent;
  color: #056178;
  border: 0.1rem solid #056178;
}
.btn-white--outline:hover,
.wpcf7-submit-white--outline:hover {
  transform: scale(1.025);
}
.btn-home,
.wpcf7-submit-home {
  background-color: #303134;
  border: 1px solid #303134;
  padding: 0.75rem 1.5rem !important;
  width: 100%;
  border-radius: 0.4rem;
}
@media only screen and (min-width: 50rem) {
  .btn-home,
  .wpcf7-submit-home {
    min-width: 5.4rem;
    width: unset;
  }
}
.btn-home span,
.wpcf7-submit-home span {
  color: #fff;
  text-transform: capitalize;
  font-weight: normal;
  font-size: 1.5rem !important;
}
.btn-home:hover,
.wpcf7-submit-home:hover {
  border: 1px solid #7a7a7a;
}

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  text-decoration: none;
  padding-bottom: 0.3rem;
  transition: all 0.2s;
}
.btn-text:hover {
  background-color: #022731;
  color: #fff;
  transform: translateY(-2px);
}

input,
textarea,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  padding: 1.25rem 1.65rem;
  font-size: 1.6rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #D7D7D7;
  border-radius: 0;
  font-family: "ProximaNova-Regular", sans-serif;
}
input:focus,
textarea:focus,
select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

input[type=submit] {
  border: none;
}

.contact-form-widget {
  background: linear-gradient(rgba(40, 45, 63, 0.93), rgba(14, 16, 23, 0.85)), url("https://marjoriejayme.ca/hurryhome/wp-content/uploads/2024/04/home-kitchen.jpg") center/cover;
  min-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: unset;
}
@media only screen and (min-width: 50rem) {
  .contact-form-widget {
    min-height: 50vh;
  }
}
@media only screen and (min-width: 68.75rem) {
  .contact-form-widget {
    min-height: 40vh;
    justify-content: center;
  }
}
.contact-form-widget .container {
  max-width: 98.5vw;
}
@media only screen and (min-width: 68.75rem) {
  .contact-form-widget .container {
    max-width: initial;
    padding: 9rem 2rem;
  }
}
.contact-form-widget-content {
  margin-bottom: -3.5rem;
}
.contact-form-widget-content .section-title {
  color: #0f8faf;
  margin: 0.5rem;
  font-size: 1.6rem;
}
.contact-form-widget-content h2 {
  color: #fff;
}
.contact-form-widget-content p {
  color: #fff;
}
@media only screen and (min-width: 50rem) {
  .contact-form-widget-content p {
    margin: 4.5rem auto;
  }
}
@media only screen and (min-width: 68.75rem) {
  .contact-form-widget-content p {
    font-size: 1.8rem;
  }
}
.contact-form-widget-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 3rem;
}
@media only screen and (min-width: 50rem) {
  .contact-form-widget-buttons {
    flex-direction: row;
    align-items: stretch;
  }
}
.contact-form-widget-buttons a {
  width: 100%;
}
@media only screen and (min-width: 50rem) {
  .contact-form-widget-buttons a {
    width: 25rem;
  }
}
.contact-form-widget .wpcf7 .wpcf7-form {
  display: grid;
  grid-gap: 1.5rem;
  align-items: stretch;
  max-width: 160rem;
  margin: 0 auto;
  position: relative;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media only screen and (min-width: 68.75rem) {
  .contact-form-widget .wpcf7 .wpcf7-form {
    grid-template-columns: repeat(auto-fill, minmax(540px, 1fr));
  }
}
.contact-form-widget .wpcf7 p {
  width: 100%;
  margin: 0;
}
.contact-form-widget .wpcf7 span.label {
  margin-bottom: 0.65rem;
  display: inline-block;
  opacity: 0.8;
  color: #fff;
  font-size: 1.5rem;
  font-family: "ProximaNova-Semibold", sans-serif;
  text-transform: uppercase;
}
.contact-form-widget .wpcf7 p:nth-of-type(4),
.contact-form-widget .wpcf7 p:nth-of-type(5) {
  grid-column: 1/-1;
}
.contact-form-widget .wpcf7 .wpcf7-not-valid-tip {
  font-size: 1.5rem;
  color: #ffb900;
  padding-top: 0.35rem;
}
.contact-form-widget .wpcf7 textarea {
  height: 12.5rem;
}
.contact-form-widget .wpcf7 .wpcf7-submit {
  background-color: #056178;
  color: #fff;
  margin-top: 0;
  border: 0;
}
.contact-form-widget .wpcf7 .wpcf7-submit:hover {
  background-color: #076982;
}
.contact-form-widget .wpcf7 .wpcf7-spinner {
  display: none;
}
.contact-form-widget .wpcf7 .wpcf7-response-output {
  margin: 0 !important;
  grid-column: 1/-1;
  text-align: center;
  color: #fff;
  position: absolute;
  width: 100%;
  bottom: -5rem;
}
.contact-form-widget .wpcf7 .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="square" stroke-miterlimit="10" stroke-width="48" d="M112 184l144 144 144-144"/></svg>'); /* SVG Data URI */
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 2rem;
  padding-right: 2.5rem;
}
.contact-form-widget .wpcf7 select::-ms-expand {
  display: none;
}

footer {
  background-color: #082639;
  padding: 4rem;
}
footer .footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (min-width: 68.75rem) {
  footer .footer-content {
    flex-direction: row;
  }
}
footer .footer-content p {
  color: #F7FAFD;
  text-align: center;
}
@media only screen and (min-width: 68.75rem) {
  footer .footer-content p {
    margin-bottom: 0;
    text-align: left;
  }
}
footer .footer-content .site-branding {
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 68.75rem) {
  footer .footer-content .site-branding {
    padding-bottom: 0;
  }
}
footer .footer-content .site-branding img {
  width: 28rem;
  padding: 0;
  opacity: 0.9;
}
footer .footer-content .site-branding,
footer .footer-content .footer-socials,
footer .footer-content p {
  flex: 1;
}
footer .footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
@media only screen and (min-width: 68.75rem) {
  footer .footer-socials {
    justify-content: flex-end;
  }
}
footer .footer-socials a {
  border: 0.15rem solid #fff;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 100ms ease-in;
}
footer .footer-socials a:hover {
  background-color: #fff;
}
footer .footer-socials a:hover svg path {
  fill: #082639;
}
footer .footer-socials svg {
  width: 1.75rem;
}
footer .footer-socials svg path {
  fill: #F7FAFD;
}
footer .floating-button {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 333;
  border: 0;
  background-color: #076982; /* Bootstrap primary color for example */
  color: #fff;
  cursor: pointer;
  padding: 1.5rem;
  border-radius: 50%;
  width: 6.7rem;
  height: 6.7rem;
}
footer .floating-button svg {
  width: 3rem;
}
footer .floating-button svg path {
  fill: #fff;
}
footer .contact-form {
  position: fixed;
  bottom: calc(2.5rem + 6.7rem + 20px);
  right: 0.75rem;
  background-color: #fff;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  z-index: 99;
  width: 38rem;
  padding: 2.5rem 3.5rem;
  scale: 0.9;
}
@media only screen and (min-width: 68.75rem) {
  footer .contact-form {
    right: 1rem;
    width: 45rem;
  }
}
footer .contact-form h4 {
  font-family: "ProximaNova-Semibold", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
}
footer .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
footer .contact-form form p {
  margin-bottom: 0;
}
footer .contact-form form input {
  margin-bottom: 0.35rem;
}
footer .contact-form form .wpcf7-submit {
  background-color: #082639;
  color: #fff;
  margin-top: 0;
  border: 0;
}
footer .contact-form form .wpcf7-submit:hover {
  background-color: #0b354f;
}
footer .contact-form form .wpcf7-response-output {
  margin: 0;
  padding: 1rem !important;
  text-align: center;
}
footer .contact-form form .wpcf7-spinner {
  display: none;
}
footer div:last-child p:last-child {
  display: none;
}

.header-class {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  width: 100%;
}
@media only screen and (min-width: 81rem) {
  .header-class {
    padding: 0 4rem;
  }
}

.site-branding img {
  width: 29rem;
  height: auto !important;
  padding: 2rem;
}
@media only screen and (min-width: 81rem) {
  .site-branding img {
    width: 35rem;
  }
}

#masthead nav {
  background-color: #17191a;
  position: absolute;
  top: 0;
  width: 100%;
  left: -100vw;
  transition: all 500ms ease-in-out;
  z-index: 999;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#masthead nav.show {
  left: 0;
}
@media only screen and (min-width: 81rem) {
  #masthead nav {
    display: block;
    background-color: transparent;
    position: unset;
    width: unset;
    height: unset;
  }
}
@media only screen and (min-width: 81rem) {
  #masthead nav .menu-primary-menu-container {
    width: 60vw;
  }
}
@media only screen and (min-width: 81rem) {
  #masthead nav .menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin: 2rem 0;
  }
}
@media only screen and (min-width: 81rem) {
  #masthead nav .menu {
    gap: 3.5rem;
  }
}
#masthead nav .menu-item {
  padding: 1rem;
}
@media only screen and (min-width: 81rem) {
  #masthead nav .menu-item {
    padding: unset;
    border-bottom: unset;
  }
}
#masthead nav .menu-item a {
  color: #fff;
  font-size: 1.8rem;
  font-family: "ProximaNova-Regular", sans-serif;
  text-transform: uppercase;
  transition: all 500ms ease-in-out;
}
#masthead nav .menu-item a:hover {
  opacity: 0.9;
}
@media only screen and (min-width: 81rem) {
  #masthead nav .menu-item a {
    color: #fff;
    font-size: 1.6rem;
    font-weight: 500;
  }
}
#masthead nav a.btn.btn-yellow--outline {
  font-size: 1.8rem;
  display: block;
  margin: 1.6rem;
}
#masthead nav a.btn.btn-yellow--outline:hover svg {
  fill: #082639;
}
#masthead nav a.btn.btn-yellow--outline > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
#masthead nav a.btn.btn-yellow--outline svg path {
  fill: #056178;
}
@media only screen and (min-width: 81rem) {
  #masthead nav a.btn.btn-yellow--outline {
    font-size: 2rem;
    border: none;
    margin: 0;
    padding: 0 2rem !important;
  }
  #masthead nav a.btn.btn-yellow--outline:hover {
    background-color: unset;
    border: unset;
    color: unset;
  }
}

.menu-icon {
  cursor: pointer;
  display: block;
  padding-right: 0;
  z-index: 1999;
}
@media only screen and (min-width: 68.75rem) {
  .menu-icon {
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 81rem) {
  .menu-icon {
    display: none;
  }
}

.not-homepage .header-class {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2196078431);
}
.not-homepage .banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(40, 45, 63, 0.768627451), rgba(14, 16, 23, 0.7725490196)), url("https://hurryhome.ca/wp-content/uploads/2024/04/communities.jpg") center/cover;
  height: 30vh;
}
.not-homepage .banner .heading-primary {
  padding-top: 7.5rem;
}

.calendar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  line-height: 1.3;
  padding-left: 0;
  padding-right: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 68.75rem) {
  .calendar {
    padding-left: 7rem;
    padding-right: 0;
    padding-bottom: 0;
  }
}
.calendar > div {
  display: none;
}
@media only screen and (min-width: 68.75rem) {
  .calendar > div {
    display: flex;
    flex-direction: column;
  }
}
.calendar span:first-child {
  color: #D7D7D7;
  font-size: 1.4rem;
  display: block;
}
.calendar span:last-child {
  font-size: 1.85rem;
  color: #fff;
  font-family: "ProximaNova-Semibold", sans-serif;
}

.frontPage {
  overflow: hidden;
}

.frontPage-banner {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #202124;
  height: 100vh;
  flex-direction: column;
  align-items: start;
  overflow: hidden;
}
.frontPage-banner .heading-primary {
  font-size: 4.5rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 68.75rem) {
  .frontPage-banner .heading-primary {
    font-size: 6.5rem;
  }
}
@media only screen and (min-width: 68.75rem) {
  .frontPage-banner .heading-primary {
    font-size: 7.5rem;
  }
}
.frontPage-banner .hurryhome-logo {
  width: 35rem;
  margin-bottom: 2rem;
}
@media only screen and (min-width: 68.75rem) {
  .frontPage-banner .hurryhome-logo {
    width: 50rem;
  }
}
.frontPage-banner p {
  color: #D7D7D7;
  margin-top: 2rem;
}
@media only screen and (min-width: 50rem) {
  .frontPage-banner p {
    font-size: 2.3rem;
    width: 45ch;
    margin: 2rem auto 3rem;
  }
}
@media only screen and (min-width: 68.75rem) {
  .frontPage-banner p {
    width: 50ch;
  }
}
@media only screen and (min-width: 81rem) {
  .frontPage-banner p {
    font-size: 2rem;
  }
}
.frontPage-banner .btn-with-icon {
  margin: 0 auto;
}
@media only screen and (min-width: 50rem) {
  .frontPage-banner-search {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 68.75rem) {
  .frontPage-banner-search {
    width: 75%;
  }
}

.frontPage .bootstrap-realtypress .input-group {
  width: 87vw;
  margin: 0 auto;
}
@media only screen and (min-width: 68.75rem) {
  .frontPage .bootstrap-realtypress .input-group {
    width: 65rem;
  }
}
.frontPage .bootstrap-realtypress .input-group .tester {
  position: relative;
}
.frontPage .bootstrap-realtypress .input-group .tester .rps_input_map_look {
  color: #D7D7D7;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512" width="25" height="25"><path d="M221.09 64a157.09 157.09 0 10157.09 157.09A157.1 157.1 0 00221.09 64z" fill="none" stroke="gray" stroke-miterlimit="10" stroke-width="32"/><path fill="none" stroke="gray" stroke-linecap="round" stroke-miterlimit="10" stroke-width="32" d="M338.29 338.29L448 448"/></svg>') no-repeat;
  background-position: 1rem center;
  border-radius: 20rem;
  border: 0.1rem solid #565656;
  padding: 2.4rem 4.25rem;
}
.frontPage .bootstrap-realtypress .input-group .tester .rps_input_map_look:focus {
  box-shadow: none;
}
.frontPage .bootstrap-realtypress .input-group .tester .rps_input_map_look:hover {
  box-shadow: 0 0.1rem 0.6rem 0 #171717;
}
.frontPage .bootstrap-realtypress .input-group .tester .input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
  position: absolute;
  right: 5.6rem;
  z-index: 100;
}
.frontPage .bootstrap-realtypress .input-group .tester .input-group-btn .fa {
  font-size: 2.2rem;
  color: #d4d4d4;
}
.frontPage .bootstrap-realtypress .input-group .tester button.btn.btn-primary.btn-lg.btn-submit-look {
  border-radius: 0 10rem 10rem 0;
  padding: 11px 18px 7px;
  background-color: #003f4f;
  border-color: #003f4f;
}
.frontPage .bootstrap-realtypress .input-group .tester button.btn.btn-primary.btn-lg.btn-submit-look:focus {
  outline: none;
}
.frontPage .bootstrap-realtypress .input-group .tester button.btn.btn-primary.btn-lg.btn-submit-look:hover {
  background-color: rgba(0, 63, 79, 0.7803921569);
  border-color: rgba(0, 63, 79, 0.7803921569);
}

#home-market-evaluation-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  font-family: "ProximaNova-Semibold", sans-serif;
}
#home-market-evaluation-modal #section-title {
  margin: 0.5rem 0;
}
#home-market-evaluation-modal .modal-content {
  background-color: #fefefe;
  margin: 4% auto;
  padding: 3rem 2rem 3rem 2rem;
  width: 90%;
  border-radius: 0.5rem;
  border-top: 1rem solid #0b354f;
}
@media only screen and (min-width: 50rem) {
  #home-market-evaluation-modal .modal-content {
    width: 70%;
  }
}
@media only screen and (min-width: 68.75rem) {
  #home-market-evaluation-modal .modal-content {
    padding: 3rem 3rem 0 3rem;
    width: 40%;
  }
}
#home-market-evaluation-modal .modal-content .section-title {
  margin: 0.5rem;
  font-size: 1.6rem;
  color: #082639;
}
#home-market-evaluation-modal .modal-content .heading-secondary {
  color: #212721;
  margin-bottom: 0.5rem;
}
#home-market-evaluation-modal .modal-content .call-today {
  font-style: italic;
  color: #056178;
}
#home-market-evaluation-modal .modal-content .call-today a {
  color: #056178;
}
#home-market-evaluation-modal .modal-content .wpcf7 .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
  grid-gap: 0.25rem 2rem;
  align-items: stretch;
  max-width: 160rem;
  margin: 4rem auto 0;
  position: relative;
}
@media only screen and (min-width: 50rem) {
  #home-market-evaluation-modal .modal-content .wpcf7 .wpcf7-form {
    grid-template-columns: repeat(auto-fill, minmax(23rem, 1fr));
  }
}
@media only screen and (min-width: 68.75rem) {
  #home-market-evaluation-modal .modal-content .wpcf7 .wpcf7-form {
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
  }
}
#home-market-evaluation-modal .modal-content .wpcf7 p {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 50rem) {
  #home-market-evaluation-modal .modal-content .wpcf7 p {
    margin-bottom: 1.8rem;
  }
}
#home-market-evaluation-modal .modal-content .wpcf7 p:nth-of-type(1),
#home-market-evaluation-modal .modal-content .wpcf7 p:nth-of-type(8),
#home-market-evaluation-modal .modal-content .wpcf7 p:nth-of-type(11),
#home-market-evaluation-modal .modal-content .wpcf7 p:nth-of-type(12) {
  grid-column: 1/-1;
}
#home-market-evaluation-modal .modal-content .wpcf7 textarea {
  height: 14rem;
}
#home-market-evaluation-modal .modal-content .wpcf7 .wpcf7-form-control-wrap .wpcf7-form-control.wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><path fill="none" stroke="gray" stroke-linecap="square" stroke-miterlimit="10" stroke-width="48" d="M112 184l144 144 144-144"/></svg>'); /* SVG Data URI */
  background-repeat: no-repeat;
  background-position: right 1rem top 50%;
  background-size: 2rem;
  padding-right: 2.5rem;
  color: #212721;
}
#home-market-evaluation-modal .modal-content .wpcf7 .wpcf7-submit {
  background-color: #0b354f;
  color: #fff;
  margin-top: 0;
  border: 0;
}
#home-market-evaluation-modal .modal-content .wpcf7-response-output {
  margin: 0 !important;
  grid-column: 1/-1;
  text-align: center;
  position: absolute;
  width: 100%;
  bottom: -3rem;
}
@media only screen and (min-width: 50rem) {
  #home-market-evaluation-modal .modal-content .wpcf7-response-output {
    bottom: 0;
  }
}
#home-market-evaluation-modal .modal-content .wpcf7-not-valid-tip {
  font-size: 1.5rem;
  padding-top: 0.35rem;
}
#home-market-evaluation-modal .modal-content span.label {
  margin-bottom: 0.35rem;
  display: inline-block;
  font-size: 1.5rem;
  font-family: "ProximaNova-Semibold", sans-serif;
  text-transform: uppercase;
}
#home-market-evaluation-modal .close {
  color: #aaa;
  float: right;
  font-size: 2.8rem;
  font-weight: bold;
}
#home-market-evaluation-modal .close:hover,
#home-market-evaluation-modal .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.frontPage-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-direction: column;
}
@media only screen and (min-width: 50rem) {
  .frontPage-buttons {
    flex-direction: row;
  }
}

.frontPage-footer {
  background-color: #171717;
  padding: 1rem 2rem;
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media only screen and (min-width: 81rem) {
  .frontPage-footer {
    padding: 0 5rem;
  }
}
.frontPage-footer p {
  color: #7a7a7a;
  margin: 1rem 0;
}

.home-assessment {
  background-color: #F7FAFD;
}
.home-assessment-search .btn {
  margin-top: 1rem;
}
@media only screen and (min-width: 50rem) {
  .home-assessment-search .btn {
    margin-top: unset;
    width: 30%;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-assessment-search .btn {
    width: 35%;
  }
}
@media only screen and (min-width: 81rem) {
  .home-assessment-search .btn {
    width: 30%;
  }
}
@media only screen and (min-width: 50rem) {
  .home-assessment-search input {
    width: 70%;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-assessment-search input {
    width: 65%;
  }
}
@media only screen and (min-width: 81rem) {
  .home-assessment-search input {
    width: 70%;
  }
}
@media only screen and (min-width: 50rem) {
  .home-assessment-search {
    display: flex;
    justify-content: center;
    align-items: stretch;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-assessment .container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
}
@media only screen and (min-width: 68.75rem) and (min-width: 81rem) {
  .home-assessment .container {
    gap: 4.5rem;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-assessment .container > div:nth-child(1) {
    width: 50%;
  }
  .home-assessment .container > div:nth-child(2) {
    width: 50%;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-assessment .container {
    padding: 6rem 2rem;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-assessment p {
    margin-bottom: 0;
  }
}

.home-about,
.buying {
  background-color: #F7FAFD;
  box-shadow: inset 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04), inset 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.04);
}
.home-about-img,
.buying-img {
  overflow: hidden;
}
@media only screen and (min-width: 50rem) {
  .home-about-img,
  .buying-img {
    margin: 0 0 3rem;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-about-img,
  .buying-img {
    margin: 0;
    height: 45rem;
    width: 54%;
  }
}
.home-about-img img,
.buying-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-about-img-2,
.buying-img-2 {
  display: none;
  overflow: hidden;
  opacity: 0.35;
}
@media only screen and (min-width: 50rem) {
  .home-about-img-2,
  .buying-img-2 {
    margin: 0 0 3rem;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-about-img-2,
  .buying-img-2 {
    display: unset;
    margin: 0;
    height: 45rem;
    width: 11%;
  }
}
.home-about-img-2 img,
.buying-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.home-about .container-custom,
.buying .container-custom {
  padding: 5rem 2rem;
}
@media only screen and (min-width: 50rem) {
  .home-about .container-custom,
  .buying .container-custom {
    padding: 7rem 0;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-about .container-custom,
  .buying .container-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7rem;
  }
}
@media only screen and (min-width: 81rem) {
  .home-about .container-custom,
  .buying .container-custom {
    padding: 11rem 0;
  }
}
.home-about-content,
.buying-content {
  margin-top: 3rem;
}
@media only screen and (min-width: 50rem) {
  .home-about-content,
  .buying-content {
    margin-top: 0;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-about-content,
  .buying-content {
    width: 60%;
  }
}
@media only screen and (min-width: 68.75rem) {
  .home-about-content--p,
  .buying-content--p {
    padding: 0.75rem 0 0.15rem;
  }
}

.home-communities {
  background-color: #F7FAFD;
  box-shadow: inset 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04), inset 0 -0.125rem 0.25rem rgba(0, 0, 0, 0.04);
}
.home-communities-content {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 68.75rem) {
  .home-communities-content {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }
  .home-communities-content > div {
    flex: 1;
  }
  .home-communities-content > div:nth-child(2) {
    display: flex;
    justify-content: right;
  }
}
.home-communities-content .btn,
.home-communities-content .btn-content,
.home-communities-content .btn-with-icon {
  display: none !important;
}
@media only screen and (min-width: 68.75rem) {
  .home-communities-content .btn,
  .home-communities-content .btn-content,
  .home-communities-content .btn-with-icon {
    display: flex !important;
    margin-top: 0;
  }
}
.home-communities-mobile-btn {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 68.75rem) {
  .home-communities-mobile-btn {
    display: none;
  }
}
.home-communities-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  grid-gap: 2.5rem;
  align-items: stretch;
}
@media only screen and (min-width: 81rem) {
  .home-communities-items {
    grid-gap: 3rem;
  }
}
.home-communities-items > a {
  display: inline-block;
  height: 28rem;
  width: 100%;
  position: relative;
}
.home-communities-items > a:hover {
  animation: borderAnimate 0.3s forwards;
}
.home-communities-items > a:hover::before {
  content: "";
  background-image: url(https://www.canmore.ca/public/img/icon-right-arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  z-index: 3;
  top: 2rem;
  width: 3.3rem;
  height: 2.7rem;
  background-size: 3.3rem;
  right: 1.4rem;
  animation-name: main-enticer-arrow-reveal;
  animation-duration: 0.3s;
  animation-delay: 0.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.home-communities-items > a:hover:hover::after {
  content: "";
  background-color: rgba(0, 0, 0, 0);
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  animation-name: main-enticer-reveal;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}
@media only screen and (min-width: 50rem) {
  .home-communities-items > a {
    height: 33rem;
  }
}
@media only screen and (min-width: 81rem) {
  .home-communities-items > a {
    height: 38rem;
  }
}
.home-communities-items > a:nth-child(1) {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55)), url("https://marjoriejayme.ca/hurryhome/wp-content/uploads/2024/03/fort-saskatchewan.jpeg") top/cover no-repeat;
}
.home-communities-items > a:nth-child(2) {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55)), url("https://marjoriejayme.ca/hurryhome/wp-content/uploads/2024/03/edmonton.jpeg") top/cover no-repeat;
}
.home-communities-items > a:nth-child(3) {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55)), url("https://marjoriejayme.ca/hurryhome/wp-content/uploads/2024/03/st-albert.jpg") top/cover no-repeat;
}
.home-communities-items > a:nth-child(4) {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55)), url("https://marjoriejayme.ca/hurryhome/wp-content/uploads/2024/03/sherwood-park-2.jpeg") top/cover no-repeat;
}
.home-communities-items > a:nth-child(5) {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55)), url("https://marjoriejayme.ca/hurryhome/wp-content/uploads/2024/03/spruce-grove.png") top/cover no-repeat;
}
.home-communities-items > a:nth-child(6) {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.55)), url("https://marjoriejayme.ca/hurryhome/wp-content/uploads/2024/04/leduc-2.jpeg") top/cover no-repeat;
}
.home-communities-items > a > h3 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: end;
  padding-bottom: 3rem;
}
.home-communities-items img {
  height: 39rem;
  object-fit: cover;
}

.home-underfour-content,
.home-featured-content {
  margin-bottom: 3rem;
}
@media only screen and (min-width: 68.75rem) {
  .home-underfour-content,
  .home-featured-content {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
  }
  .home-underfour-content > div,
  .home-featured-content > div {
    flex: 1;
  }
  .home-underfour-content > div:nth-child(2),
  .home-featured-content > div:nth-child(2) {
    display: flex;
    justify-content: right;
  }
}
.home-underfour-content .btn,
.home-underfour-content .btn-content,
.home-underfour-content .btn-with-icon,
.home-featured-content .btn,
.home-featured-content .btn-content,
.home-featured-content .btn-with-icon {
  display: none !important;
}
@media only screen and (min-width: 68.75rem) {
  .home-underfour-content .btn,
  .home-underfour-content .btn-content,
  .home-underfour-content .btn-with-icon,
  .home-featured-content .btn,
  .home-featured-content .btn-content,
  .home-featured-content .btn-with-icon {
    display: flex !important;
    margin-top: 0;
  }
}
.home-underfour-mobile-btn,
.home-featured-mobile-btn {
  margin-top: 2.5rem;
}
@media only screen and (min-width: 68.75rem) {
  .home-underfour-mobile-btn,
  .home-featured-mobile-btn {
    display: none;
  }
}
.home-underfour .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-indicators li,
.home-featured .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-indicators li {
  border-radius: 100rem;
  border: 0;
}
.home-underfour .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .rps-result-feature-label-sm,
.home-featured .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .rps-result-feature-label-sm {
  background: #056178;
}
.home-underfour .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-indicators .active,
.home-featured .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-indicators .active {
  background: #056178;
}
.home-underfour .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner > .item,
.home-featured .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner > .item {
  max-height: 670px;
  height: 670px;
}

.home-reviews {
  background: #f6f6f6;
  font-size: 1.6rem;
}
.home-reviews .container {
  max-width: 140rem;
}
.home-reviews--title {
  margin-bottom: 4rem;
}
.home-reviews .reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 3rem;
  align-items: stretch;
  margin: 4rem 0;
}
@media only screen and (min-width: 68.75rem) {
  .home-reviews .reviews-container {
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  }
}
.home-reviews .review-card {
  background: #fff;
  padding: 1rem 3.5rem 1.25rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.home-reviews .review-card:hover {
  transform: scale(1.025);
}
.home-reviews .review-card .quote-icon {
  font-size: 5rem;
}
.home-reviews .review-card h3 {
  margin-bottom: 1.5rem;
}
.home-reviews .review-card .rating p {
  margin-bottom: 0;
}
.home-reviews .review-card p.main_review {
  padding-bottom: 1rem;
}
.home-reviews .review-card--header {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.home-reviews .review-card--header img {
  width: 4rem;
}
.home-reviews .reviews-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}
@media only screen and (min-width: 68.75rem) {
  .home-reviews .reviews-actions {
    margin-top: 7rem;
  }
}
.home-reviews .reviews-actions a {
  border: 0.1rem solid #056178;
  margin-top: 0;
}
.home-reviews .reviews-actions .btn-with-icon svg {
  transform: rotate(0);
}

@media only screen and (min-width: 81rem) {
  .about-img .container {
    padding: 7rem 2rem;
  }
}
.about-img img {
  border-radius: 0.5rem;
}
.about-img .about-content {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  padding: 2rem 0;
  gap: 0;
  flex-direction: column;
}
@media only screen and (min-width: 68.75rem) {
  .about-img .about-content {
    flex-direction: row;
    gap: 5rem;
    padding: 5rem 0;
  }
}
.about-img .about-content--contact {
  width: 100%;
}
@media only screen and (min-width: 68.75rem) {
  .about-img .about-content--contact {
    width: 30%;
  }
}
.about-img .about-content--contact-socials {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
}
.about-img .about-content--contact h3 {
  color: #056178;
  font-size: 2rem;
  font-family: "ProximaNova-Semibold", sans-serif;
}
.about-img .about-content--contact p {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.about-img .about-content--contact p a {
  color: #212721;
}
.about-img .about-content--contact > div {
  margin-bottom: 3rem;
  padding: 3rem 3rem 2.5rem;
  background: #f3f5f9;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  border-radius: 0.25rem;
}
.about-img .about-content--contact > div:nth-child(2) {
  margin-bottom: 0;
}
.about-img .about-content--experience {
  width: 100%;
}
@media only screen and (min-width: 68.75rem) {
  .about-img .about-content--experience {
    width: 70%;
  }
}
.about-img .about-content--experience h2 {
  font-size: 5rem;
  color: #212721;
  padding: 0;
  margin-top: 0;
  padding-bottom: 2rem;
}
.about-img .about-content--experience ul.accordionjs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-img .about-content--experience ul.accordionjs li.acc_section {
  border-radius: 0.25rem;
}
.about-img .about-content--experience ul.accordionjs li.acc_section .acc_head {
  font-size: 1.8rem;
  font-family: "ProximaNova-Semibold", sans-serif;
  padding: 1.5rem 2rem;
  border-left: 0.65rem solid #056178;
}
.about-img .about-content--experience ul.accordionjs li.acc_section .acc_content {
  padding: 2rem;
}
.about-img .about-content--experience ul.accordionjs li.acc_section p {
  margin-bottom: 0;
}

.contact-ways .container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-items: stretch;
  gap: 3rem;
  max-width: 115rem;
  flex-direction: column;
}
@media only screen and (min-width: 50rem) {
  .contact-ways .container {
    padding: 8rem 2rem;
    gap: 4rem;
    flex-direction: row;
  }
}
.contact-ways--call {
  text-align: center;
  flex: 1;
  background: #f3f5f9;
  padding: 4rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
@media only screen and (min-width: 68.75rem) {
  .contact-ways--call {
    padding: 4rem 8rem;
  }
}
.contact-ways--call:hover {
  cursor: pointer;
}
.contact-ways--call:hover svg {
  scale: 1.1;
}
.contact-ways--call:hover h3 {
  text-decoration: underline;
}
.contact-ways h3 {
  margin-bottom: 1rem;
}
.contact-ways p {
  margin-bottom: 0;
}
.contact-ways p:nth-of-type(2) {
  color: #7a7a7a;
  line-height: 1.2;
}
.contact-ways a {
  color: #212721;
}
.contact-ways svg {
  width: 8rem;
  height: 8rem;
  margin-bottom: 2rem;
  transition: 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.contact .contact-form-widget {
  background: rgba(243, 245, 249, 0.3490196078);
  box-shadow: inset 0 0.125rem 0.3rem rgba(0, 0, 0, 0.06), inset 0 -0.125rem 0.3rem rgba(0, 0, 0, 0.06);
}
.contact .contact-form-widget .section-title {
  color: #082639;
}
.contact .contact-form-widget .heading-secondary {
  color: #212721;
}
.contact .contact-form-widget .wpcf7 span.label {
  color: #212721;
  opacity: 1;
}
.contact .contact-form-widget .wpcf7-response-output {
  color: #212721;
}
.contact .contact-form-widget .wpcf7-not-valid-tip {
  color: #dc3232;
}
.contact .contact-form-widget .wpcf7 .wpcf7-submit {
  background-color: #082639;
}
.contact .contact-form-widget .wpcf7 .wpcf7-submit:hover {
  background-color: #0b354f;
}

.property-search .container {
  padding: 0;
  max-width: 135rem;
}

.property-search .bootstrap-realtypress,
.post-type-archive-rps_listing .bootstrap-realtypress {
  font-family: "ProximaNova-Regular", sans-serif;
}
.property-search .bootstrap-realtypress .panel .filters-checkboxes,
.post-type-archive-rps_listing .bootstrap-realtypress .panel .filters-checkboxes {
  margin-top: 3rem;
}
.property-search .bootstrap-realtypress .panel .filters-checkboxes .filter-item,
.post-type-archive-rps_listing .bootstrap-realtypress .panel .filters-checkboxes .filter-item {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
}
.property-search .bootstrap-realtypress .panel .filters-checkboxes .filter-item input,
.post-type-archive-rps_listing .bootstrap-realtypress .panel .filters-checkboxes .filter-item input {
  width: 1.6rem;
  height: 1.6rem;
  margin: 0;
}
.property-search .bootstrap-realtypress .panel .filters-checkboxes .filter-label,
.post-type-archive-rps_listing .bootstrap-realtypress .panel .filters-checkboxes .filter-label {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
}
.property-search .bootstrap-realtypress .panel .filters-checkboxes .filter-label input[type=checkbox],
.post-type-archive-rps_listing .bootstrap-realtypress .panel .filters-checkboxes .filter-label input[type=checkbox] {
  margin-right: 8px;
}

.property-search .bootstrap-realtypress .theme-green .back-bar .selected-bar,
.property-search .bootstrap-realtypress a,
.bootstrap-realtypress .rps-contact-form-wrap-v p button,
.bootstrap-realtypress .rps-single-listing-favorites-wrap button,
.bootstrap-realtypress .rps-single-listing-social button,
.bootstrap-realtypress .panel.panel-default button,
.post-type-archive-rps_listing .bootstrap-realtypress .theme-green .back-bar .selected-bar,
.post-type-archive-rps_listing .bootstrap-realtypress a {
  color: #002452;
  text-decoration: none;
}
.property-search .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn,
.property-search .bootstrap-realtypress a.btn,
.bootstrap-realtypress .rps-contact-form-wrap-v p button.btn,
.bootstrap-realtypress .rps-single-listing-favorites-wrap button.btn,
.bootstrap-realtypress .rps-single-listing-social button.btn,
.bootstrap-realtypress .panel.panel-default button.btn,
.post-type-archive-rps_listing .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn,
.post-type-archive-rps_listing .bootstrap-realtypress a.btn {
  color: #fff;
  margin-top: 0;
  text-decoration: none;
  text-align: center;
  padding: 1.25rem 1.65rem;
  cursor: pointer;
  transition: all 200ms ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-family: "ProximaNova-Semibold", sans-serif !important;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.property-search .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn strong,
.property-search .bootstrap-realtypress a.btn strong,
.bootstrap-realtypress .rps-contact-form-wrap-v p button.btn strong,
.bootstrap-realtypress .rps-single-listing-favorites-wrap button.btn strong,
.bootstrap-realtypress .rps-single-listing-social button.btn strong,
.bootstrap-realtypress .panel.panel-default button.btn strong,
.post-type-archive-rps_listing .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn strong,
.post-type-archive-rps_listing .bootstrap-realtypress a.btn strong {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.property-search .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn.btn-favourite, .property-search .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn.btn-social,
.property-search .bootstrap-realtypress a.btn.btn-favourite,
.property-search .bootstrap-realtypress a.btn.btn-social,
.bootstrap-realtypress .rps-contact-form-wrap-v p button.btn.btn-favourite,
.bootstrap-realtypress .rps-contact-form-wrap-v p button.btn.btn-social,
.bootstrap-realtypress .rps-single-listing-favorites-wrap button.btn.btn-favourite,
.bootstrap-realtypress .rps-single-listing-favorites-wrap button.btn.btn-social,
.bootstrap-realtypress .rps-single-listing-social button.btn.btn-favourite,
.bootstrap-realtypress .rps-single-listing-social button.btn.btn-social,
.bootstrap-realtypress .panel.panel-default button.btn.btn-favourite,
.bootstrap-realtypress .panel.panel-default button.btn.btn-social,
.post-type-archive-rps_listing .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn.btn-favourite,
.post-type-archive-rps_listing .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn.btn-social,
.post-type-archive-rps_listing .bootstrap-realtypress a.btn.btn-favourite,
.post-type-archive-rps_listing .bootstrap-realtypress a.btn.btn-social {
  background-color: #d82e35;
  color: #fff !important;
}
.property-search .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn.btn-social,
.property-search .bootstrap-realtypress a.btn.btn-social,
.bootstrap-realtypress .rps-contact-form-wrap-v p button.btn.btn-social,
.bootstrap-realtypress .rps-single-listing-favorites-wrap button.btn.btn-social,
.bootstrap-realtypress .rps-single-listing-social button.btn.btn-social,
.bootstrap-realtypress .panel.panel-default button.btn.btn-social,
.post-type-archive-rps_listing .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn.btn-social,
.post-type-archive-rps_listing .bootstrap-realtypress a.btn.btn-social {
  padding: 0.7rem 1.65rem !important;
}
.property-search .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn:active, .property-search .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn:focus,
.property-search .bootstrap-realtypress a.btn:active,
.property-search .bootstrap-realtypress a.btn:focus,
.bootstrap-realtypress .rps-contact-form-wrap-v p button.btn:active,
.bootstrap-realtypress .rps-contact-form-wrap-v p button.btn:focus,
.bootstrap-realtypress .rps-single-listing-favorites-wrap button.btn:active,
.bootstrap-realtypress .rps-single-listing-favorites-wrap button.btn:focus,
.bootstrap-realtypress .rps-single-listing-social button.btn:active,
.bootstrap-realtypress .rps-single-listing-social button.btn:focus,
.bootstrap-realtypress .panel.panel-default button.btn:active,
.bootstrap-realtypress .panel.panel-default button.btn:focus,
.post-type-archive-rps_listing .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn:active,
.post-type-archive-rps_listing .bootstrap-realtypress .theme-green .back-bar .selected-bar.btn:focus,
.post-type-archive-rps_listing .bootstrap-realtypress a.btn:active,
.post-type-archive-rps_listing .bootstrap-realtypress a.btn:focus {
  outline: none;
}

.bootstrap-realtypress .rps-contact-form-wrap-v p button,
.post-type-archive-rps_listing .rps-contact-form-wrap-v p button {
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-family: "ProximaNova-Semibold", sans-serif !important;
}

.property-search .bootstrap-realtypress .rps-result-view-container,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-result-view-container {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: end;
}
.property-search .bootstrap-realtypress .rps-result-view-container a,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-result-view-container a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.property-search .bootstrap-realtypress .rps-result-view-container ion-icon,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-result-view-container ion-icon {
  font-size: larger;
}

.property-search .bootstrap-realtypress .form-control,
.post-type-archive-rps_listing .bootstrap-realtypress .form-control {
  display: block;
  width: 100%;
  line-height: 1.5;
  padding: 1.25rem 1.65rem;
  font-size: 1.6rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #D7D7D7;
  border-radius: 0;
  font-family: "ProximaNova-Regular", sans-serif;
  height: fit-content;
}
.property-search .bootstrap-realtypress .col-inner-result .form-control,
.post-type-archive-rps_listing .bootstrap-realtypress .col-inner-result .form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" class="ionicon" viewBox="0 0 512 512"><path fill="none" stroke="currentColor" stroke-linecap="square" stroke-miterlimit="10" stroke-width="48" d="M112 184l144 144 144-144"/></svg>') no-repeat right 10px center;
  padding-right: 30px;
  background-size: 2rem;
}
@media only screen and (min-width: 81rem) {
  .property-search .bootstrap-realtypress .col-inner-result .form-control,
  .post-type-archive-rps_listing .bootstrap-realtypress .col-inner-result .form-control {
    background-size: 2rem;
  }
}

.property-search .bootstrap-realtypress .btn-primary,
.property-search .bootstrap-realtypress .btn-primary:hover,
.property-search .bootstrap-realtypress .btn-primary:focus,
.property-search .bootstrap-realtypress .btn-primary:active,
.property-search .bootstrap-realtypress .theme-green .back-bar .selected-bar,
.property-search .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-indicators .active,
.property-search .bootstrap-realtypress .rps-listing-carousel-shortcode .bx-wrapper .bx-caption .bed_bath,
.property-search .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .rps-result-feature-label-sm,
.property-search .bootstrap-realtypress .rps-single-listing .rps-altenate-url .fa,
.property-search .bootstrap-realtypress .pagination > .active > span,
.post-type-archive-rps_listing .bootstrap-realtypress .btn-primary,
.post-type-archive-rps_listing .bootstrap-realtypress .btn-primary:hover,
.post-type-archive-rps_listing .bootstrap-realtypress .btn-primary:focus,
.post-type-archive-rps_listing .bootstrap-realtypress .btn-primary:active,
.post-type-archive-rps_listing .bootstrap-realtypress .theme-green .back-bar .selected-bar,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-indicators .active,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-listing-carousel-shortcode .bx-wrapper .bx-caption .bed_bath,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-listing-slider-shortcode .carousel-inner .carousel-caption .rps-result-feature-label-sm,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-altenate-url .fa,
.post-type-archive-rps_listing .bootstrap-realtypress .pagination > .active > span {
  background: #002452;
  background-color: #002452;
  border-color: #002452;
}
.property-search .bootstrap-realtypress h4,
.post-type-archive-rps_listing .bootstrap-realtypress h4 {
  color: #076982;
  font-size: 1.6rem;
  font-weight: 500;
}

.property-search .bootstrap-realtypress .image-holder .rps-ribbon.rps-ribbon-info,
.property-search .bootstrap-realtypress .image-holder .rps-ribbon.rps-ribbon-warning,
.property-search .bootstrap-realtypress .image-holder .rps-ribbon.rps-ribbon-danger,
.post-type-archive-rps_listing .bootstrap-realtypress .image-holder .rps-ribbon.rps-ribbon-info,
.post-type-archive-rps_listing .bootstrap-realtypress .image-holder .rps-ribbon.rps-ribbon-warning,
.post-type-archive-rps_listing .bootstrap-realtypress .image-holder .rps-ribbon.rps-ribbon-danger {
  background-color: rgba(255, 255, 255, 0.9490196078);
  border-left: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  text-shadow: none;
}
.property-search .bootstrap-realtypress .image-holder .rps-ribbon.top-ribbon,
.post-type-archive-rps_listing .bootstrap-realtypress .image-holder .rps-ribbon.top-ribbon {
  padding: 1rem 1rem 0.75rem;
  font-size: 1.4rem;
  font-weight: 500;
  left: 1.5rem;
  top: 1.5rem;
  right: revert;
  color: #212721;
  border-radius: 0.3rem;
  font-family: "ProximaNova-Semibold", sans-serif;
  text-shadow: none;
}
.property-search .bootstrap-realtypress .image-holder a,
.post-type-archive-rps_listing .bootstrap-realtypress .image-holder a {
  background-size: cover !important;
  background-position: bottom right !important;
}
.property-search .bootstrap-realtypress .image-holder .rps-price,
.post-type-archive-rps_listing .bootstrap-realtypress .image-holder .rps-price {
  font-family: "ProximaNova-Regular", sans-serif;
  padding: 3.3rem 0 0 1.6rem;
  font-size: 2rem !important;
  height: 6.7rem !important;
}

.property-search .bootstrap-realtypress,
.post-type-archive-rps_listing .bootstrap-realtypress {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  padding-bottom: 2rem !important;
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result,
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result,
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result,
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #EBEAE6;
  background-color: transparent;
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info,
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info,
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info,
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info {
  padding: 1.25rem;
  background-color: #fff;
}
@media only screen and (min-width: 50rem) {
  .property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info,
  .property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info,
  .property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info,
  .post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info {
    padding: 1.6rem 1.75rem;
  }
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info h4,
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info h4,
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info h4,
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info h4,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info h4,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info h4 {
  color: #212721;
  font-size: 1.8rem;
  font-family: "ProximaNova-Semibold", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  font-weight: bold !important;
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info .city-province-postalcode,
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info .city-province-postalcode,
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .city-province-postalcode,
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info .city-province-postalcode,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info .city-province-postalcode,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .city-province-postalcode {
  color: #565656;
  margin: 0 0 1rem;
  font-size: 1.4rem;
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info .rps-result-features,
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info .rps-result-features,
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features,
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info .rps-result-features,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info .rps-result-features,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features {
  height: 2.1rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
@media only screen and (min-width: 50rem) {
  .property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info .rps-result-features,
  .property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info .rps-result-features,
  .property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features,
  .post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info .rps-result-features,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info .rps-result-features,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features {
    height: 5.2rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 68.75rem) {
  .property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info .rps-result-features,
  .property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info .rps-result-features,
  .property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features,
  .post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-property-info .rps-result-features,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-property-info .rps-result-features,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features {
    height: 2.1rem !important;
    display: block !important;
  }
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm,
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm,
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm,
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm {
  font-family: "ProximaNova-Semibold", sans-serif;
  font-size: 1.3rem;
  background-color: transparent;
  color: #076982;
  padding: 0;
  margin-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding-right: 0.75rem;
  border-radius: 0;
  font-weight: bold;
  height: 2rem;
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm ion-icon,
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm ion-icon,
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm ion-icon,
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm ion-icon,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm ion-icon,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm ion-icon {
  font-size: 1.6rem;
  display: none;
}
@media only screen and (min-width: 68.75rem) {
  .property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm ion-icon,
  .property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm ion-icon,
  .property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm ion-icon,
  .post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm ion-icon,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm ion-icon,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm ion-icon {
    display: inline;
  }
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm:not(:first-of-type),
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm:not(:first-of-type),
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm:not(:first-of-type),
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm:not(:first-of-type),
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm:not(:first-of-type),
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm:not(:first-of-type) {
  padding-left: 0.75rem;
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm:not(:last-of-type),
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm:not(:last-of-type),
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm:not(:last-of-type),
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-result-feature-label-sm:not(:last-of-type),
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-result-feature-label-sm:not(:last-of-type),
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-result-feature-label-sm:not(:last-of-type) {
  border-right: 1px solid #D7D7D7;
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-view-listing-btn,
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-view-listing-btn,
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-view-listing-btn,
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-view-listing-btn,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-view-listing-btn,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-view-listing-btn {
  margin-top: 1.5rem;
  border-top: 1px solid #EBEAE6;
}
.property-search .bootstrap-realtypress .listing-container .rps-property-result .rps-view-listing-btn a,
.property-search .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-view-listing-btn a,
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-view-listing-btn a,
.post-type-archive-rps_listing .bootstrap-realtypress .listing-container .rps-property-result .rps-view-listing-btn a,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-grid-result .rps-property-result .rps-view-listing-btn a,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-view-listing-btn a {
  color: #f3f5f9;
  font-family: "ProximaNova-Semibold", sans-serif;
  display: block;
  width: 100%;
  margin-top: 1.5rem;
  padding: 1rem 1.65rem;
  font-weight: bold;
}
@media only screen and (min-width: 50rem) {
  .property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features {
    justify-content: start !important;
  }
}

.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .image-holder,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .image-holder {
  height: 24rem;
}
@media only screen and (min-width: 68.75rem) {
  .property-search .bootstrap-realtypress .rps-list-result .rps-property-result .image-holder,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .image-holder {
    height: 33rem;
  }
}
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info {
  background-color: transparent;
  padding: 0;
}
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .title-city,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .title-city {
  padding: 1.25rem 3rem 0;
}
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info h4,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info h4 {
  font-size: 1.8rem;
  margin: 1rem 0 0.5rem 0;
}
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-property-description,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-property-description {
  font-size: 1.3rem;
  margin: 1.5rem 0;
  border-top: 1px solid #f3f5f9;
  padding: 1.5rem 0;
  max-height: 9.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 1.5rem 3rem 0;
}
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features {
  padding: 0 3rem;
  display: flex;
  height: unset;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (min-width: 68.75rem) {
  .property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-result-features {
    justify-content: unset;
    flex-wrap: nowrap;
    height: 2.1rem;
  }
}
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .offices,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .offices {
  padding: 0 3rem;
}
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-view-listing-btn,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-view-listing-btn {
  margin: 1rem auto;
  border-top: 0;
  display: flex;
  justify-content: center;
}
@media only screen and (min-width: 68.75rem) {
  .property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-view-listing-btn,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-view-listing-btn {
    margin: 0 3rem;
    justify-content: start;
  }
}
.property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-view-listing-btn a,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-view-listing-btn a {
  width: 90%;
  margin-top: 0;
}
@media only screen and (min-width: 68.75rem) {
  .property-search .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-view-listing-btn a,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-list-result .rps-property-result .rps-property-info .rps-view-listing-btn a {
    width: 17rem;
    margin-top: 1rem;
  }
}

.single-rps_listing .header-class,
.post-type-archive-rps_listing .header-class {
  z-index: 9999;
  position: relative;
  background: linear-gradient(rgba(40, 45, 63, 0.768627451), rgba(14, 16, 23, 0.7725490196)), url("https://hurryhome.ca/wp-content/uploads/2024/04/communities.jpg") center/cover;
}

.single-rps_listing .bootstrap-realtypress .rps-single-listing,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing {
  margin: 2rem 0;
}
@media only screen and (min-width: 81rem) {
  .single-rps_listing .bootstrap-realtypress .rps-single-listing,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing {
    margin: 2rem 3rem;
  }
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing *:not(.fa),
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing *:not(.fa) {
  font-family: "ProximaNova-Regular", sans-serif;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing h1,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing h1 {
  line-height: 0.95;
  margin: 1.5rem 0 2.5rem 0;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing h1 span,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing h1 span {
  color: #212721;
  font-size: 2.75rem;
  font-family: "ProximaNova-Semibold", sans-serif !important;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  font-weight: bold;
}
@media only screen and (min-width: 68.75rem) {
  .single-rps_listing .bootstrap-realtypress .rps-single-listing h1 span,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing h1 span {
    font-size: 4rem;
  }
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing h1 small,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing h1 small {
  font-size: 2rem;
}
@media only screen and (min-width: 68.75rem) {
  .single-rps_listing .bootstrap-realtypress .rps-single-listing h1 small,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing h1 small {
    font-size: 2.25rem;
  }
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-listing-favorites-wrap,
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-listing-social,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-listing-favorites-wrap,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-listing-social {
  display: flex;
  justify-content: flex-end;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features-flex,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #EBEAE6;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  flex-direction: column;
  row-gap: 2rem;
}
@media only screen and (min-width: 68.75rem) {
  .single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features-flex,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features-flex {
    flex-direction: unset;
    row-gap: unset;
  }
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label {
  font-family: "ProximaNova-Semibold", sans-serif;
  font-size: 1.6rem;
  background-color: transparent;
  color: #555;
  padding: 0;
  margin-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding-right: 1.3rem;
  border-radius: 0;
  line-height: 0;
  height: 1.4rem;
  font-weight: bold;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label:not(:first-of-type),
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label:not(:first-of-type) {
  padding-left: 1.3rem;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label:not(:last-of-type),
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label:not(:last-of-type) {
  border-right: 1px solid #EBEAE6;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label ion-icon,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label ion-icon {
  display: none;
}
@media only screen and (min-width: 50rem) {
  .single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label ion-icon,
  .post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label ion-icon {
    display: inline;
  }
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label-sm,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-features .rps-single-feature-label-sm {
  color: #555;
  background: transparent;
  font-size: 1.6rem;
  padding: 0 1.6rem 0 0.1rem;
  font-family: "ProximaNova-Semibold", sans-serif;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-pricing,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-pricing {
  font-family: "ProximaNova-Semibold", sans-serif;
  color: #212721;
  font-size: 3.75rem;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing h2,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing h2 {
  font-size: 2.4rem;
  color: #212721;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing h2, .single-rps_listing .bootstrap-realtypress .rps-single-listing h3,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing h2,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing h3 {
  font-family: "ProximaNova-Semibold", sans-serif !important;
  text-transform: uppercase;
  font-weight: bold;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing h3,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing h3 {
  color: #212721;
  font-size: 1.8rem;
  border-bottom: 2px solid #565656;
  padding-bottom: 1rem;
  margin-bottom: 0;
  margin-top: 3rem;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing table tbody > tr:nth-child(odd) > td, .single-rps_listing .bootstrap-realtypress .rps-single-listing table tbody > tr:nth-child(odd) > th,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing table tbody > tr:nth-child(odd) > td,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing table tbody > tr:nth-child(odd) > th {
  background-color: hsla(0, 0%, 50.2%, 0.0705882353);
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .table,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .table {
  margin-bottom: 3.5rem !important;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .form-control,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .form-control {
  display: block;
  width: 100%;
  line-height: 1.5;
  padding: 1.25rem 1.65rem;
  font-size: 1.6rem;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #D7D7D7;
  border-radius: 0;
  font-family: "ProximaNova-Regular", sans-serif;
  height: initial;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-property-photo-row .bx-wrapper,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-property-photo-row .bx-wrapper {
  z-index: 77;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-property-photo-row + .row .rps-contact-form-wrap-v,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-property-photo-row + .row .rps-contact-form-wrap-v {
  border: 1px solid #D7D7D7;
  padding: 1rem 2rem 3rem;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-property-photo-row + .row .rps-contact-form-wrap-v .rps-contact-captcha-output #math-quiz label,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-property-photo-row + .row .rps-contact-form-wrap-v .rps-contact-captcha-output #math-quiz label {
  color: #D7D7D7;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-property-photo-row + .row .rps-contact-form-wrap-v .rps-contact-captcha-output .refresh-math-captcha,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-property-photo-row + .row .rps-contact-form-wrap-v .rps-contact-captcha-output .refresh-math-captcha {
  color: #0f8faf;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .breadcrumb,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .breadcrumb {
  display: none;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-overlay,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-overlay .loading-text,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-overlay .loading-text {
  background: transparent;
  border: 0;
  color: #fff;
  margin-top: 0;
}
.single-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-overlay .loading-text .fa,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-single-listing .rps-single-overlay .loading-text .fa {
  color: #fff;
}
.single-rps_listing .bootstrap-realtypress .rps-footer a img,
.post-type-archive-rps_listing .bootstrap-realtypress .rps-footer a img {
  width: 130px !important;
}

.look-search-blurb small {
  display: none !important;
}

.buying-intro .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media only screen and (min-width: 50rem) {
  .buying-intro .container {
    flex-direction: row;
    gap: 10rem;
  }
}
@media only screen and (min-width: 50rem) {
  .buying-intro-content {
    width: 50%;
  }
}
.buying-intro-img {
  margin: unset;
  order: -1;
}
@media only screen and (min-width: 50rem) {
  .buying-intro-img {
    order: 0;
  }
}
@media only screen and (min-width: 50rem) {
  .buying-intro-img {
    width: 50%;
  }
}

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