header.nav-menu {
  width: 100%;
  z-index: 50;
  height: 100px;
  display: flex;
  align-items: center;
  background-color: #333;
}
header.nav-menu .logo {
  max-width: 150px;
  max-height: 100px;
  width: -moz-fit-content;
  width: fit-content;
}
header.nav-menu .logo a img, header.nav-menu .logo .site-title a img {
  width: 100%;
  max-height: 100px !important;
}
header.nav-menu .menu-primary {
  padding-left: 0;
}
header.nav-menu .menu-primary .menu-item {
  padding: 0 1em;
}
header.nav-menu .menu-primary .menu-item a {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
}
header.nav-menu .menu-primary .menu-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #f2f2f2;
  height: 1px;
  width: 0;
  transition: ease-in-out 0.33s;
}
header.nav-menu .menu-primary .menu-item a:hover::after {
  width: 100%;
}
header.nav-menu .menu-primary .sub-menu a {
  background-color: rgba(0, 0, 0, 0.7);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
  border: 1px solid #eee;
  padding: 10px;
  position: relative;
  width: 200px;
  word-wrap: break-word;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header.nav-menu .menu-primary .sub-menu li.menu-item {
  position: relative;
  padding: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
header.nav-menu .menu-primary.hidden {
  opacity: 0;
  transition: ease-in-out 0.33s;
}
@media (max-width: 992px) {
  header.nav-menu .nav-primary {
    width: 0;
  }
  header.nav-menu .nav-primary .menu-item {
    width: -moz-fit-content;
    width: fit-content;
  }
  header.nav-menu .nav-primary .menu-item a {
    display: none;
    position: relative;
    text-align: left;
  }
  header.nav-menu .nav-primary .menu-item-has-children ul.sub-menu {
    display: none;
    padding: 0;
    margin-top: 0 !important;
  }
  header.nav-menu .nav-primary .sub-menu a {
    background-color: #f2f2f2;
    border: none;
    box-shadow: none;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.9em;
  }
  header.nav-menu .nav-primary.active {
    width: 50%;
    position: fixed;
    right: 0;
    background: #f2f2f2;
    height: 100vh;
    top: 0;
    z-index: 999;
  }
}
@media (max-width: 992px) and (max-width: 576px) {
  header.nav-menu .nav-primary.active {
    width: 80%;
  }
}
@media (max-width: 992px) {
  header.nav-menu .nav-primary.active ul {
    display: flex;
    flex-direction: column;
    margin-top: 2em;
    margin-left: 2.5em;
  }
  header.nav-menu .nav-primary.active ul .menu-item {
    padding: 1em 0;
    position: relative;
  }
  header.nav-menu .nav-primary.active ul .menu-item a {
    display: block;
    color: #333;
    text-decoration: none;
  }
  header.nav-menu .nav-primary.active .sub-menu-toggle {
    transition: none;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  header.nav-menu .nav-primary.active .sub-menu-toggle {
    display: block;
    position: absolute;
    right: -20px;
    top: 1.125em;
  }
}
@media (max-width: 992px) {
  header.nav-menu .nav-primary.active .sub-menu li {
    display: block !important;
    width: 100%;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
  header.nav-menu .nav-primary.active .sub-menu a {
    display: block;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}
@media (max-width: 400px) {
  header.nav-menu .nav-primary .menu-item-has-children ul.sub-menu {
    margin-left: 1em;
    font-size: 0.9em;
  }
}
header.nav-menu .hamburger-menu {
  background-color: #f2f2f2;
  height: 2px;
  width: 35px;
  position: relative;
  cursor: pointer;
}
header.nav-menu .hamburger-menu:before, header.nav-menu .hamburger-menu::after {
  content: "";
  position: absolute;
  background-color: #f2f2f2;
  height: 2px;
  width: 35px;
}
header.nav-menu .hamburger-menu::before {
  top: -8px;
}
header.nav-menu .hamburger-menu::after {
  bottom: -8px;
}
header.nav-menu .hamburger-menu.active {
  position: absolute;
  right: 0;
  background-color: #333;
  transform: rotate(45deg);
  transform-origin: center;
  transition: ease-in-out 0.33s;
  z-index: 999;
}
header.nav-menu .hamburger-menu.active::before {
  background-color: #333;
  transform: rotate(90deg);
  transform-origin: 13px 5px;
}
header.nav-menu .sub-menu-toggle {
  border-width: 0;
  display: none;
  overflow: hidden;
  text-align: center;
  visibility: visible;
  background-color: transparent;
  width: auto;
  padding: 0;
  color: #333;
}
header.nav-menu .sub-menu-toggle:before {
  font-size: 1.25em;
}
header.nav-menu .menu-toggle {
  border-width: 0;
  display: none;
  overflow: hidden;
  text-align: center;
  visibility: visible;
  background-color: transparent;
  width: auto;
  padding: 0;
}
header.nav-menu .menu-toggle:before {
  font-size: 2em;
}
header.nav-menu .menu-toggle.activated {
  color: #333;
  position: fixed;
  left: 53%;
  right: unset;
  top: 20px;
}
header.nav-menu .menu-toggle.activated:before {
  content: "\f129";
  font-size: 1.5em;
}
@media (max-width: 576px) {
  header.nav-menu .menu-toggle.activated {
    left: 25%;
  }
}
@media (max-width: 992px) {
  header.nav-menu .menu-toggle {
    display: block;
    position: absolute;
    right: 5%;
  }
}
header.nav-menu .side-nav {
  position: absolute;
  right: 0;
  top: 0;
  height: 100vh;
  width: 0;
  overflow: hidden;
  background-color: #f2f2f2;
  color: #333;
  transition: ease-in-out 0.33s;
}
header.nav-menu .side-nav ul {
  list-style: none;
}
header.nav-menu .side-nav ul .nav-item a {
  opacity: 0;
}
header.nav-menu.sticky {
  position: fixed;
  width: 100%;
  background-color: #f2f2f2;
  box-shadow: 0px 8px 20px 8px rgba(255, 255, 255, 0.25);
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  isolation: isolate;
}
header.nav-menu.sticky .menu-item a {
  color: #333;
}
header.nav-menu.sticky .menu-item a:hover::after {
  background-color: #333;
}
header.nav-menu.sticky .sub-menu .menu-item a {
  background-color: #f2f2f2;
  text-shadow: none;
}
header.nav-menu.sticky .hamburger-menu {
  background-color: #333;
}
header.nav-menu.sticky .hamburger-menu:before, header.nav-menu.sticky .hamburger-menu::after {
  background-color: #333;
}

.full-hero header.nav-menu {
  position: absolute;
  background-color: transparent;
}
.full-hero header.nav-menu.sticky {
  position: fixed;
  background-color: #f2f2f2;
}

@media (max-width: 992px) {
  header.nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
  }
  .menu-primary {
    z-index: 10000;
    position: relative;
  }
}
body.menu-open {
  overflow: hidden;
  height: 100vh;
  position: relative;
}

body.menu-open {
  touch-action: none;
}

#Footer {
  padding: 3rem 0;
  background-color: #333;
  color: #f2f2f2;
}
@media (max-width: 1200px) {
  #Footer .container {
    max-width: 100%;
  }
}
#Footer a {
  text-decoration: none;
  color: #f2f2f2;
}
#Footer .footer-logo {
  max-width: 250px;
  width: -moz-fit-content;
  width: fit-content;
}
#Footer .footer-logo a img {
  width: 100%;
}
@media (max-width: 768px) {
  #Footer .footer-logo a img {
    max-width: 150px;
  }
}
#Footer .footer-row {
  padding-bottom: 5rem;
}
@media (max-width: 768px) {
  #Footer .footer-row {
    padding-bottom: 2rem;
  }
}
#Footer .footer-col {
  padding-left: 5rem;
}
@media (max-width: 1400px) {
  #Footer .footer-col {
    padding-left: 2rem;
  }
}
@media (max-width: 1200px) {
  #Footer .footer-col {
    padding-left: 15px;
  }
}
@media (max-width: 768px) {
  #Footer .footer-col {
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
  }
  #Footer .footer-col.alt {
    align-items: end;
    padding-left: 0;
    padding-right: 2rem;
  }
}
#Footer .footer-col .menu ul {
  padding-left: 0;
}
#Footer .footer-col p {
  margin-bottom: 5px;
}
#Footer .footer-col p a {
  position: relative;
}
#Footer .footer-col p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 100%;
  background-color: #545454;
}
#Footer .footer-col .footer-title {
  margin-bottom: 10px;
  text-transform: uppercase;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
#Footer .footer-col .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 110%;
  background-color: #f2f2f2;
}
@media (max-width: 768px) {
  #Footer .footer-col.mls {
    width: 100%;
  }
}
@media (max-width: 1400px) {
  #Footer .footer-col.mls .mls-logo .mls-realtor-logo {
    width: 150px !important;
  }
}
@media (max-width: 768px) {
  #Footer .footer-col.mls .mls-logo .mls-realtor-logo {
    margin: 0 auto;
    display: block;
    width: 200px !important;
  }
}
#Footer .menu {
  padding-left: 0;
}
#Footer a {
  transition: ease-in-out 0.33s;
}
#Footer a:hover {
  color: #afafaf;
}
#Footer .contact-social {
  padding-top: 1em;
}
#Footer .contact-social .contact-social-icon {
  padding: 0.25em;
}

#ListingsGrid {
  padding: 3em 0;
}
#ListingsGrid .listing a {
  text-decoration: none;
  color: #333;
}
#ListingsGrid .listing a img {
  max-height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: ease-in-out 0.33s;
}
@media (max-width: 576px) {
  #ListingsGrid .listing a img {
    height: 250px;
  }
}
#ListingsGrid .listing a img:hover {
  transform: scale(1.025);
}
#ListingsGrid .listing a .listing-title {
  margin: 1em 0;
}
#ListingsGrid .listing a .listing-title h3.listing-address {
  margin: 0;
  transition: ease-in-out 0.33s;
}
@media (max-width: 768px) {
  #ListingsGrid .listing a .listing-title h3.listing-address {
    margin-bottom: 1em;
  }
}
#ListingsGrid .listing a .listing-title h3.listing-address:hover {
  font-weight: 500;
}

#Hero {
  background-size: cover;
  background-position: center;
  color: #f2f2f2;
  min-height: 50vh;
}
#Hero .hero-text {
  min-height: 25vh;
}
#Hero .hero-text h1 {
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0.5em 0;
}

#ListingImgs {
  max-height: 80vh;
}
#ListingImgs img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  max-height: 80vh;
}
#ListingImgs .glide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  color: white;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}
#ListingImgs .glide__arrow--left {
  left: 10px;
}
#ListingImgs .glide__arrow--right {
  right: 10px;
}

#ListingInfo {
  padding: 1em 0;
}
#ListingInfo .listing-desc h3, #ListingInfo .listing-desc h4 {
  font-family: "Monsteratt", sans-serif;
  font-weight: 300;
  margin-top: 0.5em;
}

#ListingDesc {
  padding: 2em;
}
#ListingDesc .row.listing-desc {
  align-items: flex-start;
}
#ListingDesc .grid {
  display: grid;
  grid-template-columns: repeat(2, 50% [col-start]);
}
@media (max-width: 992px) {
  #ListingDesc .grid {
    margin-top: 3em;
  }
}
@media (max-width: 576px) {
  #ListingDesc .grid {
    grid-template-columns: 1fr;
  }
}
#ListingDesc .grid .grid-item {
  height: 150px;
  border: 1px solid #dedede;
  padding: 0.5em;
}
#ListingDesc .grid .grid-item p {
  margin: 0.25rem;
}
#ListingDesc .listing-btns {
  display: flex;
  flex-direction: row;
}
#ListingDesc .listing-btns .main-btn {
  margin-right: 1rem;
}
@media (max-width: 400px) {
  #ListingDesc .listing-btns {
    flex-direction: column;
  }
  #ListingDesc .listing-btns .main-btn {
    margin-right: 0;
    margin-bottom: 1em;
  }
}

#listingCarousel {
  position: relative;
}
#listingCarousel .listing-address-overlay {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 5;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.25rem;
  border-radius: 0.25rem;
  pointer-events: none;
}
#listingCarousel .glide__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#listingCarousel .glide__slide {
  height: 80vh;
  overflow: hidden;
}

.glide__arrow {
  z-index: 10;
}/*# sourceMappingURL=listings.css.map */