@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");
@font-face {
  font-family: "Moneta";
  src: url("Moneta-Black.eot");
  src:
    local("Moneta Black"),
    local("Moneta-Black"),
    url("Moneta-Black.eot?#iefix") format("embedded-opentype"),
    url("Moneta-Black.woff2") format("woff2"),
    url("Moneta-Black.woff") format("woff"),
    url("Moneta-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Moneta";
  src: url("Moneta-Bold.eot");
  src:
    local("Moneta Bold"),
    local("Moneta-Bold"),
    url("Moneta-Bold.eot?#iefix") format("embedded-opentype"),
    url("Moneta-Bold.woff2") format("woff2"),
    url("Moneta-Bold.woff") format("woff"),
    url("Moneta-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Moneta";
  src: url("Moneta-Regular.eot");
  src:
    local("Moneta"),
    local("Moneta-Regular"),
    url("Moneta-Regular.eot?#iefix") format("embedded-opentype"),
    url("Moneta-Regular.woff2") format("woff2"),
    url("Moneta-Regular.woff") format("woff"),
    url("Moneta-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Moneta";
  src: url("Moneta-Light.eot");
  src:
    local("Moneta Light"),
    local("Moneta-Light"),
    url("Moneta-Light.eot?#iefix") format("embedded-opentype"),
    url("Moneta-Light.woff2") format("woff2"),
    url("Moneta-Light.woff") format("woff"),
    url("Moneta-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-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;
}

/**
 * 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 h2,
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 h2,
  body #cherieYoung #bespoke h1 {
    font-size: 3rem;
  }
}
@media (max-width: 800px) {
  body #cherieYoung #bespoke h2,
  body #cherieYoung #bespoke h1 {
    font-size: 2.5rem;
  }
}
body #cherieYoung #bespoke h2 {
  font-family: "Belleza", serif;
  font-size: 3rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 1200px) {
  body #cherieYoung #bespoke h2 {
    font-size: 2.25rem;
  }
}
@media (max-width: 800px) {
  body #cherieYoung #bespoke h2 {
    font-size: 2rem;
  }
}
body #cherieYoung #bespoke h3 {
  font-family: "Belleza", serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
  margin-top: 0;
}
@media (max-width: 1200px) {
  body #cherieYoung #bespoke h3 {
    font-size: 1.5rem;
  }
}
@media (max-width: 800px) {
  body #cherieYoung #bespoke h3 {
    font-size: 1.5rem;
  }
}
body #cherieYoung #bespoke h4 {
  font-family: "Belleza", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1.5rem;
  font-weight: 300;
  color: #6d6d6d;
  margin: 0px 0 38px;
}
body #cherieYoung #bespoke p {
  font-family: "Poppins", sans-serif;
  font-size: 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: 10px;
  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: #43c6e7;
  border: 1px solid #43c6e7;
  color: #fff;
}
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 h2 {
  padding-bottom: 15px;
}
body #cherieYoung #bespoke .welcome .welcome-content h2 span {
  font-weight: bold;
  color: #111;
  transition: 0.5s;
  font-size: 18px;
}
body #cherieYoung #bespoke .welcome .welcome-content h2,
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-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;
  height: 0;
  opacity: 0;
  width: 100%;

  transition:
    height 0.5s ease,
    opacity 0.5s ease;
}

body #cherieYoung #bespoke .welcome .welcome-content .read-more p {
  margin-bottom: 1rem;
}

body #cherieYoung #bespoke .welcome .welcome-content .read-more.expanded {
  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: #43c6e7;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  position: relative;
}
body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a:hover {
  background-color: #00cafd;

  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: #111;
  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;
  }
}
body #cherieYoung #bespoke .welcome .lenders {
  padding-top: 60px;
}
body #cherieYoung #bespoke .welcome .lenders h2 {
  color: #000;
}
body #cherieYoung #bespoke .excellence {
  background: #fff;
  padding: 30px 15px;
}
body #cherieYoung #bespoke .excellence h2 {
  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
  h2,
body
  #cherieYoung
  #bespoke
  .featured-areas
  .featured-content
  .featured-header
  h2 {
  color: black;
}
body
  #cherieYoung
  #bespoke
  .featured-lifestyles
  .featured-content
  .featured-tiles,
body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  max-width: 100%;
  width: 1650px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
body
  #cherieYoung
  #bespoke
  .featured-lifestyles
  .featured-content
  .featured-tiles
  .tile,
body
  #cherieYoung
  #bespoke
  .featured-areas
  .featured-content
  .featured-tiles
  .tile {
  grid-column: span 4;
}
body
  #cherieYoung
  #bespoke
  .featured-lifestyles
  .featured-content
  .featured-tiles
  .tile.narrow,
body
  #cherieYoung
  #bespoke
  .featured-areas
  .featured-content
  .featured-tiles
  .tile.narrow {
  grid-column: span 3;
}
body
  #cherieYoung
  #bespoke
  .featured-lifestyles
  .featured-content
  .featured-tiles
  .tile.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;
  text-decoration: none;
}
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;
  }
  body #cherieYoung #bespoke .featured-lifestyles .featured-content .featured-tiles .tile, body #cherieYoung #bespoke .featured-areas .featured-content .featured-tiles .tile {
    min-height: 350px;
  }
}
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;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}
@media (max-width: 756px) {
  body #cherieYoung #bespoke .buyer-seller .buyer-seller-content {
    background-position: 65% 50%;
  }
}
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: 0.5s;
  z-index: 1;
}
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers,
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers {
  width: 50%;
  padding: 15vw 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
  height: 100%;
  position: relative;
  transition: backdrop-filter 0.5s ease;
  z-index: 2;
}
body
  #cherieYoung
  #bespoke
  .buyer-seller
  .buyer-seller-content
  > .buyers
  > .bs-inner-content,
body
  #cherieYoung
  #bespoke
  .buyer-seller
  .buyer-seller-content
  > .sellers
  > .bs-inner-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 60px;
  height: 100%;
}
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers h2,
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers h2 {
  font-size: 5rem;
}
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers:hover,
body
  #cherieYoung
  #bespoke
  .buyer-seller
  .buyer-seller-content
  > .sellers:hover {
  backdrop-filter: grayscale(100%);
  transition: backdrop-filter 0.5s ease;
}
body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers {
  background: none;
  background-image: none;
  order: 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;
    padding: 0;
    gap: 2px;
    /* background: none !important; */
  }
  body #cherieYoung #bespoke .buyer-seller .buyer-seller-content::before {
    display: none;
  }
  body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers,
  body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers {
    width: 100%;
    order: 2;
    gap: 30px;
    /* and/or kill the transition if you like */
    transition: none !important;
  }
  body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers h2,
  body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .sellers h2 {
    font-size: 4rem;
  }
  body
    #cherieYoung
    #bespoke
    .buyer-seller
    .buyer-seller-content
    > .buyers:hover,
  body
    #cherieYoung
    #bespoke
    .buyer-seller
    .buyer-seller-content
    > .sellers:hover {
    backdrop-filter: none !important;
  }
  body
    #cherieYoung
    #bespoke
    .buyer-seller
    .buyer-seller-content
    > .buyers::before,
  body
    #cherieYoung
    #bespoke
    .buyer-seller
    .buyer-seller-content
    > .sellers::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: 0.5s;
    z-index: 1;
  }
  body
    #cherieYoung
    #bespoke
    .buyer-seller
    .buyer-seller-content
    > .buyers
    > .bs-inner-content,
  body
    #cherieYoung
    #bespoke
    .buyer-seller
    .buyer-seller-content
    > .sellers
    > .bs-inner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
    height: 100%;
  }
  body #cherieYoung #bespoke .buyer-seller .buyer-seller-content > .buyers {
    background-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: 10px;
  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: #43c6e7;
  border: 1px solid #43c6e7;
  color: #fff;
}
body #cherieYoung #bespoke #featured {
  background: #fff;
  padding: 20px 15px 80px 15px;
}
body #cherieYoung #bespoke #featured h2 {
  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(1, 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: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  color: #fff;
}
body
  #cherieYoung
  #bespoke
  #featured
  .property-grid
  .property
  a
  .area-meta
  .price {
  display: block;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}
body
  #cherieYoung
  #bespoke
  #featured
  .property-grid
  .property
  a
  .area-meta
  .beds,
body
  #cherieYoung
  #bespoke
  #featured
  .property-grid
  .property
  a
  .area-meta
  .baths,
body
  #cherieYoung
  #bespoke
  #featured
  .property-grid
  .property
  a
  .area-meta
  .sqft {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  padding: 0px 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: "Poppins", sans-serif;
  font-weight: 200;
  margin-bottom: 10px;
}
body #cherieYoung #bespoke #featured .property-grid .property a img {
  object-fit: cover;
  -o-object-fit: cover;
  min-height: 100%;
  /* min-width: 100%; */
  margin: 0 !important;
}
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(1, 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 h2 {
    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 {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0px;
}
body #cherieYoung #bespoke .socials-IG h2 {
  padding: 30px 0 60px;
  color: black;
}
@media (max-width: 790px) {
  body #cherieYoung #bespoke .socials-IG h2 {
    font-size: 3rem;
  }
}
@media (max-width: 320px) {
  body #cherieYoung #bespoke .socials-IG h2 {
    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-IG .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 h2 {
  padding-top: 30px;
  color: white;
  margin-bottom: 20px;
}
@media (max-width: 790px) {
  body #cherieYoung #bespoke .socials-GR h2 {
    font-size: 3rem;
  }
}
@media (max-width: 320px) {
  body #cherieYoung #bespoke .socials-GR h2 {
    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;
}
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;
    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: left;
  gap: 15px;
  background: #f5f5f5;
}
@media (max-width: 991px) {
  body #cherieYoung #bespoke .contact .contact-content > div {
    width: 100% !important;
  }
}
/* body #cherieYoung #bespoke .contact .contact-content .contact-info {
            background: #000; } */
body #cherieYoung #bespoke .contact .contact-content .contact-info img {
  /* max-width: 330px; */
  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: "Poppins", sans-serif;
}
  .bespoke-social-icons {
  display: flex;
  gap: 12px;
  /* justify-content: center; */
  padding: 0;
  list-style: none;
}
  .bespoke-social-icons
  a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #43c6e7;
  border: 1px solid #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}
  .bespoke-social-icons
  a
  i {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}
  .bespoke-social-icons
  a:hover {
  background: #00cafd;
}
  .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: 0px;
  justify-content: center;
}
@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;
  text-align: center;
}
@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
  h2 {
  color: #1b1b1b;
  text-transform: none;
  text-align: center;
  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%;
  max-width: 500px;
}
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;
}

/*---------------------///////////////////////////////////////////    header code///////////////////////----------------------------------*/
header {
  position: fixed;
  z-index: 10;
  padding: 20px 0;
  width: 100%;
  top: 0;
  background: linear-gradient(
    180deg,
    rgba(25, 25, 25, 0.7) 1.31%,
    rgba(25, 25, 25, 0.0001) 100%
  );
}
#logo {
  max-width: 400px;
}
.scrolled {
  background: #fff;
  transition: background-color 0.3s ease;
}

header.scrolled > div > div > #logo2 {
  max-width: 130px;
  transition: background-color 0.3s ease;
}

header.scrolled > div > div > #logo {
  max-width: 145px;
  transition: background-color 0.3s ease;
}
#logo > a > img {
  max-width: 300px;
}
header.scrolled > div > div {
  min-height: 90px;
}
.uk-notouch .menu-list .menu-list__link:hover,
.uk-notouch .menu-list .menu-list__link:focus {
  color: #fff;
  background: #3e547b;
}
.grid--center {
  align-items: center;
  justify-content: center;
}
.main-menu {
  font-size: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: space-evenly;
}
.main-menu-item {
  position: relative;
  /* display: inline-block; */
  padding-right: 0px;
  line-height: 1.25;
  text-align: left;
  margin-top: 4px;
  list-style: none;
}
.main-menu-item > .menu-link {
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  text-transform: uppercase;
  text-decoration: none;
  margin-left: 10px;
  font-size: 18px;
  font-family: "Josefin Sans", Sans-serif !important;
}
header.scrolled .main-menu-item > .menu-link {
  color: #3e547b;
}
.menu-list .menu-list__link {
  display: block;
  color: #000;
  font-size: 14px;
  padding: 4px 8px;
  text-decoration: none;
  font-family: "Josefin Sans", Sans-serif;
}
.uk-notouch .menu-list .menu-list__link:hover,
.uk-notouch .menu-list .menu-list__link:focus {
  color: #fff;
  background: #3e547b;
}
.sub-menu-link {
  font-weight: 600;
}
.main-sub-menu,
.sub-menu {
  list-style: none;
  padding-left: 0;
}
.link-list__item,
#inner-viewport > div > div.site-nav-container > div > div > div > ul > li,
#inner-viewport
  > div
  > div.site-nav-container
  > div
  > div
  > div
  > ul
  > li.link-list__item {
  list-style: none !important;
}
.py-12,
ul.uk-list > li.link-list__item > div,
#inner-viewport
  > div
  > div.site-nav-container
  > div
  > div
  > div
  > ul
  > li
  > div,
#inner-viewport
  > div
  > div.site-nav-container
  > div
  > div
  > div
  > ul
  > li.link-list__item
  > div {
  display: flex !important;
  gap: 5px;
}
ul.uk-list > li.link-list__item > a,
#inner-viewport > div > div.site-nav-container > div > div > div > ul > li > a,
#inner-viewport
  > div
  > div.site-nav-container
  > div
  > div
  > div
  > ul
  > li.link-list__item
  > a {
  text-decoration: none !important;
  color: #000;
  display: flex !important;
  gap: 5px;
}

.navbar-holder .navbar #main-nav-container > ul > li .sub-menu {
  position: absolute;
  opacity: 0;
  padding: 0;
  top: 100%;
  left: 0;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
  list-style: none;
  background: #fff;
}
.navbar-holder .navbar #main-nav-container > ul > li .sub-menu li {
  border-bottom: rgba(0, 0, 0, 0.1);
}
.navbar-holder .navbar #main-nav-container > ul > li .sub-menu li a {
  color: #000;
  font-size: 15px;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
  padding: 10px 50px 10px 20px;
  text-decoration: none;
  font-weight: 600;
  -webkit-transition: 300ms ease all;
  transition: 300ms ease all;
}
.navbar-holder .navbar #main-nav-container > ul > li .sub-menu li a:hover {
  color: #fff;
  background: #000;
}
.navbar-holder .navbar #main-nav-container > ul > li:last-child .sub-menu {
  left: auto;
  right: 0;
}
.navbar-holder .navbar #main-nav-container > ul > li:hover .sub-menu {
  opacity: 1;
}

.bt-ccomp[data-bt-ccomp="dropdown"].bt-ccomp--active .bt-ccomp__content,
.bt-ccomp.bt-ccomp__dropdown.bt-ccomp--active .bt-ccomp__content {
  display: block;
  animation: bt-drop 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.bt-ccomp[data-bt-ccomp="dropdown"] .bt-ccomp__content,
.bt-ccomp[data-bt-ccomp="dropdown"] .bt-react-dropdown__content,
.bt-ccomp.bt-ccomp__dropdown .bt-ccomp__content,
.bt-ccomp.bt-ccomp__dropdown .bt-react-dropdown__content {
  background: #fff;
  position: absolute;
  top: 100%;
  min-width: 240px;
  max-width: 250px;
  left: 0;
  padding: 12px;
  border: 1px solid #999;
  box-shadow:
    inset 0 -2px 4px -1px rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  text-align: left;
  z-index: 902;
  margin-top: 8px;
  display: none;
}
.bt-ccomp .bt-ccomp__content {
  white-space: normal;
}
.bt-ccomp[data-bt-ccomp="dropdown"] .bt-ccomp__content:before,
.bt-ccomp[data-bt-ccomp="dropdown"] .bt-react-dropdown__content:before,
.bt-ccomp.bt-ccomp__dropdown .bt-ccomp__content:before,
.bt-ccomp.bt-ccomp__dropdown .bt-react-dropdown__content:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: -5px;
  left: 10px;
  background: #fff;
  transform: rotate(135deg);
  border-bottom-left-radius: 5px;
  border: 1px solid #999;
  border-right: none;
  border-top: none;
}
@media (max-width: 1200px) {
  .main-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  #logo {
    position: relative;
    left: auto;
    transform: none;
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
}
@media (max-width: 991px) {
  header#top {
    display: none;
  }
  .header-mobile {
    background-color: #292828;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }
  .header-mobile.internal {
    position: relative;
  }
  .logo {
    display: inline-block;
    font-size: 60px;
    margin-left: 20px;
    margin-top: 0;
  }
  .logo img {
    vertical-align: initial;
    max-width: 200px;
    max-height: 60px;
    margin-top: 10px;
  }
  .nav {
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: #292828;
    overflow: hidden;
  }
  .mobile-menu-class {
    padding-left: 0;
    margin-bottom: 0;
  }
  .mobile-menu-class a {
    display: block;
    padding: 20px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 16px;
    color: #fff;
  }
  .mobile-menu-class a:hover {
    background-color: #555;
  }
  .nav {
    max-height: 0;
    -webkit-transition: max-height 0.5s ease-out;
    transition: max-height 0.5s ease-out;
  }
  .hamb {
    cursor: pointer;
    float: right;
    padding: 40px 20px;
  }
  .hamb-line {
    background: #fff;
    display: block;
    height: 2px;
    position: relative;
    width: 24px;
  }
  .hamb-line::before,
  .hamb-line::after {
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    width: 100%;
  }
  .hamb-line::before {
    top: 5px;
  }
  .hamb-line::after {
    top: -5px;
  }
  .side-menu {
    display: none;
  }
  .side-menu:checked ~ nav {
    max-height: 100vh;
  }
  .side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
  }
  .side-menu:checked ~ .hamb .hamb-line::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 0;
  }
  .side-menu:checked ~ .hamb .hamb-line::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0;
  }
  #inner-viewport
    > div
    > div.site-nav-container
    > div
    > div
    > div
    > ul
    > li.link-list__item.at-main-menu__contact-agent
    > a
    > div,
  #inner-viewport
    > div
    > div.site-nav-container
    > div
    > div
    > div
    > ul
    > li.link-list__item.at-main-menu__search
    > a
    > div,
  #inner-viewport
    > div
    > div.site-nav-container
    > div
    > div
    > div
    > ul
    > li.link-list__item.at-main-menu__home
    > a
    > div,
  #inner-viewport
    > div
    > div.site-nav-container
    > div
    > div
    > div
    > ul
    > li.link-list__item.at-main-menu__site-menu
    > a
    > div,
  #inner-viewport
    > div
    > div.site-nav-container
    > div
    > div
    > div
    > ul
    > li.link-list__item.at-main-menu__sign-in
    > a
    > div {
    color: #3e547b;
    font-weight: 600;
  }
  .bt-header__mobile {
    display: block !important;
    height: auto;
  }
  #inner-viewport {
    padding-top: 0;
  }
  #inner-viewport
    > div
    > div.bt-header__mobile.py-4.px-12
    > div
    > div:nth-child(1)
    > a
    > img.bt-inner-logo {
    max-width: 200px;
    max-height: none;
  }
  #inner-viewport
    > div
    > div.bt-header__mobile.py-4.px-12
    > div
    > div:nth-child(1)
    > a
    > img.hero-logo {
    width: 40%;
  }
}
@media (min-width: 992px) {
  .header-mobile {
    display: none;
  }
  .hamb {
    display: none;
  }
}
@media (max-width: 991px) {
  header {
    display: none;
  }
  .fa-bars:before {
    font-size: 30px;
    color: #fff;
    content: "" !important;
  }
}
/*---------------------///////////////////////////////////////////    header code    end      ///////////////////////----------------------------------*/
/*---------------------///////////////////////////////////////////    adjustment      ///////////////////////----------------------------------*/
#footer{
  background-color: #f5f5f5;
}
.form__textarea,
.form__input{
  width: 100%;
  border-top: none;
  border-left: none;
  border-right: none;
}
.form__label{
  text-align: left;
}
.container{
  max-width: 100%;
}
form > div.form__10dlc,
.btgf-submit{
  margin-top: 20px;
}
.cell{
  flex: none;
}
#inner-viewport > div > div.bt-header__mobile.py-4.px-12 > div > div.cell.text-xs--right.cell-xs-2 > a{
  color: #fff;
}
#main-top > .container > div > div,
#main-top > .container > div{
  width: 100%;
  margin: 0;
  max-width: 100%;
  padding: 0;
}
#featured > div > div > div > div > div.grid.grid--center.mb-16 > div.cell.uk-text-right{
  display: none;
}
#featured > div > div > div > div > div:nth-child(2) > div > div{
  justify-content: center;
}
#bt-mobile-nav-injected > div > div > div:nth-child(1) > a > img{
  max-width: 200px;
}
#bt-mobile-nav-injected > div > div > div.cell.text-xs--right.cell-xs-2{
  position: absolute;
  right: 35px;
}
.featured-tiles > a > .featured-tile-content{
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}
.form__textarea, .form__input {
  border-radius: 10px;
}
#eapps-instagram-feed-3 > div > div.eapps-instagram-feed-title-container > div{
  display: none!important;
}




.custom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative; /* needed for absolute logo */
  padding: 0 0px;
}

/* LEFT + RIGHT */
.nav-left,
.nav-right {
  flex: 1 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav-left {
  justify-content: flex-start;
  padding-right: 140px; /* 👈 space before logo */
}

.nav-right {
  justify-content: flex-end;
  padding-left: 140px; /* 👈 space before logo */
}

/* LOGO (true center on large screens) */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-logo img {
  max-width: 180px;
}

/* LINKS */
.custom-nav a {
  white-space: nowrap;
}

/* 🔥 When wrapping starts */
@media (max-width: 1364px) {
  /* .nav-logo {
    position: relative;
    left: auto;
    transform: none;
    width: 100%;
    order: -1;
    text-align: center;
    margin-bottom: 10px;
  } */

  .nav-left{
    padding: 0 12% 0 0;
  }
  .nav-right {
    padding: 0 0 0 12%;
  }
}

/* smaller screens */
@media (max-width: 1200px) {
  .nav-logo img {
    max-width: 140px;
  }
}

@media (max-width:500px) {
  #inner-viewport > div > div.bt-header__mobile.py-4.px-12 > div > div:nth-child(1){
    width: fit-content;
  }
  #inner-viewport > div > div.bt-header__mobile.py-4.px-12 > div > div:nth-child(1) > a{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  #inner-viewport > div > div.bt-header__mobile.py-4.px-12 > div > div.cell.text-xs--right.cell-xs-2{
    width: fit-content;
    margin-top: 20px;
  }
  #inner-viewport > div > div.bt-header__mobile.py-4.px-12 > div{
    justify-content: space-around;
  }
}