@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");
/*@import "~@fortawesome/fontawesome-free/css/all.min.css";*/
.bg_2 {
  background: #f1f1f1 !important; }

.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; }

.center {
  text-align: center; }

/* 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; }

.top-strip {
  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*/
#pageComponent656350 {
  display: none; }

#pageComponent656963, #pageComponent656996 {
  display: none; }

#page204588 #pageComponent657174 {
  display: none; }

#page204589 #pageComponent657186 {
  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.25rem; } }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke h3 {
            font-size: 1rem; } }
      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.6);
        background-position: center 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 .embed-responsive {
              display: unset;
              height: unset !important;
              overflow: hidden !important;
              padding: unset !important;
              position: unset !important;
              z-index: 0; }
            body #cherieYoung #bespoke .background-content #background-video {
              width: 100vw;
              height: 100%;
              object-fit: cover;
              position: absolute;
              left: 0;
              right: 0;
              top: 0;
              bottom: 0;
              z-index: 0; } }
  @media screen and (max-width: 1200px) and (max-width: 767px) {
    body #cherieYoung #bespoke .background-content #background-video {
      display: none; } }

      body #cherieYoung #bespoke .hero {
        position: relative;
        height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        color: #fff;
        margin-top: 0px;
        padding-top: 95px;
        min-height: 500px; }
        @media (max-width: 320px) {
          body #cherieYoung #bespoke .hero {
            height: 110vh;
            margin-top: 0; } }
        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: relative;
          display: block;
          top: 0px; }
          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;
          display: block; }
          body #cherieYoung #bespoke .hero .hero-content img.hero-logo {
            display: inline-block;
            max-height: 80px;
            margin-bottom: 60px; }
            @media (max-width: 800px) {
              body #cherieYoung #bespoke .hero .hero-content img.hero-logo {
                max-height: 100px;
                margin-bottom: 40px; } }
            @media (max-width: 600px) {
              body #cherieYoung #bespoke .hero .hero-content img.hero-logo {
                max-height: 80px;
                margin-bottom: 30px; } }
          body #cherieYoung #bespoke .hero .hero-content h1 {
            margin-top: 20px;
            margin-bottom: 27px; }
          body #cherieYoung #bespoke .hero .hero-content p {
            font-weight: 400;
            text-transform: uppercase;
            white-space: pre-line;
            font-size: 21px;
            line-height: 1.57; }
          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: 90%;
                  margin: auto;
                  padding-left: 5px;
                  padding-right: 5px; } }
      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 p.welcome-info-data {
            margin-bottom: 8px !important; }
          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.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: #fff;
            border: 1px solid #111;
            color: black;
            padding: 0.7rem 1.5rem;
            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; }
          body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta {
            display: flex;
            justify-content: left;
            align-items: center;
            margin-top: 0;
            margin-left: 0;
            gap: 30px;
            width: 100%;
            margin-left: 0; }
            body #cherieYoung #bespoke .welcome .welcome-content .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-content .welcome-cta a:hover {
                background-color: black;
                border: 1px solid #fff;
                color: #fff; }
              body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a:hover span {
                color: #000000;
                transition: .5s; }
              body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a span {
                font-weight: bold;
                color: #111;
                transition: .5s; }
            @media (max-width: 800px) {
              body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta {
                justify-content: center;
                margin-left: -30px; } }
            @media (max-width: 786px) {
              body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta {
                flex-direction: column;
                gap: 10px; }
                body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a {
                  font-size: 1.5rem;
                  width: 80%;
                  margin: auto; } }
@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-content.reversed div:first-of-type {
                order: 1; }
              body #cherieYoung #bespoke .welcome .welcome-content.reversed div:last-of-type {
                order: 2; } }
        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 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: 0.8;
              transition: filter 0.3s, opacity 0.3s; }
              body #cherieYoung #bespoke .excellence .logo-carousel-container .logo-swiper .swiper-slide img:hover {
                opacity: 1; }
        body #cherieYoung #bespoke .excellence .nav-wrapper-container {
          max-width: 100%;
          display: block;
          background: #e71519;
          height: fit-content; }
      body #cherieYoung #bespoke .cy-content {
        width: 100%;
        background: #fff;
        padding: 60px;
        box-sizing: border-box; }
        body #cherieYoung #bespoke .cy-content .text-block {
          max-width: 1100px;
          width: 100%;
          margin: 0 auto; }
          body #cherieYoung #bespoke .cy-content .text-block h2 {
            color: #111;
            text-transform: uppercase;
            margin-bottom: 20px; }
          body #cherieYoung #bespoke .cy-content .text-block h3 {
            color: #111;
            text-transform: uppercase;
            text-align: left; }
          body #cherieYoung #bespoke .cy-content .text-block p {
            text-align: left;
            color: #111; }
      body #cherieYoung #bespoke .home-worth, body #cherieYoung #bespoke .sold-listings, body #cherieYoung #bespoke .sale-listings {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        min-height: 70vh;
        display: block; }
        body #cherieYoung #bespoke .home-worth::before, body #cherieYoung #bespoke .sold-listings::before, body #cherieYoung #bespoke .sale-listings::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.2);
          z-index: 1; }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke .home-worth, body #cherieYoung #bespoke .sold-listings, body #cherieYoung #bespoke .sale-listings {
            padding: 0; } }
        body #cherieYoung #bespoke .home-worth .parallax-bg, body #cherieYoung #bespoke .sold-listings .parallax-bg, body #cherieYoung #bespoke .sale-listings .parallax-bg {
          /*background-image: url('https://cy-sierra-assets.s3.us-west-1.amazonaws.com/sites/therasmussencollective.com/images/trust.jpg');*/
          position: absolute;
          top: 0;
          bottom: 0;
          background-attachment: fixed;
          background-size: cover;
          background-position: center;
          width: 100%;
          z-index: 1;
          min-height: 100vh; }
        body #cherieYoung #bespoke .home-worth .banner-content, body #cherieYoung #bespoke .sold-listings .banner-content, body #cherieYoung #bespoke .sale-listings .banner-content {
          padding: 2vw 0;
          text-align: center;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          gap: 60px;
          padding: 60px;
          transition: 0.5s;
          position: relative;
          z-index: 2; }
          body #cherieYoung #bespoke .home-worth .banner-content img, body #cherieYoung #bespoke .sold-listings .banner-content img, body #cherieYoung #bespoke .sale-listings .banner-content img {
            width: 120px;
            filter: invert(1); }
          @media (max-width: 800px) {
            body #cherieYoung #bespoke .home-worth .banner-content, body #cherieYoung #bespoke .sold-listings .banner-content, body #cherieYoung #bespoke .sale-listings .banner-content {
              gap: 30px;
              padding: 30px 15px;
              width: 100%; } }
          body #cherieYoung #bespoke .home-worth .banner-content a, body #cherieYoung #bespoke .sold-listings .banner-content a, body #cherieYoung #bespoke .sale-listings .banner-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 .home-worth .banner-content a, body #cherieYoung #bespoke .sold-listings .banner-content a, body #cherieYoung #bespoke .sale-listings .banner-content a {
                font-size: 1.5rem;
                width: 80%;
                margin: auto;
                padding-left: 5px;
                padding-right: 5px;
                max-width: 200px; } }
            body #cherieYoung #bespoke .home-worth .banner-content a:hover, body #cherieYoung #bespoke .sold-listings .banner-content a:hover, body #cherieYoung #bespoke .sale-listings .banner-content a:hover {
              background-color: black;
              border: 1px solid #000; }
      body #cherieYoung #bespoke .banner {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        min-height: 70vh;
        display: block; }
        body #cherieYoung #bespoke .banner::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: rgba(0, 0, 0, 0.3);
          z-index: 2; }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke .banner {
            padding: 0; } }
        body #cherieYoung #bespoke .banner .parallax-bg {
          /*background-image: url('https://cy-sierra-assets.s3.us-west-1.amazonaws.com/sites/therasmussencollective.com/images/trust.jpg');*/
          background-attachment: fixed;
          background-size: cover;
          background-position: center; }
        body #cherieYoung #bespoke .banner .banner-content-2-cols {
          padding: 4vw 0;
          text-align: center;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          gap: 20px;
          transition: 0.5s;
          position: relative;
          z-index: 3;
          height: 100%;
          flex-wrap: nowrap; }
          @media (max-width: 800px) {
            body #cherieYoung #bespoke .banner .banner-content-2-cols {
              flex-wrap: wrap;
              gap: 30px;
              padding: 30px 15px;
              width: 100%; } }
          body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__left,
          body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right {
            width: 100%;
            box-sizing: border-box; }
            @media (max-width: 800px) {
              body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__left,
              body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right {
                width: 100%;
                padding-right: 15px; } }
          body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__left {
            display: flex;
            flex-direction: column;
            align-items: center; }
          body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right {
            color: #fff;
            text-align: left; }
            body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper {
              width: 100%;
              max-width: 1500px;
              position: relative;
              padding-top: 50px; }
              body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-wrapper {
                transition-timing-function: linear !important;
                padding-top: 40px; }
              body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-slide {
                width: 100%;
                padding: 0;
                position: relative;
                display: flex;
                flex-direction: column;
                justify-content: center; }
                body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .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 .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-slide:last-child::after {
                  display: none; }
                body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-slide p {
                  text-align: left; }
              body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-button-next,
              body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-button-prev {
                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 .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-button-next::after,
                body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-button-prev::after {
                  scale: 0.5; }
              body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-button-prev {
                right: 60px; }
              body #cherieYoung #bespoke .banner .banner-content-2-cols .featured-testimonials__right .Testimonials-swiper .swiper-button-next {
                right: 10px; }
          body #cherieYoung #bespoke .banner .banner-content-2-cols img {
            width: 120px;
            filter: invert(1); }
          body #cherieYoung #bespoke .banner .banner-content-2-cols h2, body #cherieYoung #bespoke .banner .banner-content-2-cols h3 {
            margin-bottom: 10px;
            text-transform: uppercase; }
          body #cherieYoung #bespoke .banner .banner-content-2-cols 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 .banner .banner-content-2-cols a {
                font-size: 1.5rem;
                width: 80%;
                margin: auto;
                padding-left: 5px;
                padding-right: 5px;
                max-width: 200px; } }
            body #cherieYoung #bespoke .banner .banner-content-2-cols a:hover {
              background-color: black;
              border: 1px solid #000; }
      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(3, 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.large,
          body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile.large {
            width: 99%; }
          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.3);
              z-index: 1;
              text-decoration: none;
              font-size: 2.6rem; }
              body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile .featured-tile-content a:hover,
              body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile .featured-tile-content a:hover {
                background: rgba(0, 0, 0, 0.4);
                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); } }
        @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 .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-image: url("images/sellers-buyers.jpg");*/
          background-size: cover;
          background-position: center;
          background-attachment: fixed;
          position: relative;
          overflow: hidden; }
          body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > div {
            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 > div h1 {
              font-size: 5rem; }
            body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > div:hover {
              backdrop-filter: grayscale(100%);
              transition: backdrop-filter 0.5s ease; }
          @media (max-width: 800px) {
            body #cherieYoung #bespoke .buyer-seller .buyer-seller-content {
              flex-direction: column;
              padding: 0;
              gap: 60px; }
              body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > div {
                width: 100%;
                order: 2;
                gap: 30px; }
                body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > div h1 {
                  font-size: 4rem; } }
          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 .buyer-seller .buyer-seller-content a:hover span {
              color: #000000; }
            body #cherieYoung #bespoke .buyer-seller .buyer-seller-content a span {
              font-weight: bold;
              color: #111;
              transition: 0.5s; }
      body #cherieYoung #bespoke #featured {
        background: #fff;
        padding: 30px 0 80px 0; }
        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;
              bottom: 0;
              left: 0;
              right: 0;
              height: 260px;
              padding: 15px 20px;
              box-sizing: border-box;
              background: rgba(0, 0, 0, 0.2);
              color: #fff;
              height: 100%;
              display: flex;
              flex-direction: column;
              flex-wrap: wrap;
              justify-content: end;
              backdrop-filter: grayscale(0);
              transition: backdrop-filter 0.5s ease; }
              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: 2.8rem;
                font-weight: 300;
                line-height: 1.2;
                color: #fff;
                display: block;
                padding-bottom: 1rem; }
              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.4;
                display: block;
                color: #fff;
                margin-top: 0.2rem; }
              body #cherieYoung #bespoke #featured .property-grid .property a .area-meta .price {
                margin-top: 0.5rem;
                display: block;
                font-weight: 400;
                padding-bottom: 10px;
                font-family: "Poppins", sans-serif;
                font-size: 1.8rem; }
              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: 1.2rem;
                font-weight: 300;
                padding: 3px 20px 0 0; }
              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; }
            body #cherieYoung #bespoke #featured .property-grid .property a img {
              object-fit: cover;
              -o-object-fit: cover;
              min-height: 100%;
              min-width: 100%; }
        @media (max-width: 991px) {
          body #cherieYoung #bespoke #featured {
            padding: 30px 0 80px 0; }
            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: 85vw; } }
        @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: 1.3; } }
      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: 0px; }
        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 {
          padding: 0 0 100px;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          width: 100%; }
      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 {
              filter: invert(1);
              max-width: 100%;
              margin-bottom: 10px; }
            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; }
