@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/**
 * Modern Animation System
 * - Optimized for performance
 * - Supports delays and custom durations
 * - Uses will-change for hardware acceleration
 * - Prevents layout thrashing
 */
/* Base animation settings - universal for all fade animations */
[class*="fade-"] {
  opacity: 0;
  will-change: opacity, transform;
  animation-play-state: paused;
  backface-visibility: hidden;
  perspective: 1000px;
  /* Ensure animations stay at their end state */
  animation-fill-mode: forwards !important; }

/* Pre-animation state handling */
[class*="fade-"][class$="-pre"] {
  /* Already set to opacity: 0 by the base class */
  /* This class will be removed by JS when element becomes visible */ }

/* Animation active state - universal for all elements */
[class*="fade-"].fade-in,
[class*="fade-"][class$="-active"] {
  animation-play-state: running;
  animation-duration: var(--anim-duration, 0.8s);
  animation-delay: var(--anim-delay, 0s);
  animation-timing-function: var(--anim-easing, cubic-bezier(0.25, 0.1, 0.25, 1));
  animation-fill-mode: forwards !important;
  /* Double ensure this is set */ }

/* Standard fade in - no movement */
.fade-in {
  animation-name: fadeIn; }

/* Directional animations */
.fade-up, .fade-up-active {
  animation-name: fadeUp;
  /* No initial transform - keyframes handle it all */ }

.fade-down, .fade-down-active {
  animation-name: fadeDown; }

.fade-left, .fade-left-active {
  animation-name: fadeLeft; }

.fade-right, .fade-right-active {
  animation-name: fadeRight; }

.fade-scale, .fade-scale-active {
  animation-name: fadeScale; }

.fade-scale-up, .fade-scale-up-active {
  animation-name: fadeScaleUp; }

/* Keyframes with explicit final state for all animations */
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(30px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-30px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.9); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes fadeScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(30px); }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0); } }
/* Utility classes for customization */
.delay-100 {
  --anim-delay: 0.1s; }

.delay-200 {
  --anim-delay: 0.2s; }

.delay-300 {
  --anim-delay: 0.3s; }

.delay-400 {
  --anim-delay: 0.4s; }

.delay-500 {
  --anim-delay: 0.5s; }

.delay-800 {
  --anim-delay: 0.8s; }

.delay-1000 {
  --anim-delay: 1s; }

.duration-300 {
  --anim-duration: 0.3s; }

.duration-500 {
  --anim-duration: 0.5s; }

.duration-800 {
  --anim-duration: 0.8s; }

.duration-1000 {
  --anim-duration: 1s; }

.duration-1500 {
  --anim-duration: 1.5s; }

.duration-2000 {
  --anim-duration: 2s; }

.ease-linear {
  --anim-easing: linear; }

.ease-in {
  --anim-easing: cubic-bezier(0.42, 0, 1.0, 1.0); }

.ease-out {
  --anim-easing: cubic-bezier(0, 0, 0.58, 1.0); }

.ease-in-out {
  --anim-easing: cubic-bezier(0.42, 0, 0.58, 1.0); }

.ease-bounce {
  --anim-easing: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

/* Accessibility - reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  [class*="fade-"] {
    transition: opacity 0.1s ease-in-out !important;
    animation: none !important;
    transform: none !important; }

  .fade-in,
  [class*="fade-"][class$="-active"] {
    opacity: 1; } }
/* Lazy loading image styles */
.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out; }
  .lazy.fade-in {
    opacity: 1; }

/*============================================
   SIERRA
  ============================================ */
header {
  background: none !important; }

.header__bg {
  display: none !important; }

header::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.61) 0, #0000 100%) no-repeat 0 0, linear-gradient(to right, rgba(255, 255, 255, 0) 0, #fff6f600 100%) no-repeat 0 0;
  border-bottom: none; }

#dynamic-nav .dynamic-menu-item > a, .lang__button, .navigation__top-auth > a {
  color: #fff !important; }

.si-content-area img {
  margin: 0 !important; }

.si-site-container-fluid {
  padding: 0 !important; }

.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0; }

.page {
  padding: 0 0; }

.home-quick-search {
  display: none; }

.blog {
  display: none; }

.dark-banner {
  display: none; }

section.featured {
  display: none; }

.communities {
  display: none; }

.chart {
  display: none; }

.about .bg {
  display: none; }

#pageComponent354632 {
  display: none; }

.about .box {
  background-color: transparent !important;
  box-shadow: none;
  margin: 0px auto 0px;
  padding: 0 0;
  position: relative;
  width: 100%; }

.main-content {
  font-weight: inherit;
  padding: 0 0 0px; }

div.clearfix {
  display: none; }

div.more-menu-overlay-wrap.clearfix {
  display: block; }

footer {
  background-color: #000;
  color: #fff; }

footer .footer-content .h3, footer .footer-content h3 {
  color: #fff; }

footer .footer-content a {
  color: #fff; }

footer .footer-content a::after {
  color: #fff; }

footer .footer-content .disclaimer .si-idx-disclaimer {
  color: #fff; }

footer .footer-content .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.65);
  color: rgba(255, 255, 255, 0.65); }

.link-effect.dark a::after {
  background: #fff; }

.link-effect a {
  color: rgba(255, 255, 255, 0.65) !important; }

.link-effect a:hover {
  color: #fff !important; }

/* ===========================================
   MEDIA HOLDER – SEARCH BAR CONTAINER
   =========================================== */
#media-holder {
  display: flex;
  justify-content: center;
  /* horizontal centering */
  align-items: flex-start;
  /* keep it from vertical centering */
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box; }

body {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0;
  max-width: 100%;
  width: 100%;
  overflow-x: hidden; }
  body #cherieYoung {
    width: 100%;
    opacity: 1 !important;
    /* -----------------------------
       Shared section container styles
    ----------------------------- */
    /* -----------------------------
       Base grid
    ----------------------------- */
    /* One-off positioning fix from original CSS */
    /* -----------------------------
       Featured Listings spans (desktop)
    ----------------------------- */
    /* -----------------------------
       Lifestyle Listings defaults + link behavior
    ----------------------------- */
    /* =========================================================
       RESPONSIVE
       ========================================================= */
    /* <=1199px */
    /* Between 801px and 991px: 2 columns */
    /* <=800px: true 1-column stack for EVERYTHING */
    /* =========================================================
       RESPONSIVE
       ========================================================= */
    /* =========================================================
    ABOUT SECTION
    ========================================================= */
    /*******END******/ }
    body #cherieYoung #poseidon {
      width: 100%;
      position: relative;
      overflow: hidden; }
      body #cherieYoung #poseidon h1,
      body #cherieYoung #poseidon h2,
      body #cherieYoung #poseidon h3 {
        font-weight: 400;
        color: #fff;
        margin-top: 0;
        margin-bottom: 0;
        font-family: "Playfair Display", serif !important; }
      body #cherieYoung #poseidon h1 {
        font-size: 52px; }
        body #cherieYoung #poseidon h1 span {
          font-size: 40px;
          color: #fff !important; }
        body #cherieYoung #poseidon h1.large {
          font-size: 11rem; }
      body #cherieYoung #poseidon h2 {
        font-size: 40px; }
        body #cherieYoung #poseidon h2.large {
          font-size: 52px; }
      body #cherieYoung #poseidon h3 {
        font-size: 25px; }
      @media (max-width: 1200px) {
        body #cherieYoung #poseidon h1 {
          font-size: 40px; }
          body #cherieYoung #poseidon h1 span {
            font-size: 30px; }
          body #cherieYoung #poseidon h1.large {
            font-size: 6rem; }
        body #cherieYoung #poseidon h2 {
          font-size: 30px; }
          body #cherieYoung #poseidon h2.large {
            font-size: 40px; } }
      @media (max-width: 790px) {
        body #cherieYoung #poseidon h1 {
          font-size: 30px;
          line-height: 100%; }
          body #cherieYoung #poseidon h1 span {
            font-size: 23px; }
          body #cherieYoung #poseidon h1.large {
            font-size: 3rem; }
        body #cherieYoung #poseidon h2 {
          font-size: 25px; }
          body #cherieYoung #poseidon h2.large {
            font-size: 30px; }
        body #cherieYoung #poseidon h3 {
          font-size: 20px; } }
      body #cherieYoung #poseidon p {
        font-family: "Poppins", sans-serif !important;
        font-size: 18px;
        font-weight: 400 !important;
        text-align: center;
        margin-top: 0;
        margin-bottom: 0; }
      body #cherieYoung #poseidon a {
        text-decoration: none !important;
        font-family: "Poppins", sans-serif !important; }
      body #cherieYoung #poseidon .cta {
        font-family: "Poppins", sans-serif !important;
        font-size: 20px;
        font-weight: 400 !important;
        text-align: center;
        text-transform: uppercase;
        padding: 0.5rem 2rem;
        border-radius: 2px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
        position: relative;
        display: inline;
        width: 333px;
        /* Default CTA (white background, black text) */
        background-color: rgba(255, 255, 255, 0);
        border: 1px solid white;
        color: #fff;
        /* Primary variant (maroon background, white text) */ }
        body #cherieYoung #poseidon .cta:hover {
          background-color: #fff;
          border: 1px solid #fff;
          color: #243965; }
        body #cherieYoung #poseidon .cta.primary {
          background-color: rgba(255, 255, 255, 0);
          border: 1px solid white;
          color: #fff;
          /* -----------------------------
             Secondary button style (.btn)
          ----------------------------- */ }
          body #cherieYoung #poseidon .cta.primary:hover {
            background-color: #fff;
            border: 1px solid #fff;
            color: #243965; }
          @media (max-width: 800px) {
            body #cherieYoung #poseidon .cta.primary .cta,
            body #cherieYoung #poseidon .cta.primary .cta.primary {
              font-size: 16px;
              width: auto;
              padding-left: 15px;
              padding-right: 15px;
              min-width: 250px;
              color: #fff; } }
          body #cherieYoung #poseidon .cta.primary .btn {
            font-family: "Poppins", sans-serif !important;
            border: 1px solid #fff;
            border-radius: 40px;
            display: inline-block !important;
            width: auto !important;
            color: #fff !important;
            text-transform: uppercase;
            font-weight: 500;
            font-size: 20px;
            line-height: 44px;
            padding: 0 45px;
            transition: 300ms ease all;
            margin-top: 25px;
            background: transparent !important; }
            body #cherieYoung #poseidon .cta.primary .btn.btn-e {
              margin: 0 10px !important; }
            body #cherieYoung #poseidon .cta.primary .btn:hover {
              background: #243965 !important;
              color: #fff !important;
              border: 1px solid #9c2743; }
    body #cherieYoung .background-content {
      position: fixed;
      z-index: -1;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      filter: brightness(0.6);
      background-position: center;
      background-size: cover; }
      body #cherieYoung .background-content .video-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden; }
      body #cherieYoung .background-content #background-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        object-fit: cover;
        display: block; }
      body #cherieYoung .background-content .embed-responsive {
        padding: 0 !important;
        height: 100vh !important;
        overflow: hidden;
        position: relative; }
      body #cherieYoung .background-content .embed-responsive video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
        width: auto !important;
        height: auto !important;
        object-fit: cover; }
      @media (max-width: 991px) {
        body #cherieYoung .background-content #background-video {
          display: none !important; } }
    body #cherieYoung .hero {
      position: relative;
      height: 100vh;
      display: flex;
      padding-top: 0;
      justify-content: center;
      align-items: center;
      color: #fff;
      min-height: 700px;
      flex-wrap: wrap;
      box-sizing: border-box;
      margin-top: -125px; }
      @media (max-width: 991px) {
        body #cherieYoung .hero {
          height: fit-content;
          margin-top: 0;
          padding-bottom: 60px;
          min-height: 500px; } }
      @media (max-width: 600px) {
        body #cherieYoung .hero {
          padding-top: 30px; } }
      body #cherieYoung .hero .bottom-cta {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        display: flex;
        flex-direction: row;
        background-color: rgba(0, 0, 0, 0.5);
        gap: 30px; }
        body #cherieYoung .hero .bottom-cta a {
          display: block;
          padding-top: 20px;
          padding-bottom: 20px;
          font-weight: 300;
          color: white;
          text-decoration: none;
          letter-spacing: 2px;
          font-size: 1rem;
          position: relative; }
          @media (max-width: 800px) {
            body #cherieYoung .hero .bottom-cta a {
              text-align: left !important;
              width: 100% !important;
              margin: auto;
              padding-left: 30px;
              padding-right: 30px;
              border-radius: 0px !important;
              font-size: .8rem; } }
        body #cherieYoung .hero .bottom-cta a:first-of-type {
          width: 60%;
          border-right: 1px solid white;
          text-align: center; }
        @media (max-width: 800px) {
          body #cherieYoung .hero .bottom-cta {
            flex-direction: column;
            gap: 0px; } }
      body #cherieYoung .hero .logo-container {
        position: absolute;
        top: 88px; }
        body #cherieYoung .hero .logo-container img {
          display: inline-block;
          height: 200px;
          width: auto;
          margin-bottom: 20px !important; }
          @media (max-width: 800px) {
            body #cherieYoung .hero .logo-container img {
              height: 150px;
              margin-bottom: 30px !important; } }
          @media (max-width: 600px) {
            body #cherieYoung .hero .logo-container img {
              height: 100px;
              margin-bottom: 20px !important; } }
      body #cherieYoung .hero .hero-content {
        text-align: center;
        width: 100%; }
        body #cherieYoung .hero .hero-content img.hero-logo {
          display: inline-block;
          max-height: 200px;
          margin-bottom: 100px !important; }
          @media (max-width: 800px) {
            body #cherieYoung .hero .hero-content img.hero-logo {
              max-height: 130px;
              margin-bottom: 60px !important; } }
          @media (max-width: 600px) {
            body #cherieYoung .hero .hero-content img.hero-logo {
              max-height: 100px;
              margin-bottom: 50px !important; } }
        body #cherieYoung .hero .hero-content .hero-cta {
          display: flex;
          justify-content: center;
          align-items: center;
          margin-top: 2rem;
          gap: 30px; }
          @media (max-width: 800px) {
            body #cherieYoung .hero .hero-content .hero-cta {
              flex-direction: column;
              gap: 10px; } }
          body #cherieYoung .hero .hero-content .hero-cta a {
            font-family: "Poppins", sans-serif !important;
            border: 1px solid #fff;
            border-radius: 40px;
            display: inline-block !important;
            width: auto !important;
            color: #fff !important;
            text-transform: uppercase;
            font-weight: 500;
            font-size: 20px;
            line-height: 44px;
            padding: 0 45px;
            transition: 300ms ease all;
            margin-top: 25px;
            background: rgba(0, 0, 0, 0.29) !important; }
            body #cherieYoung .hero .hero-content .hero-cta a:hover {
              background-color: #243965 !important;
              border: 1px solid #243965;
              color: #fff !important; }
            body #cherieYoung .hero .hero-content .hero-cta a:hover span {
              transition: .5s; }
            body #cherieYoung .hero .hero-content .hero-cta a span {
              font-weight: bold;
              transition: .5s; }
    body #cherieYoung .featured-listings,
    body #cherieYoung #lifestyle_listings {
      background: #fff;
      padding-top: 0;
      padding-bottom: 2px; }
      body #cherieYoung .featured-listings .featured-header,
      body #cherieYoung #lifestyle_listings .featured-header {
        padding: 45px 0 45px; }
        body #cherieYoung .featured-listings .featured-header h2,
        body #cherieYoung #lifestyle_listings .featured-header h2 {
          color: #000 !important;
          text-transform: uppercase;
          font-weight: 400;
          font-family: "Playfair Display", serif;
          text-align: center; }
    body #cherieYoung .featured-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 2px;
      grid-auto-flow: dense;
      grid-auto-rows: 8vw; }
      body #cherieYoung .featured-grid .grid-item {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        overflow: hidden; }
        body #cherieYoung .featured-grid .grid-item::before {
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0);
          pointer-events: none;
          z-index: 1;
          transition: 300ms ease all; }
        body #cherieYoung .featured-grid .grid-item:hover::before {
          background: rgba(0, 0, 0, 0.2); }
        body #cherieYoung .featured-grid .grid-item img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          border: 0 !important; }
        body #cherieYoung .featured-grid .grid-item .area-content {
          margin: auto;
          text-align: center;
          position: relative;
          z-index: 9;
          display: flex;
          flex-direction: column;
          gap: 6px;
          align-items: center;
          position: absolute; }
          body #cherieYoung .featured-grid .grid-item .area-content .title {
            display: block;
            font-family: "Playfair Display", serif;
            font-size: clamp(28px, 3vw, 39px);
            font-weight: 400;
            line-height: 1.1;
            color: #fff;
            text-transform: uppercase;
            word-wrap: break-word;
            padding: 10px 15px;
            border-radius: 15px;
            background: rgba(0, 0, 0, 0.29) !important; }
          body #cherieYoung .featured-grid .grid-item .area-content .btn {
            font-family: "Poppins", sans-serif !important;
            border: 1px solid #fff;
            border-radius: 40px;
            display: inline-block !important;
            width: auto !important;
            color: #fff !important;
            text-transform: uppercase;
            font-weight: 500;
            font-size: 20px;
            line-height: 44px;
            padding: 0 25px;
            transition: 300ms ease all;
            margin-top: 25px;
            background: rgba(0, 0, 0, 0.29) !important; }
            body #cherieYoung .featured-grid .grid-item .area-content .btn.btn-e {
              margin: 0 10px !important; }
            body #cherieYoung .featured-grid .grid-item .area-content .btn:hover {
              background-color: #243965 !important;
              border: 1px solid #243965;
              color: #fff !important; }
          body #cherieYoung .featured-grid .grid-item .area-content a.link {
            font-family: "Poppins", sans-serif;
            display: inline-block;
            width: auto;
            color: #fff;
            font-weight: 500;
            font-size: 20px;
            text-transform: uppercase;
            padding: 0 25px;
            border-radius: 40px;
            text-align: center;
            transition: all 0.3s ease;
            background: rgba(0, 0, 0, 0.2) !important;
            border: 1px solid #fff;
            margin-top: 25px; }
            body #cherieYoung .featured-grid .grid-item .area-content a.link::before {
              display: none !important; }
            body #cherieYoung .featured-grid .grid-item .area-content a.link:hover {
              background-color: #243965 !important;
              border: 1px solid #243965;
              color: #fff !important; }
    body #cherieYoung #lifestyle_listings > div:nth-child(2) > div:nth-child(1) {
      background-position: right !important; }
    body #cherieYoung .featured-listings .grid-item.span-3 {
      grid-column: span 4;
      grid-row: span 3; }
    body #cherieYoung .featured-listings .grid-item.span-2-tall {
      grid-column: span 3;
      grid-row: span 3; }
    body #cherieYoung .featured-listings .grid-item.span-4 {
      grid-column: span 6;
      grid-row: span 3; }
    body #cherieYoung #lifestyle_listings .grid-item {
      grid-column: span 4;
      grid-row: span 3; }
      body #cherieYoung #lifestyle_listings .grid-item span.title {
        padding-bottom: 20px; }
      body #cherieYoung #lifestyle_listings .grid-item a.link {
        font-family: "Poppins", sans-serif;
        display: inline-block;
        width: auto;
        color: #fff;
        font-weight: 500;
        font-size: 20px;
        text-transform: uppercase;
        padding: 9px 45px 8px;
        border-radius: 40px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid transparent; }
        body #cherieYoung #lifestyle_listings .grid-item a.link:hover {
          transform: translateY(-1px);
          text-decoration: none;
          border: 1px solid #fff; }
    @media (max-width: 1199px) {
      body #cherieYoung .featured-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 12vw; }
        body #cherieYoung .featured-grid .grid-item:last-child:nth-child(odd) {
          grid-column: span 6 !important; }
      body #cherieYoung .featured-listings .grid-item.span-3, body #cherieYoung .featured-listings .grid-item.span-2, body #cherieYoung .featured-listings .grid-item.span-2-tall {
        grid-column: span 3;
        grid-row: span 3; }
      body #cherieYoung .featured-listings .grid-item.span-4 {
        grid-column: span 3;
        grid-row: span 3; }
      body #cherieYoung #lifestyle_listings .grid-item {
        grid-column: span 3; } }
    @media (max-width: 991px) and (min-width: 801px) {
      body #cherieYoung .featured-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
        gap: 2px; }
        body #cherieYoung .featured-grid .grid-item {
          grid-column: span 1 !important;
          /* all items occupy 1 col */
          grid-row: auto !important;
          /* free height */
          min-height: 350px;
          /* Last odd item spans both columns */ }
          body #cherieYoung .featured-grid .grid-item:last-child:nth-child(odd) {
            grid-column: span 2 !important; }
          body #cherieYoung .featured-grid .grid-item .area-content .title {
            font-size: 28px; } }
    @media (max-width: 800px) {
      body #cherieYoung {
        /* Neutralize "last odd spans 2" at this size */ }
        body #cherieYoung .featured-grid {
          grid-template-columns: 1fr;
          grid-auto-rows: auto;
          grid-auto-columns: 1fr;
          /* safety so span>1 won't create implicit cols */
          gap: 2px; }
        body #cherieYoung .featured-listings .grid-item,
        body #cherieYoung #lifestyle_listings .grid-item {
          grid-column: 1 / -1 !important;
          /* full width on 1-col grid */
          grid-row: auto !important;
          /* kill any forced row spans */
          min-height: 300px; }
        body #cherieYoung .featured-grid .grid-item:last-child:nth-child(odd) {
          grid-column: 1 / -1 !important; } }
    body #cherieYoung .hero-overlay {
      background: rgba(0, 0, 0, 0.48);
      border-bottom: 1px solid rgba(255, 255, 255, 0.47); }
      body #cherieYoung .hero-overlay .hero-overlay-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 1500px;
        margin: auto;
        gap: 30px; }
      body #cherieYoung .hero-overlay .hero-overlay-item {
        padding-top: 60px;
        padding-bottom: 60px;
        width: calc(33% - 60px);
        text-align: center; }
        body #cherieYoung .hero-overlay .hero-overlay-item img {
          max-width: 100px;
          margin: 0 auto; }
        body #cherieYoung .hero-overlay .hero-overlay-item h2,
        body #cherieYoung .hero-overlay .hero-overlay-item p {
          margin-top: 30px;
          color: #fff; }
        body #cherieYoung .hero-overlay .hero-overlay-item a {
          text-align: center;
          font-family: "Poppins", sans-serif;
          border: 1px solid #fff;
          border-radius: 40px;
          display: inline-block;
          color: #fff !important;
          text-transform: uppercase;
          font-weight: 500;
          font-size: 20px;
          padding: 9px 45px 8px;
          transition: 0.5s;
          margin-top: 25px;
          font-weight: 500; }
          body #cherieYoung .hero-overlay .hero-overlay-item a:hover {
            background-color: #243965 !important;
            border: 1px solid #243965;
            color: #fff !important; }
    @media (max-width: 1200px) {
      body #cherieYoung .hero-overlay .hero-overlay-content {
        flex-direction: column;
        gap: 0; }
      body #cherieYoung .hero-overlay .hero-overlay-item {
        padding-top: 30px;
        padding-bottom: 30px;
        width: 90%;
        margin: auto; } }
    body #cherieYoung .buyer-seller {
      background-color: white;
      position: relative;
      padding-top: 30px;
      padding-bottom: 0px;
      border-bottom: 1px solid #fff; }
      @media (min-width: 801px) {
        body #cherieYoung .buyer-seller::before {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          width: 1px;
          height: 80%;
          background: white;
          opacity: .75;
          transform: translate(-50%, -50%); } }
      @media (max-width: 756px) {
        body #cherieYoung .buyer-seller {
          padding-top: 2px;
          padding-bottom: 0; } }
      body #cherieYoung .buyer-seller .buyer-seller-content {
        display: flex;
        justify-content: center;
        align-items: center;
        height: fit-content;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        position: relative;
        overflow: hidden; }
        @media (max-width: 756px) {
          body #cherieYoung .buyer-seller .buyer-seller-content {
            background-position: 65% 50%; } }
        body #cherieYoung .buyer-seller .buyer-seller-content::before {
          content: "";
          position: absolute;
          left: 0;
          right: 0;
          bottom: 0;
          top: 0;
          background-color: rgba(0, 0, 0, 0.3);
          transition: 0.5s;
          z-index: 1; }
        body #cherieYoung .buyer-seller .buyer-seller-content > .buyers, body #cherieYoung .buyer-seller .buyer-seller-content > .sellers {
          width: 50%;
          padding: 15vw 0;
          display: flex;
          justify-content: center;
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 30px;
          height: 100%;
          position: relative;
          transition: backdrop-filter 0.5s ease;
          z-index: 2; }
          body #cherieYoung .buyer-seller .buyer-seller-content > .buyers > .bs-inner-content, body #cherieYoung .buyer-seller .buyer-seller-content > .sellers > .bs-inner-content {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 30px;
            height: 100%; }
          body #cherieYoung .buyer-seller .buyer-seller-content > .buyers h1, body #cherieYoung .buyer-seller .buyer-seller-content > .sellers h1 {
            font-size: 5rem; }
          body #cherieYoung .buyer-seller .buyer-seller-content > .buyers:hover, body #cherieYoung .buyer-seller .buyer-seller-content > .sellers:hover {
            backdrop-filter: grayscale(100%);
            transition: backdrop-filter 0.5s ease; }
        body #cherieYoung .buyer-seller .buyer-seller-content > .buyers {
          background: none;
          background-image: none;
          order: 1; }
        body #cherieYoung .buyer-seller .buyer-seller-content > .sellers {
          background: none;
          background-image: none;
          order: 2; }
        @media (max-width: 800px) {
          body #cherieYoung .buyer-seller .buyer-seller-content {
            flex-direction: column;
            padding: 0;
            gap: 1px;
            /*      & > .buyers {
                       background-image: url('https://cy-realgeeks-assets.s3.us-west-1.amazonaws.com/sites/levendirealty.com/images/buyers-sellers-left.jpg');
                  background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                    order: 1;
                }
                & > .sellers {
                    background-image: url('https://cy-realgeeks-assets.s3.us-west-1.amazonaws.com/sites/levendirealty.com/images/buyers-sellers-right.jpg');
                  background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                  order: 2;
                            }*/ }
            body #cherieYoung .buyer-seller .buyer-seller-content > .buyers, body #cherieYoung .buyer-seller .buyer-seller-content > .sellers {
              width: 100%;
              order: 2;
              gap: 30px;
              /* and/or kill the transition if you like */
              transition: none !important; }
              body #cherieYoung .buyer-seller .buyer-seller-content > .buyers h1, body #cherieYoung .buyer-seller .buyer-seller-content > .sellers h1 {
                font-size: 4rem;
                line-height: 1; }
              body #cherieYoung .buyer-seller .buyer-seller-content > .buyers:hover, body #cherieYoung .buyer-seller .buyer-seller-content > .sellers:hover {
                backdrop-filter: none !important; }
              body #cherieYoung .buyer-seller .buyer-seller-content > .buyers::before, body #cherieYoung .buyer-seller .buyer-seller-content > .sellers::before {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                top: 0;
                background-color: rgba(0, 0, 0, 0.3);
                transition: 0.5s;
                z-index: 1; }
              body #cherieYoung .buyer-seller .buyer-seller-content > .buyers > .bs-inner-content, body #cherieYoung .buyer-seller .buyer-seller-content > .sellers > .bs-inner-content {
                position: relative;
                z-index: 2;
                display: flex;
                justify-content: center;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 30px;
                height: 100%; } }
        body #cherieYoung .buyer-seller .buyer-seller-content a {
          border: 1px solid #fff;
          border-radius: 40px;
          display: inline-block;
          color: #fff !important;
          font-weight: 500;
          font-size: 20px;
          text-transform: uppercase;
          padding: 9px 45px 8px;
          transition: 0.3s;
          margin-top: 25px;
          background: rgba(71, 69, 69, 0.21); }
          body #cherieYoung .buyer-seller .buyer-seller-content a:hover {
            background-color: #000 !important;
            border: 1px solid #000;
            color: #fff !important; }
    body #cherieYoung #about {
      position: relative;
      overflow: hidden !important;
      /* -----------------------------
         Background overlay
      ----------------------------- */
      /* -----------------------------
         Container / grid helpers
         (legacy Bootstrap-style layout)
      ----------------------------- */
      /* -----------------------------
         Content
      ----------------------------- */
      /* -----------------------------
         Awards
      ----------------------------- */
      /* -----------------------------
         Button
      ----------------------------- */
      /* =========================================================
         RESPONSIVE
         ========================================================= */ }
      body #cherieYoung #about .about-bg {
        /* Full height */
        /*background-image: url(https://cy-sierra-assets.s3.us-west-1.amazonaws.com/sites/realmarkrealty.com/images/sell-buy.jpg);*/
        /* Create the parallax scrolling effect */
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover; }
        body #cherieYoung #about .about-bg::before {
          content: "";
          position: absolute;
          inset: 0;
          background-color: rgba(0, 0, 0, 0.48); }
      body #cherieYoung #about .container {
        width: 100%;
        max-width: 1450px;
        margin: 0 auto;
        box-sizing: border-box; }
        body #cherieYoung #about .container .row {
          display: flex;
          flex-wrap: wrap;
          margin-right: 0;
          margin-left: 0;
          padding: 0 0;
          box-sizing: border-box;
          align-items: center; }
      body #cherieYoung #about .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%; }
      body #cherieYoung #about .content {
        padding: 100px 90px 125px;
        color: #fff;
        position: relative;
        text-align: center; }
        body #cherieYoung #about .content::after {
          content: "";
          width: 430px;
          height: 550px;
          background-size: contain;
          position: absolute;
          bottom: 0;
          right: 0;
          transform: translateX(50%); }
        body #cherieYoung #about .content h3 {
          font-size: 44px;
          text-transform: uppercase;
          font-weight: 300;
          color: #fff;
          margin-top: 0;
          line-height: normal !important; }
          body #cherieYoung #about .content h3 em {
            font-style: normal;
            font-weight: 600;
            color: #fff; }
        body #cherieYoung #about .content p {
          margin-bottom: 25px;
          text-align: left;
          color: #fff !important; }
        body #cherieYoung #about .content .headshot {
          float: right;
          margin: 0 0 25px 25px; }
        body #cherieYoung #about .content .content-box {
          text-align: left;
          padding: 20px;
          box-sizing: border-box; }
        body #cherieYoung #about .content .image-box {
          padding: 20px;
          box-sizing: border-box; }
          body #cherieYoung #about .content .image-box img {
            max-width: 100%; }
            @media (max-width: 991px) {
              body #cherieYoung #about .content .image-box img {
                max-width: 100%; } }
      body #cherieYoung #about .awards {
        display: flex;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center; }
      body #cherieYoung #about .-award {
        height: auto;
        display: inline;
        margin: 15px; }
        body #cherieYoung #about .-award img {
          max-width: 100%; }
      body #cherieYoung #about .btn {
        border: 1px solid #fff;
        border-radius: 40px;
        display: inline-block;
        color: #fff !important;
        text-transform: uppercase;
        font-weight: 500;
        font-size: 20px;
        line-height: 44px;
        padding: 0 45px;
        transition: 0.3s;
        margin-top: 25px;
        background: rgba(71, 69, 69, 0.21); }
        body #cherieYoung #about .btn:hover {
          background-color: #243965 !important;
          border: 1px solid #243965;
          color: #fff !important; }
      @media (max-width: 1199px) {
        body #cherieYoung #about .content::after {
          transform: translateX(35%); } }
      @media (max-width: 767px) {
        body #cherieYoung #about .content {
          padding: 60px 0; }
          body #cherieYoung #about .content p.bottom {
            padding-right: 0; }
          body #cherieYoung #about .content .headshot, body #cherieYoung #about .content::after {
            display: none; }
        body #cherieYoung #about .col-md-6 {
          flex: 0 0 100%;
          max-width: 100%; } }
      @media (max-width: 543px) {
        body #cherieYoung #about .content h3 {
          font-size: 35px; } }
    body #cherieYoung .socials-GR {
      background-color: rgba(0, 0, 0, 0.3);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      padding-bottom: 60px;
      gap: 0; }
      body #cherieYoung .socials-GR h1 {
        padding-top: 30px;
        color: white;
        margin-bottom: 20px;
        font-family: "Playfair Display", serif !important; }
        @media (max-width: 790px) {
          body #cherieYoung .socials-GR h1 {
            font-size: 3rem; } }
        @media (max-width: 320px) {
          body #cherieYoung .socials-GR h1 {
            font-size: 2.5rem; } }
      body #cherieYoung .socials-GR h3 {
        color: white; }
      body #cherieYoung .socials-GR img {
        width: 160px; }
      body #cherieYoung .socials-GR .social-feed {
        width: 100%;
        padding-top: 30px;
        padding-bottom: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column; }
        body #cherieYoung .socials-GR .social-feed .testimonials-holder {
          width: 100%;
          max-width: 1300px;
          padding: 0 20px;
          margin-bottom: 40px;
          height: auto;
          overflow: visible; }
          @media (max-width: 768px) {
            body #cherieYoung .socials-GR .social-feed .testimonials-holder {
              font-size: 1.2rem;
              width: 90%; } }
          body #cherieYoung .socials-GR .social-feed .testimonials-holder a {
            font-family: "Poppins", sans-serif;
            font-size: 1.3rem;
            font-weight: 300;
            color: #fff;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            position: relative;
            /*    &:hover {
                  background-color: darken($secondary-color, 10%);
                    border: 1px solid #000;
                }*/ }
            @media (max-width: 800px) {
              body #cherieYoung .socials-GR .social-feed .testimonials-holder a {
                font-size: 1.5rem;
                width: 90%;
                margin: auto;
                padding-left: 5px;
                padding-right: 5px; } }
            body #cherieYoung .socials-GR .social-feed .testimonials-holder a:hover span {
              color: #A8A7A7; }
            body #cherieYoung .socials-GR .social-feed .testimonials-holder a span {
              font-weight: bold;
              color: #fff;
              transition: 0.5s; }
