@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Belleza&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..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");
.social-link svg.social-icon {
  fill: #fff;
  transition: fill 0.3s ease; }

.social-link:hover svg.social-icon {
  fill: #000; }

html {
  font-size: 16px; }

.belleza-regular {
  font-family: "Belleza", sans-serif;
  font-weight: 400;
  font-style: normal; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

/* CHIME ADJUSTMENTS */
.md-custom-code, #app, main {
  background-color: transparent !important; }

.mg-container {
  max-width: 100% !important;
  width: 100% !important; }

.md-form {
  padding-top: 0px !important;
  padding-bottom: 0px !important; }

.visible-after-animation {
  opacity: 1 !important; }

/* SIERRA */
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0; }

.main-content {
  padding-bottom: 0;
  overflow: hidden; }

body > div.clearfix {
  display: none; }

header.fixed {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1015;
  background: transparent;
  box-shadow: none; }

header.fixed .logo {
  text-align: center !important;
  top: 27px; }

header.fixed.reduced .logo {
  top: 0px;
  left: 15px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all; }

@media (max-width: 600px) {
  header.fixed .logo {
    display: none; }

  header.fixed.reduced .logo {
    display: block; } }
header.fixed.reduced {
  background-color: var(--si-secondary-color);
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s all;
  transition: 0.2s all; }

header.fixed > .container > .dynamic-nav {
  padding-top: 30px; }

header.fixed.reduced > .container > .dynamic-nav {
  padding-top: 0px; }

/*hide components*/
.featured, .communities, .chart, .blog, .dark-banner {
  display: none; }

.home-quick-search {
  background: transparent !important;
  display: none !important; }

.home .fade-in.key-1 {
  display: none; }

.home-quick-search .hero-image {
  display: none !important; }

h1.fade-in.key-1, .listings-count.js-qs-count.fade-in.key-2 {
  display: none; }

.about .bg {
  display: none; }

#pageComponent656350 {
  display: none; }

#pageComponent656963, #pageComponent656996 {
  display: none; }

.about .box {
  background-color: transparent;
  box-shadow: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  width: 100%; }

/**
 * 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; }

body {
  margin: 0 auto;
  padding: 0; }
  body #cherieYoung {
    width: 100%;
    opacity: 1 !important; }
    body #cherieYoung #bespoke {
      width: 100%;
      position: relative;
      overflow: hidden; }
      body #cherieYoung #bespoke h1 {
        font-family: "Belleza", serif;
        font-size: 4rem;
        font-weight: 300;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
        margin-top: -10px;
        line-height: 95%;
        text-transform: uppercase; }
        @media (max-width: 1200px) {
          body #cherieYoung #bespoke h1 {
            font-size: 3rem; } }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke h1 {
            font-size: 2.5rem; } }
      body #cherieYoung #bespoke h2 {
        font-family: "Belleza", serif;
        font-size: 3rem;
        font-weight: 300;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
        margin-top: 0; }
        @media (max-width: 1200px) {
          body #cherieYoung #bespoke h2 {
            font-size: 2.25rem; } }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke h2 {
            font-size: 2rem; } }
      body #cherieYoung #bespoke h3 {
        font-family: "Belleza", serif;
        font-size: 1.5rem;
        font-weight: 300;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
        margin-top: 0; }
        @media (max-width: 1200px) {
          body #cherieYoung #bespoke h3 {
            font-size: 1.5rem; } }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke h3 {
            font-size: 1.5rem; } }
      body #cherieYoung #bespoke h4 {
        font-family: "Belleza", serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 1.5rem;
        font-weight: 300;
        color: #6d6d6d;
        margin: 0px 0 38px; }
      body #cherieYoung #bespoke p {
        font-family: "Poppins", sans-serif;
        font-size: 17px;
        font-weight: 300;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
        margin-top: 0; }
      body #cherieYoung #bespoke .background-content {
        position: fixed;
        z-index: -1;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        width: 100%;
        height: 100%;
        filter: brightness(0.8);
        background-position: center;
        background-size: cover; }
        @media (max-width: 1200px) {
          body #cherieYoung #bespoke .background-content {
            background-size: cover; }
            body #cherieYoung #bespoke .background-content iframe {
              display: none !important; }
            body #cherieYoung #bespoke .background-content .video-wrapper {
              position: relative;
              width: 100%;
              /* or whatever max-width you need */
              height: 500px;
              /* set this to the height you want (px, vh, %, etc) */
              overflow: hidden;
              /* hide anything that bleeds out */ }
            body #cherieYoung #bespoke .background-content .background-content video#background-video {
              position: absolute !important;
              top: 0 !important;
              left: 0 !important;
              width: 100% !important;
              height: 100% !important;
              object-fit: cover !important;
              display: block !important; } }
  @media screen and (max-width: 1200px) and (max-width: 767px) {
    body #cherieYoung #bespoke .background-content #background-video {
      display: none !important; } }

      body #cherieYoung #bespoke .hero {
        position: relative;
        height: 100vh;
        display: flex;
        padding-top: 188px;
        justify-content: center;
        align-items: center;
        color: #fff;
        min-height: 700px;
        flex-wrap: wrap; }
        @media (max-width: 320px) {
          body #cherieYoung #bespoke .hero {
            height: 110vh;
            margin-top: 0;
            padding-top: 100px;
            min-height: 500px; } }
        body #cherieYoung #bespoke .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 #bespoke .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 #bespoke .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 #bespoke .hero .bottom-cta a:first-of-type {
            width: 60%;
            border-right: 1px solid white;
            text-align: center; }
          @media (max-width: 800px) {
            body #cherieYoung #bespoke .hero .bottom-cta {
              flex-direction: column;
              gap: 0px; } }
        body #cherieYoung #bespoke .hero .logo-container {
          position: absolute;
          top: 88px; }
          body #cherieYoung #bespoke .hero .logo-container img {
            display: inline-block;
            height: 200px;
            width: auto;
            margin-bottom: 20px !important; }
            @media (max-width: 800px) {
              body #cherieYoung #bespoke .hero .logo-container img {
                height: 150px;
                margin-bottom: 30px !important; } }
            @media (max-width: 600px) {
              body #cherieYoung #bespoke .hero .logo-container img {
                height: 100px;
                margin-bottom: 20px !important; } }
        body #cherieYoung #bespoke .hero .hero-content {
          text-align: center;
          width: 100%; }
          body #cherieYoung #bespoke .hero .hero-content img.hero-logo {
            display: inline-block;
            max-height: 130px;
            margin-bottom: 60px !important; }
            @media (max-width: 800px) {
              body #cherieYoung #bespoke .hero .hero-content img.hero-logo {
                max-height: 100px;
                margin-bottom: 50px !important; } }
            @media (max-width: 600px) {
              body #cherieYoung #bespoke .hero .hero-content img.hero-logo {
                max-height: 80px;
                margin-bottom: 50px !important; } }
          body #cherieYoung #bespoke .hero .hero-content .hero-swiper {
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden; }
            body #cherieYoung #bespoke .hero .hero-content .hero-swiper .swiper {
              position: relative;
              min-height: 43px; }
              @media (max-width: 757px) {
                body #cherieYoung #bespoke .hero .hero-content .hero-swiper .swiper {
                  min-height: 60px; } }
            body #cherieYoung #bespoke .hero .hero-content .hero-swiper .swiper-wrapper {
              position: relative;
              height: 100%; }
            body #cherieYoung #bespoke .hero .hero-content .hero-swiper .swiper-slide {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              opacity: 0 !important;
              z-index: 0;
              transition: opacity 0.6s ease;
              pointer-events: none; }
            body #cherieYoung #bespoke .hero .hero-content .hero-swiper .swiper-slide-active {
              opacity: 1 !important;
              z-index: 1;
              pointer-events: auto; }
            body #cherieYoung #bespoke .hero .hero-content .hero-swiper h1 {
              font-size: 2.5rem;
              line-height: normal;
              text-align: center;
              margin: 0;
              white-space: normal;
              overflow-wrap: break-word;
              padding: 0 20px; }
              @media (max-width: 757px) {
                body #cherieYoung #bespoke .hero .hero-content .hero-swiper h1 {
                  font-size: 1.7rem; } }
          body #cherieYoung #bespoke .hero .hero-content .hero-cta {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 2rem;
            gap: 30px; }
            @media (max-width: 800px) {
              body #cherieYoung #bespoke .hero .hero-content .hero-cta {
                flex-direction: column;
                gap: 10px; } }
            body #cherieYoung #bespoke .hero .hero-content .hero-cta a {
              font-family: "Montserrat", sans-serif;
              font-size: 1rem;
              font-weight: 300;
              color: #fff;
              text-align: center;
              padding: .5rem 2rem;
              background-color: rgba(0, 0, 0, 0);
              border-radius: 0;
              text-decoration: none;
              transition: all .3s ease-in-out;
              position: relative;
              border: 1px solid #fff; }
              body #cherieYoung #bespoke .hero .hero-content .hero-cta a:hover {
                background-color: black;
                border: 1px solid #000; }
              body #cherieYoung #bespoke .hero .hero-content .hero-cta a:hover span {
                transition: .5s; }
              body #cherieYoung #bespoke .hero .hero-content .hero-cta a span {
                font-weight: bold;
                transition: .5s; }
              @media (max-width: 800px) {
                body #cherieYoung #bespoke .hero .hero-content .hero-cta a {
                  font-size: 1.5rem;
                  width: auto;
                  margin: auto;
                  padding-left: 15px;
                  padding-right: 15px; } }
      body #cherieYoung #bespoke .welcome {
        padding: 90px 0;
        background-color: white;
        position: relative; }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke .welcome {
            padding: 30px 0; } }
        body #cherieYoung #bespoke .welcome .welcome-content {
          max-width: 1350px;
          margin: auto;
          display: flex;
          justify-content: center;
          align-items: start;
          gap: 60px;
          padding: 0 30px; }
          body #cherieYoung #bespoke .welcome .welcome-content h1 {
            padding-bottom: 15px; }
          body #cherieYoung #bespoke .welcome .welcome-content h1, body #cherieYoung #bespoke .welcome .welcome-content p {
            color: #1B1B1B;
            text-align: left;
            margin-bottom: 15px; }
          body #cherieYoung #bespoke .welcome .welcome-content div {
            width: 50%; }
            body #cherieYoung #bespoke .welcome .welcome-content div div.image-box {
              width: 90%;
              display: block;
              position: relative; }
              body #cherieYoung #bespoke .welcome .welcome-content div div.image-box::before {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                top: 0;
                transition: .5s;
                z-index: 0;
                border: 2px solid rgba(0, 0, 0, 0.42);
                translate: 25px -25px; }
            @media (max-width: 991px) {
              body #cherieYoung #bespoke .welcome .welcome-content div {
                width: 100% !important; }
                body #cherieYoung #bespoke .welcome .welcome-content div div.image-box::before {
                  translate: 0 0 !important; } }
          body #cherieYoung #bespoke .welcome .welcome-content div.welcome-text-wrapper {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            flex-wrap: nowrap;
            /* This keeps the label and box2 side-by-side */
            width: 50%;
            padding-left: 60px;
            position: relative; }
            body #cherieYoung #bespoke .welcome .welcome-content div.welcome-text-wrapper div.tagline.left {
              color: #6d6d6d;
              font-family: "Belleza", serif;
              font-weight: 600;
              text-transform: uppercase;
              letter-spacing: 5px;
              font-size: 24px;
              text-align: center;
              position: absolute;
              top: 50%;
              left: 0;
              transform: rotate(270deg) translateX(-50%);
              transform-origin: left center;
              white-space: nowrap; }
            body #cherieYoung #bespoke .welcome .welcome-content div.welcome-text-wrapper div.welcome-text {
              width: 90%; }
            @media (max-width: 991px) {
              body #cherieYoung #bespoke .welcome .welcome-content div.welcome-text-wrapper {
                padding-left: 30px; } }
          body #cherieYoung #bespoke .welcome .welcome-content img {
            width: 100%; }
          body #cherieYoung #bespoke .welcome .welcome-content .toggle-button {
            font-family: "Montserrat", sans-serif;
            background-color: rgba(0, 0, 0, 0.1);
            border: 1px solid #111;
            color: black;
            padding: 0.7rem 1.5rem;
            border-radius: 4px;
            cursor: pointer;
            margin: 1rem 0;
            position: relative;
            transition: all 0.3s ease;
            font-weight: 500; }
            body #cherieYoung #bespoke .welcome .welcome-content .toggle-button::after {
              content: "▼";
              display: inline-block;
              margin-left: 8px;
              transition: transform 0.3s ease;
              font-size: 0.75em; }
            body #cherieYoung #bespoke .welcome .welcome-content .toggle-button:hover {
              background-color: #111;
              color: #fff; }
            body #cherieYoung #bespoke .welcome .welcome-content .toggle-button.expanded::after {
              transform: rotate(180deg); }
          body #cherieYoung #bespoke .welcome .welcome-content .read-more {
            overflow: hidden;
            transition: height 0.5s ease, opacity 0.5s ease;
            height: 0;
            opacity: 0;
            width: 100%; }
            body #cherieYoung #bespoke .welcome .welcome-content .read-more p {
              margin-bottom: 1rem; }
            body #cherieYoung #bespoke .welcome .welcome-content .read-more.expanded {
              height: auto;
              opacity: 1; }
@media (max-width: 1200px) and (min-width: 801px) {
  body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta {
    margin-right: -50vw;
    width: fit-content; } }

          @media (max-width: 800px) {
            body #cherieYoung #bespoke .welcome .welcome-content {
              flex-direction: column;
              gap: 30px; }
              body #cherieYoung #bespoke .welcome .welcome-content div:last-of-type {
                width: 100%;
                order: 1; }
              body #cherieYoung #bespoke .welcome .welcome-content div:first-of-type {
                width: 100%;
                order: 2; } }
        body #cherieYoung #bespoke .welcome .welcome-cta {
          display: flex;
          justify-content: left;
          align-items: center;
          margin-top: 0;
          margin-left: auto;
          margin-right: auto;
          gap: 30px;
          width: 100%;
          max-width: 1350px;
          box-sizing: border-box; }
          body #cherieYoung #bespoke .welcome .welcome-cta a {
            font-family: "Montserrat", sans-serif;
            font-size: 1.3rem;
            font-weight: 300;
            color: #111;
            text-align: center;
            padding: .5rem 2rem;
            background-color: rgba(0, 0, 0, 0);
            border-radius: 0;
            text-decoration: none;
            transition: all .3s ease-in-out;
            position: relative;
            border: 1px solid #000; }
            body #cherieYoung #bespoke .welcome .welcome-cta a:hover {
              background-color: black;
              border: 1px solid #fff;
              color: #fff; }
            body #cherieYoung #bespoke .welcome .welcome-cta a:hover span {
              color: #000000;
              transition: .5s; }
            body #cherieYoung #bespoke .welcome .welcome-cta a span {
              font-weight: bold;
              color: #111;
              transition: .5s; }
          @media (max-width: 800px) {
            body #cherieYoung #bespoke .welcome .welcome-cta {
              justify-content: center;
              margin-left: -30px; } }
          @media (max-width: 786px) {
            body #cherieYoung #bespoke .welcome .welcome-cta {
              flex-direction: column;
              gap: 10px;
              margin-left: -15px;
              margin-top: 30px; }
              body #cherieYoung #bespoke .welcome .welcome-cta a {
                font-size: 1.5rem; } }
        body #cherieYoung #bespoke .welcome .lenders {
          padding-top: 60px; }
          body #cherieYoung #bespoke .welcome .lenders h1 {
            color: #000; }
      body #cherieYoung #bespoke .excellence {
        background: #fff;
        padding: 30px 15px; }
        body #cherieYoung #bespoke .excellence h1 {
          color: #1B1B1B;
          margin-bottom: 20px; }
        body #cherieYoung #bespoke .excellence h3 {
          color: #1B1B1B; }
        body #cherieYoung #bespoke .excellence p {
          color: #1B1B1B;
          font-weight: 400; }
        body #cherieYoung #bespoke .excellence .logo-carousel-container {
          max-width: 1000px;
          margin: 0 auto;
          padding: 20px;
          overflow: hidden; }
          body #cherieYoung #bespoke .excellence .logo-carousel-container .logo-swiper .swiper-wrapper {
            transition-timing-function: linear !important; }
          body #cherieYoung #bespoke .excellence .logo-carousel-container .logo-swiper .swiper-slide {
            width: auto;
            padding: 0 30px;
            position: relative;
            display: flex;
            justify-content: center; }
            body #cherieYoung #bespoke .excellence .logo-carousel-container .logo-swiper .swiper-slide:not(.swiper-slide-duplicate)::after {
              content: "";
              position: absolute;
              right: -15px;
              top: 50%;
              transform: translateY(-50%);
              height: 50%;
              width: 1px;
              background-color: #ccc; }
            body #cherieYoung #bespoke .excellence .logo-carousel-container .logo-swiper .swiper-slide:last-child::after {
              display: none; }
            body #cherieYoung #bespoke .excellence .logo-carousel-container .logo-swiper .swiper-slide img {
              height: 60px;
              width: auto;
              display: block;
              filter: grayscale(100%);
              opacity: 1;
              transition: filter 0.3s, opacity 0.3s; }
      body #cherieYoung #bespoke .featured-lifestyles,
      body #cherieYoung #bespoke .featured-areas {
        background-color: white; }
        body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-header,
        body #cherieYoung #bespoke .featured-areas .featured-content .featured-header {
          padding-top: 30px;
          padding-bottom: 30px; }
          body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-header h1,
          body #cherieYoung #bespoke .featured-areas .featured-content .featured-header h1 {
            color: black; }
        body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles,
        body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles {
          display: grid;
          grid-template-columns: repeat(12, 1fr);
          gap: 16px;
          max-width: 100%;
          width: 1650px;
          margin-left: auto;
          margin-right: auto;
          margin-top: 30px; }
          body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile,
          body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile {
            grid-column: span 4; }
          body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile.narrow,
          body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile.narrow {
            grid-column: span 3; }
          body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile,
          body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            position: relative;
            box-sizing: border-box;
            align-self: stretch;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            z-index: 1;
            padding: 15px 0;
            min-height: 500px;
            filter: grayscale(0%);
            transition: filter .5s ease; }
            body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile:hover,
            body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile:hover {
              filter: grayscale(100%);
              transition: filter .5s ease; }
              body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile:hover::before,
              body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile:hover::before {
                background-color: rgba(0, 0, 0, 0.1);
                transition: 0.5s; }
            body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile::before,
            body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile::before {
              content: "";
              position: absolute;
              left: 0;
              right: 0;
              bottom: 0;
              top: 0;
              background-color: rgba(0, 0, 0, 0.1);
              transition: 0.5s;
              z-index: 1; }
            body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile .featured-tile-content a,
            body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile .featured-tile-content a {
              border-radius: 10px;
              display: inline-block;
              color: #fff !important;
              padding: 10px;
              transition: 0.5s;
              margin-top: 25px;
              font-weight: 400;
              box-sizing: border-box;
              overflow: hidden;
              position: relative;
              /*background: rgba(0, 0, 0, 0.2);*/
              z-index: 1;
              text-decoration: none;
              font-size: 2.6rem;
              /*    &:hover {
                    background: rgba(0, 0, 0, 0.3);
                    color: #fff !important;
                  }*/ }
        @media (max-width: 1200px) {
          body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles,
          body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles {
            grid-template-columns: repeat(2, 1fr); }
            body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile,
            body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile {
              grid-column: span 1 !important; } }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles,
          body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles {
            grid-template-columns: 1fr;
            gap: 2px;
            margin-top: 0px; }
            body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile,
            body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile {
              grid-column: span 1 !important; } }
      body #cherieYoung #bespoke .buyer-seller {
        background-color: white;
        position: relative;
        padding-top: 60px;
        padding-bottom: 30px; }
        @media (min-width: 801px) {
          body #cherieYoung #bespoke .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 #bespoke .buyer-seller {
            padding-top: 2px;
            padding-bottom: 0; } }
        body #cherieYoung #bespoke .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 #bespoke .buyer-seller .buyer-seller-content {
              background-position: 65% 50%; } }
          body #cherieYoung #bespoke .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 #bespoke .buyer-seller .buyer-seller-content > .buyers, body #cherieYoung #bespoke .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: 60px;
            height: 100%;
            position: relative;
            transition: backdrop-filter 0.5s ease;
            z-index: 2; }
            body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers > .bs-inner-content, body #cherieYoung #bespoke .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: 60px;
              height: 100%; }
            body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers h1, body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers h1 {
              font-size: 5rem; }
            body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers:hover, body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers:hover {
              backdrop-filter: grayscale(100%);
              transition: backdrop-filter 0.5s ease; }
          body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers {
            background: none;
            background-image: none;
            order: 2; }
          body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers {
            background: none;
            background-image: none;
            order: 1; }
          @media (max-width: 800px) {
            body #cherieYoung #bespoke .buyer-seller .buyer-seller-content {
              flex-direction: column-reverse;
              padding: 0;
              gap: 2px;
              background: none !important; }
              body #cherieYoung #bespoke .buyer-seller .buyer-seller-content::before {
                display: none; }
              body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers, body #cherieYoung #bespoke .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 #bespoke .buyer-seller .buyer-seller-content > .buyers h1, body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers h1 {
                  font-size: 4rem; }
                body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers:hover, body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers:hover {
                  backdrop-filter: none !important; }
                body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers::before, body #cherieYoung #bespoke .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 #bespoke .buyer-seller .buyer-seller-content > .buyers > .bs-inner-content, body #cherieYoung #bespoke .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: 60px;
                  height: 100%; }
              body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers {
                background-image: url("https://cy-sierra-assets.s3.us-west-1.amazonaws.com/sites/therasmussencollective.com/images/left.avif");
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                order: 1; }
              body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers {
                background-image: url("https://cy-sierra-assets.s3.us-west-1.amazonaws.com/sites/therasmussencollective.com/images/right.avif");
                background-size: cover;
                background-position: center;
                background-repeat: no-repeat;
                order: 2; } }
          body #cherieYoung #bespoke .buyer-seller .buyer-seller-content a {
            font-family: "Montserrat", sans-serif;
            font-size: 1.3rem;
            font-weight: 300;
            color: #fff;
            text-align: center;
            padding: .5rem 2rem;
            background-color: rgba(0, 0, 0, 0);
            border: 1px solid #fff;
            border-radius: 0px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            position: relative; }
            @media (max-width: 800px) {
              body #cherieYoung #bespoke .buyer-seller .buyer-seller-content a {
                font-size: 1.5rem;
                width: 80%;
                margin: auto;
                padding-left: 5px;
                padding-right: 5px;
                max-width: 200px; } }
            body #cherieYoung #bespoke .buyer-seller .buyer-seller-content a:hover {
              background-color: black;
              border: 1px solid #000; }
      body #cherieYoung #bespoke #featured {
        background: #fff;
        padding: 30px 15px 80px 15px; }
        body #cherieYoung #bespoke #featured h1 {
          color: #1B1B1B;
          margin: 20px 0 60px 0; }
        body #cherieYoung #bespoke #featured h3 {
          margin-top: 35px; }
          body #cherieYoung #bespoke #featured h3 a {
            color: #1B1B1B !important;
            text-align: center;
            /*font-family: "Poppins", sans-serif;*/ }
        body #cherieYoung #bespoke #featured .property-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 16px;
          max-width: 1650px;
          margin: 0 auto;
          width: 100%; }
          body #cherieYoung #bespoke #featured .property-grid .property a {
            display: block;
            position: relative;
            height: 25vw;
            overflow: hidden; }
            body #cherieYoung #bespoke #featured .property-grid .property a .area-meta {
              position: absolute;
              top: 0;
              bottom: 0;
              left: 0;
              right: 0;
              padding: 15px 20px;
              box-sizing: border-box;
              overflow: hidden;
              background: rgba(0, 0, 0, 0.2);
              color: #fff;
              max-height: 100%;
              display: flex;
              flex-direction: column;
              flex-wrap: wrap;
              justify-content: end;
              backdrop-filter: grayscale(0);
              transition: backdrop-filter 0.5s ease;
              /* Insert slashes with padding on either side */ }
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta:hover {
                backdrop-filter: grayscale(100%);
                transition: backdrop-filter 0.5s ease; }
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .address {
                font-family: 'Cormorant Garamond', serif;
                font-size: 1.7rem;
                font-weight: 300;
                line-height: normal;
                color: #fff;
                display: block; }
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .location {
                display: block;
                font-family: "Poppins", sans-serif;
                font-size: 1.2rem;
                font-weight: 400;
                line-height: 1;
                display: block;
                color: #fff; }
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .price {
                display: block;
                font-weight: 400;
                font-family: "Poppins", sans-serif;
                font-size: 1.2rem;
                line-height: 1; }
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .beds,
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .baths,
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .sqft {
                display: inline-block;
                font-family: "Poppins", sans-serif;
                font-size: 1rem;
                font-weight: 400;
                padding: 0px;
                line-height: 1; }
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .baths::before,
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .sqft::before {
                content: "/";
                display: inline-block;
                padding: 0 0.5em; }
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta h4 {
                margin-top: 0.8rem;
                color: #fff;
                font-size: 1.2rem;
                font-family: "Poppins", sans-serif;
                font-weight: 200;
                margin-bottom: 10px; }
            body #cherieYoung #bespoke #featured .property-grid .property a img {
              object-fit: cover;
              -o-object-fit: cover;
              min-height: 100%;
              min-width: 100%;
              margin: 0 !important; }
        @media (max-width: 991px) {
          body #cherieYoung #bespoke #featured {
            padding: 30px 15px 80px 15px; }
            body #cherieYoung #bespoke #featured .property-grid {
              grid-template-columns: repeat(2, 1fr); }
              body #cherieYoung #bespoke #featured .property-grid .property a {
                height: 38vw; } }
        @media (max-width: 767px) {
          body #cherieYoung #bespoke #featured {
            padding: 30px 0 20px 0; }
            body #cherieYoung #bespoke #featured h1 {
              margin-bottom: 20px; }
            body #cherieYoung #bespoke #featured .property-grid {
              grid-template-columns: 1fr;
              gap: 2px; }
              body #cherieYoung #bespoke #featured .property-grid .property {
                /*        &.first {
                          padding-bottom: 100px;
                        }*/ }
                body #cherieYoung #bespoke #featured .property-grid .property a {
                  height: 400px; } }
        @media (max-width: 543px) {
          body #cherieYoung #bespoke #featured .property-grid .property.first {
            padding-bottom: 73px; }
          body #cherieYoung #bespoke #featured .property-grid .property a .area-meta {
            padding: 0 20px; }
            body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .address {
              padding-bottom: 0;
              line-height: normal; } }
      body #cherieYoung #bespoke .socials-IG {
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0px; }
        body #cherieYoung #bespoke .socials-IG h1 {
          padding-top: 30px;
          color: black; }
          @media (max-width: 790px) {
            body #cherieYoung #bespoke .socials-IG h1 {
              font-size: 3rem; } }
          @media (max-width: 320px) {
            body #cherieYoung #bespoke .socials-IG h1 {
              font-size: 2.5rem; } }
        body #cherieYoung #bespoke .socials-IG h3 {
          color: black; }
        body #cherieYoung #bespoke .socials-IG .social-feed {
          padding: 60px 0;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          width: 100%; }
      body #cherieYoung #bespoke .socials-GR {
        background-color: rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0; }
        body #cherieYoung #bespoke .socials-GR h1 {
          padding-top: 30px;
          color: white;
          margin-bottom: 20px; }
          @media (max-width: 790px) {
            body #cherieYoung #bespoke .socials-GR h1 {
              font-size: 3rem; } }
          @media (max-width: 320px) {
            body #cherieYoung #bespoke .socials-GR h1 {
              font-size: 2.5rem; } }
        body #cherieYoung #bespoke .socials-GR h3 {
          color: white; }
        body #cherieYoung #bespoke .socials-GR img {
          filter: invert(1);
          width: 110px; }
        body #cherieYoung #bespoke .socials-GR .social-feed {
          width: 100%;
          padding-top: 30px;
          padding-bottom: 60px;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column; }
          body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder {
            width: 100%;
            max-width: 1100px;
            padding: 0 20px;
            margin-bottom: 40px;
            margin-top: 40px;
            height: auto;
            overflow: visible;
            background: rgba(0, 0, 0, 0.63);
            border-radius: 20px; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper {
              width: 100%;
              max-width: 1100px;
              position: relative;
              padding-top: 15px;
              padding-bottom: 20px; }
              body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-wrapper {
                transition-timing-function: linear !important;
                padding-top: 40px; }
              body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-slide {
                width: 100%;
                padding: 0;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: center; }
                body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-slide:not(.swiper-slide-duplicate)::after {
                  content: "";
                  position: absolute;
                  right: 0;
                  top: 50%;
                  transform: translateY(-50%);
                  height: 50%;
                  width: 1px;
                  background-color: #ccc; }
                body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-slide p {
                  text-align: left; }
              body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-button-next,
              body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-button-prev {
                display: none;
                width: 40px;
                background-color: #000;
                padding: 10px;
                border-radius: 50%;
                color: white !important;
                scale: 0.8;
                position: absolute;
                top: 20px;
                z-index: 10; }
                body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-button-next::after,
                body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-button-prev::after {
                  scale: 0.5; }
              body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-button-prev {
                right: 60px; }
              body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .Testimonials-swiper .swiper-button-next {
                right: 10px; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .si-testimonials {
              background-color: rgba(0, 0, 0, 0.46);
              padding: 40px;
              border-radius: 20px;
              position: relative;
              height: auto;
              overflow: hidden;
              min-height: 180px; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .slick-slide {
              height: auto !important;
              max-height: none !important; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .si-testimonials__item {
              text-align: center;
              padding: 30px;
              font-family: 'Montserrat', sans-serif;
              font-size: 1.2rem;
              color: #fff;
              position: relative; }
              body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .si-testimonials__item::before {
                content: "“";
                font-size: 100px;
                color: #fff;
                position: absolute;
                top: -20px;
                left: 20px;
                line-height: 1;
                font-family: Georgia, serif;
                opacity: 0.3; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .si-testimonials__item-content {
              overflow: hidden;
              position: relative;
              padding-right: 10px;
              word-break: break-word;
              line-height: 1.5; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .si-testimonials.si-testimonials--scroller {
              border: none !important;
              padding: 10px; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .si-testimonials__item-by {
              display: block;
              margin-top: 20px;
              font-weight: 600;
              color: #fff;
              font-size: 1rem;
              text-transform: uppercase;
              letter-spacing: 1px; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .slick-dots {
              margin-top: 30px;
              text-align: center; }
              body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .slick-dots li {
                display: inline-block;
                margin: 0 6px; }
                body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .slick-dots li button {
                  width: 12px;
                  height: 12px;
                  border-radius: 50%;
                  background: #ccc;
                  border: none;
                  opacity: 0.5;
                  transition: all 0.3s ease; }
                  body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .slick-dots li button:hover {
                    opacity: 0.8; }
                body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .slick-dots li.slick-active button {
                  background: #fff;
                  opacity: 1; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .slick-arrow {
              display: none !important; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .testimonials-holder .slick-list,
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .testimonials-holder .slick-track,
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .testimonials-holder .slick-slide {
              height: auto !important;
              min-height: 0 !important;
              max-height: none !important; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder .testimonials-holder .slick-list {
              overflow: hidden !important; }
            body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder a.view-all-testimonials {
              display: inline-block;
              margin: 40px auto 0;
              text-align: center;
              font-size: 1.3rem;
              font-weight: 300;
              color: #fff;
              padding: 0.5rem 2rem;
              background-color: transparent;
              border: 1px solid #fff;
              border-radius: 0;
              text-decoration: none;
              transition: all 0.3s ease-in-out; }
              body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder a.view-all-testimonials:hover {
                background-color: #fff;
                color: #000; }
              @media (max-width: 768px) {
                body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder a.view-all-testimonials {
                  font-size: 1.2rem;
                  width: 80%;
                  max-width: 200px; } }
          @media (max-width: 768px) {
            body #cherieYoung #bespoke .socials-GR .social-feed .si-testimonials {
              padding: 30px 15px; }
            body #cherieYoung #bespoke .socials-GR .social-feed .si-testimonials__item {
              padding: 20px 10px;
              font-size: 1rem; }
            body #cherieYoung #bespoke .socials-GR .social-feed .si-testimonials__item-by {
              font-size: 0.9rem; } }
          body #cherieYoung #bespoke .socials-GR .social-feed a {
            font-family: "Montserrat", sans-serif;
            font-size: 1.3rem;
            font-weight: 300;
            color: #fff;
            text-align: center;
            padding: .5rem 2rem;
            background-color: rgba(0, 0, 0, 0);
            border: 1px solid #fff;
            border-radius: 0px;
            text-decoration: none;
            transition: all 0.3s ease-in-out;
            position: relative; }
            @media (max-width: 800px) {
              body #cherieYoung #bespoke .socials-GR .social-feed a {
                font-size: 1.5rem;
                width: 80%;
                margin: auto;
                padding-left: 5px;
                padding-right: 5px;
                max-width: 200px; } }
            body #cherieYoung #bespoke .socials-GR .social-feed a:hover {
              background-color: black;
              border: 1px solid #000; }
            body #cherieYoung #bespoke .socials-GR .social-feed a:hover span {
              color: #000000; }
            body #cherieYoung #bespoke .socials-GR .social-feed a span {
              font-weight: bold;
              color: #111;
              transition: 0.5s; }
      body #cherieYoung #bespoke .fb-feed {
        background: #fff;
        padding: 0 15px;
        margin-top: -30px; }
      body #cherieYoung #bespoke .contact {
        background-color: #000; }
        body #cherieYoung #bespoke .contact .contact-content {
          max-width: 100%;
          margin: auto;
          display: flex;
          flex-direction: row;
          align-items: start; }
          @media (max-width: 991px) {
            body #cherieYoung #bespoke .contact .contact-content {
              flex-direction: column;
              gap: 30px; } }
          body #cherieYoung #bespoke .contact .contact-content > div {
            padding: 2vw 30px;
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            gap: 15px;
            background: #F5F5F5; }
            @media (max-width: 991px) {
              body #cherieYoung #bespoke .contact .contact-content > div {
                width: 100% !important; } }
          body #cherieYoung #bespoke .contact .contact-content .contact-info {
            background: #000; }
            body #cherieYoung #bespoke .contact .contact-content .contact-info img {
              max-width: 100%;
              margin-bottom: 10px; }
              body #cherieYoung #bespoke .contact .contact-content .contact-info img._no-filter {
                filter: none !important;
                max-width: 330px; }
            body #cherieYoung #bespoke .contact .contact-content .contact-info a {
              color: white;
              text-decoration: none;
              font-size: 1rem;
              letter-spacing: 2px;
              font-family: "Poppins", sans-serif; }
            body #cherieYoung #bespoke .contact .contact-content .contact-info .bespoke-social-icons {
              display: flex;
              gap: 12px;
              justify-content: center;
              padding: 0;
              list-style: none; }
              body #cherieYoung #bespoke .contact .contact-content .contact-info .bespoke-social-icons a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background: #000;
                border: 1px solid #fff;
                text-decoration: none;
                transition: all 0.3s ease; }
                body #cherieYoung #bespoke .contact .contact-content .contact-info .bespoke-social-icons a i {
                  color: #fff;
                  font-size: 16px;
                  transition: color 0.3s ease; }
                body #cherieYoung #bespoke .contact .contact-content .contact-info .bespoke-social-icons a:hover {
                  background: #fff; }
                  body #cherieYoung #bespoke .contact .contact-content .contact-info .bespoke-social-icons a:hover i {
                    color: #000; }
          body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content {
            display: flex;
            width: 100%;
            flex-direction: row;
            padding-top: 30px; }
            @media (max-width: 578px) {
              body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content {
                flex-direction: column; } }
            body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content .contact-form-info {
              width: 50%;
              color: #1B1B1B;
              padding-top: 30px; }
              @media (max-width: 578px) {
                body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content .contact-form-info {
                  width: 100%; } }
              body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content .contact-form-info p {
                text-align: left;
                color: #1B1B1B; }
              body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content .contact-form-info a {
                color: #1B1B1B;
                text-decoration: none; }
              body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content .contact-form-info h4 {
                margin: 20px 0 0;
                text-align: left;
                text-transform: capitalize;
                font-weight: 400;
                font-family: "Montserrat", sans-serif;
                letter-spacing: normal;
                font-size: 1rem;
                color: #1B1B1B; }
              body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content .contact-form-info h1 {
                color: #1B1B1B;
                text-transform: none;
                text-align: left;
                margin-bottom: 30px; }
            body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content .contact-form-image {
              width: 50%;
              padding: 0 15px; }
              @media (max-width: 578px) {
                body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content .contact-form-image {
                  width: 100%;
                  padding: 0;
                  text-align: center; } }
              body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-content .contact-form-image img {
                max-width: 100%;
                width: 315px; }
          body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-inject {
            width: 100%; }
            body #cherieYoung #bespoke .contact .contact-content .contact-form .contact-form-inject > div > div > h2 {
              display: none; }
