@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;
}

header {
  background: none !important;
}

#page66575 header::before {
  display: none;
}

#page66575 img.header__bg.js-hero-image {
  display: none !important;
}

#page66575 .page {
  padding: 0 !important;
}

body > div.clearfix {
  display: none;
}

@media (max-width: 600px) {
  header .logo {
    display: none;
  }
}
header .logo 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;
}

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;
}

#pageComponent207204 {
  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, 1);
}

.ease-out {
  --anim-easing: cubic-bezier(0, 0, 0.58, 1);
}

.ease-in-out {
  --anim-easing: cubic-bezier(0.42, 0, 0.58, 1);
}

.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-bottom: 0 !important;
  margin-top: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0;
  max-width: 100%;
  width: 100%;
}
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-family: "Montserrat", sans-serif;
  font-size: 4rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  margin-top: -10px;
  line-height: 100%;
  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-family: "Montserrat", sans-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-family: "Montserrat", sans-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; */
  font-family: "Montserrat", sans-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: "Montserrat", sans-serif;
  font-size: 1rem;
  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;
  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: 65px;
  justify-content: center;
  align-items: center;
  color: #fff;
  min-height: 700px;
  flex-wrap: wrap;
  box-sizing: border-box;
  margin-top: -128px;
}
@media (max-width: 991px) {
  body #cherieYoung #bespoke .hero {
    height: fit-content;
    margin-top: 0;
    padding-top: 100px;
    padding-bottom: 60px;
    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: 0.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: 200px;
  margin-bottom: 100px !important;
}
@media (max-width: 800px) {
  body #cherieYoung #bespoke .hero .hero-content img.hero-logo {
    max-height: 130px;
    margin-bottom: 60px !important;
  }
}
@media (max-width: 600px) {
  body #cherieYoung #bespoke .hero .hero-content img.hero-logo {
    max-height: 100px;
    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: 1.3rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
  padding: 0.5rem 2rem;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.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;
  color: #b09955;
}
body #cherieYoung #bespoke .hero .hero-content .hero-cta a:hover span {
  transition: 0.5s;
}
body #cherieYoung #bespoke .hero .hero-content .hero-cta a span {
  font-weight: bold;
  transition: 0.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 span {
  font-weight: bold;
  color: #111;
  transition: 0.5s;
  font-size: 18px;
}
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: 0.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-family: "Montserrat", sans-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;
}
body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta {
  display: flex;
  justify-content: left;
  align-items: start;
  margin-top: 0;
  margin-left: 0;
  gap: 30px;
  width: fit-content;
  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: #fff;
  text-align: center;
  padding: 0.5rem 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a:hover {
  background-color: #dbae77;

  color: #fff;
}
body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a:hover span {
  color: #000000;
  transition: 0.5s;
}
body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a span {
  font-weight: bold;
  color: #dbae77;
  transition: 0.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;
    margin-left: 0px;
  }
  body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a {
    font-size: 1.5rem;
    margin-left: 0;
  }
}
@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;
    padding-left: 0px;
  }
}
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 {
  padding-top: 30px;
}
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;
  padding-left: 20px;
  padding-right: 20px;
}
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;
  padding-left: 20px;
  padding-right: 20px;
}
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.wide,
body
  #cherieYoung
  #bespoke
  .featured-areas
  .featured-content
  .featured-tiles
  .tile.wide {
  grid-column: span 6;
}
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 0.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 0.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;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  white-space: normal;
  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;
}
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.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;
    filter: grayscale(0%);
    min-height: 300px;
  }
  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%);
  }
}
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: 0.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; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  min-height: 70dvh;
}
@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: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: stretch;
  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%;
  padding: 15vw 0;
}
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers h1,
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers h1 {
  font-size: 3rem;
}
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: 1;
}
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers {
  background: none;
  background-image: none;
  order: 2;
}
@media (max-width: 800px) {
  body #cherieYoung #bespoke .buyer-seller .buyer-seller-content {
    /* flex-direction: column; */
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
    gap: 2px;
    background-position: 65%;
    /* 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: 3rem;
  }
  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-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    order: 1;
  }
  body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers {
    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: 0.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: #dbae77;
  border: 1px solid #dbae77;
  color: #fff;
}
body #cherieYoung #bespoke #featured {
  background: #fff;
  padding: 20px 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: "Montserrat", 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;
}
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: 2rem;
  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: "Montserrat", 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: "Montserrat", 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: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 0px 20px 0 0;
  line-height: 1;
}
body #cherieYoung #bespoke #featured .property-grid .property a .area-meta h4 {
  margin-top: 0.8rem;
  color: #fff;
  font-size: 1.2rem;
  font-family: "Montserrat", 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;
}
body #cherieYoung #bespoke #featured .property {
  width: 100%; /* Fill only the grid cell */
  max-width: 100%; /* Prevent overflow */
  box-sizing: border-box; /* Include padding/border in width calc */
}

body #cherieYoung #bespoke #featured .property img {
  width: 100%; /* Scale images to container */
  height: auto; /* Keep proportions */
  display: block; /* Remove inline spacing */
}

@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;
  }
  body
    #cherieYoung
    #bespoke
    #featured
    .property-grid
    .property:last-child
    a
    img {
    object-fit: cover;
    object-position: center center; /* centers image both vertically and horizontally */
    min-height: 100%;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    display: block;
  }
  body #cherieYoung #bespoke #featured .property:last-child {
    grid-column: span 2;
    height: 100%;
  }
}
@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:last-child {
    grid-column: span 1;
  }
  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: 1.3;
  }
}
body #cherieYoung #bespoke .socials-IG,
body #cherieYoung #bespoke .socials-YT {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0px;
}
body #cherieYoung #bespoke .socials-IG h1,
body #cherieYoung #bespoke .socials-YT h1 {
  padding-top: 30px;
  color: black;
}
@media (max-width: 790px) {
  body #cherieYoung #bespoke .socials-IG h1,
  body #cherieYoung #bespoke .socials-YT h1 {
    font-size: 3rem;
  }
}
@media (max-width: 320px) {
  body #cherieYoung #bespoke .socials-IG h1,
  body #cherieYoung #bespoke .socials-YT h1 {
    font-size: 2.5rem;
  }
}
body #cherieYoung #bespoke .socials-IG h3,
body #cherieYoung #bespoke .socials-YT h3 {
  color: black;
}
body #cherieYoung #bespoke .socials-IG .social-feed,
body #cherieYoung #bespoke .socials-YT .social-feed {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 991px) {
  body #cherieYoung #bespoke .socials-IG .social-feed,
  body #cherieYoung #bespoke .socials-YT .social-feed {
    padding-bottom: 0;
  }
}
body #cherieYoung #bespoke .socials-IG .social-feed #elfsight-holder,
body #cherieYoung #bespoke .socials-YT .social-feed #elfsight-holder {
  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: 50px;
}
@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 {
  width: 270px;
}
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;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body #cherieYoung #bespoke .socials-GR .social-feed .testimonials-holder {
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  margin-bottom: 40px;
  height: auto;
  overflow: visible;
}
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: 0.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: #f5f5f5;
}
body #cherieYoung #bespoke .contact .contact-content {
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-direction: row;
}
@media (max-width: 991px) {
  body #cherieYoung #bespoke .contact .contact-content {
    flex-direction: column;
  }
}
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;
}
@media (max-width: 991px) {
  #bespoke > section.contact > div > div.contact-info {
    padding: 30px 0px !important;
  }
}
body #cherieYoung #bespoke .contact .contact-content .contact-info img {
  max-width: 530px;
  width: 95%;
  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: "Montserrat", 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: #dbae77;
  border: 1px solid #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
body
  #cherieYoung
  #bespoke
  .contact
  .contact-content
  .contact-info
  .bespoke-social-icons
  a
  i {
  color: #000;
  font-size: 16px;
  transition: color 0.3s ease;
}
body
  #cherieYoung
  #bespoke
  .contact
  .contact-content
  .contact-info
  .bespoke-social-icons
  a:hover {
  background: #000;
  border: 1px solid #dbae77;
}
body
  #cherieYoung
  #bespoke
  .contact
  .contact-content
  .contact-info
  .bespoke-social-icons
  a:hover
  i {
  color: #dbae77;
}
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;
  margin-top: 15px;
}
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;
}
.md-hero.layout11 .media-content-v2 {
  row-gap: 0;
  top: 35%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.search-group.layout11 .tab-body {
  width: 75%;
  margin: 0 auto;
}

#app
  > div.md-hero.layout11.banner-with-search-group.mg-bg
  > div
  > div.media-content-v2.media-content-search-group.row2column.appear-down.appear-down-enter-to
  > div.media-content-box
  > div
  > div.tab-body
  > div.tab-content.active
  > div
  > div.left-box
  > input::placeholder,
#app
  > div.md-hero.layout11.banner-with-search-group.mg-bg
  > div
  > div.media-content-v2.media-content-search-group.row2column.appear-down.appear-down-enter-to
  > div.media-content-box
  > div
  > div.tab-body
  > div.tab-content.active
  > div
  > div
  > div
  > div.keyword
  > input::placeholder {
  color: #fff;
  opacity: 1;
}
.md-hero.layout11 .media-content-v2 .media-info .title-text .site-subtitle {
  margin: 15px auto 30px;
}
.info-form2 .v-input .input-container input,
.info-form2 .v-input .input-container textarea {
  color: #000 !important;
  border-color: #000 !important;
}
#bespoke
  > section.contact
  > div
  > div.contact-form.fade-up.visible-after-animation
  > div.contact-form-inject
  > div
  > div
  > form
  > div.disclaimer-wrap.opt-in
  > div.tcpa-consent
  > div
  > div.disclaimer-content.party-consent
  > p {
  color: #000 !important;
  text-align: left !important;
}
#app
  > div.md-hero.layout3.banner-with-search-group.mg-bg
  > div
  > div.media-content-v2.media-content-search-group.row2column.appear-down.appear-down-enter-to
  > div.media-content-box,
#bespoke > section.home-quick-search.js-qs-home.si-bgp--center > div > div {
  background: rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  max-width: 800px;
  z-index: 0;
  border-radius: 15px;
  padding: 25px 25px 25px 25px;
  margin-top: 20px;
}
#app
  > div.md-hero.layout3.banner-with-search-group.mg-bg
  > div
  > div.media-content-v2.media-content-search-group.row2column.appear-down.appear-down-enter-to
  > div.media-content-box
  > div
  > div
  > div
  > div
  > div
  > div
  > div.keyword
  > input {
  background: #ffffff;
  color: #000;
  font-size: 22px;
}
#app
  > div.md-hero.layout3.banner-with-search-group.mg-bg
  > div
  > div.media-content-v2.media-content-search-group.row2column.appear-down.appear-down-enter-to
  > div.media-content-box
  > div
  > div
  > div
  > div
  > div
  > div
  > div.keyword
  > input::placeholder {
  color: #000;
  opacity: 1;
  /* font-weight: 600; */
  font-size: 20px;
}
#bespoke > section.featured-areas > div > div.featured-tiles > a > div,
#bespoke > section.featured-lifestyles > div > div.featured-tiles > a > div {
  background: rgba(0, 0, 0, 0.35);
  padding: 10px;
  border-radius: 15px;
}
#bespoke
  > section.socials-GR
  > div
  > div
  > div
  > div
  > div
  > div
  > div
  > div.WidgetBackground__Content-sc-386b5057-2.cMTovS.es-widget-background-content.WidgetBackground__ContentContainer-sc
  > div
  > div.WidgetTitle__Container-sc-9c92769d-0.lfCQiA.es-widget-title-container {
  display: none;
}
.site-title h2 {
  line-height: 1;
}
/* .md-header.layout5.mobile .header-container .menu-container .menu-icon .menu-bar{
  background-color: #dbae77;
}
@media (max-width: 800px) {
  #app > div.md-hero.layout3.banner-with-search-group.mg-bg > div{
    min-height: 550px!important;
  }
  .md-hero.layout3 .media-content-v2{
    padding-top: 20%;
  }
  #app > div.md-hero.layout3.banner-with-search-group.mg-bg > div > div.media-content-v2.media-content-search-group.row2column.appear-down.appear-down-enter-to > div.media-info > div > div.site-title.center > h2{
    text-align: center;
  }
}
@media (max-width: 600px) {
  #app > div.md-hero.layout3.banner-with-search-group.mg-bg > div > div.media-content-v2.media-content-search-group.row2column.appear-down.appear-down-enter-to > div.media-info > div > div.site-title.center > h2 br { display: inline; }
}

@media (min-width: 601px) {
  #app > div.md-hero.layout3.banner-with-search-group.mg-bg > div > div.media-content-v2.media-content-search-group.row2column.appear-down.appear-down-enter-to > div.media-info > div > div.site-title.center > h2 br { display: none; }
} */
#cherieYoung #bespoke .approach {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  max-width: 1350px;
  margin: auto;
}

#cherieYoung #bespoke .upper-containter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 auto 50px;
  width: 95%;
}

#cherieYoung #bespoke .upper-title {
  font-size: 4rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
  line-height: 1.2;
}

#cherieYoung #bespoke .upper-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
}
#cherieYoung #bespoke .approach-content {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  width: 95%;
}
#cherieYoung #bespoke .reversed {
  flex-direction: row-reverse;
}
#cherieYoung #bespoke .approach-half {
  width: 50%;
  text-align: center;
}
#cherieYoung #bespoke .approach-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 30px;
  text-align: left;
}
#cherieYoung #bespoke .approach-desc {
  font-size: 1.5rem;
  font-weight: 300;
  color: #000;
  margin-bottom: 15px;
  text-align: left;
}
#cherieYoung #bespoke .approach-img {
  max-width: 400px;
  min-width: 300px;
  width: 100%;
  display: block;
  height: auto;
  margin: 0 auto;
}
#cherieYoung #bespoke .resources {
  padding-bottom: 30px;
}
#cherieYoung #bespoke .resources-img {
  display: block;
  margin: 0 auto;
}
#cherieYoung #bespoke .resources-small-text {
  font-size: 12px;
  font-weight: 300;
  color: #000;
  margin-bottom: 15px;
  text-align: center;
}
#app > div.md-hero.layout16.mg-bg > div > div.left.bg-wrap.f-col > div > div > div.media-info > div.title-text > div.site-title.left > h2 > span{
  font-size: 40px!important;
}
.site-title h2 {
    line-height: .7;
}
@media(max-width:900px){
  #cherieYoung #bespoke .upper-title{
    font-size: 3rem;
  }
  #cherieYoung #bespoke .upper-containter{
    margin-bottom: 0px;
  }
  #cherieYoung #bespoke .approach-content{
    flex-direction: column-reverse;
    gap: 0px;
    margin-bottom: 20px;
  }
  #cherieYoung #bespoke .approach-half{
    width: 100%;
  }
}
@media (max-width:800px) {
  .md-hero.layout16 .content-wrap{
    background: none!important;
  }
  #app > div.md-hero.layout16.mg-bg > div > div.left.bg-wrap.f-col > div > div > div.media-info > div.title-text > div.site-title.left > h2 > span{
  font-size: 35px!important;
}
}
@media(max-width:600px){
  #cherieYoung #bespoke .upper-subtitle{
    font-size: 1.2rem;
  }
  #cherieYoung #bespoke .approach-desc{
    font-size: 1rem;
  }
  #cherieYoung #bespoke .upper-title{
    font-size: 2.5rem;
  }
  #cherieYoung #bespoke .resources {
    padding: 30px 0;
  }
  #cherieYoung #bespoke .resources-img{
    width: 100%;
  }
}
