@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");
/**
 * 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 */
/* Show reCAPTCHA badge */
.grecaptcha-badge{
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.bt-disclaimer-terms{
  display: block !important;
}
.bt-page-header{display: none;}
.visible-after-animation {
  opacity: 1 !important; }
@media (min-width: 1220px) {section.bt-content-wrapper.px--safe div.container{width: 100%;max-width: 100%; padding: 0;}}
.bt-content-wrapper {
	padding:  0; 
	overflow: visible;
}
[class*=fade-] {
  opacity: 0;
  will-change: opacity,transform;
  animation-play-state: paused;
  backface-visibility: hidden;
  perspective: 1000px;
  animation-fill-mode: forwards !important; }

[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; }

.fade-in {
  animation-name: fadeIn;
  background-position: center !important;
  background-size: cover !important; }

.fade-up, .fade-up-active {
  animation-name: fadeUp; }

.fade-down, .fade-down-active {
  animation-name: fadeDown; }

.fade-down-large, .fade-down-large-active {
  animation-name: fadeDownLarge; }

.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 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 fadeDownLarge {
  0% {
    opacity: 0;
    transform: translateY(-1000px); }
  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); } }
.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); }

@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 {
  opacity: 0;
  transition: opacity .5s ease-in-out; }

html {
  font-size: 16px; }
.contact {
  background-color: #000; }
  .contact .contact-content {
    max-width: 100%;
    margin: auto;
    display: flex;
    flex-direction: row; }
    @media (max-width: 991px) {
      .contact .contact-content {
        flex-direction: column;
        gap: 30px; } }
    .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;
      box-sizing: border-box; }
      @media (max-width: 991px) {
        .contact .contact-content > div {
          width: 100% !important; } }
    .contact .contact-content .contact-info {
      background: #000; }
      .contact .contact-content .contact-info img {
        /*filter: brightness(0)invert(1);*/
        width: 700px;
        max-width: 100%;
        margin-bottom: 10px; }
        .contact .contact-content .contact-info img._no-filter {
          filter: none !important;
          max-width: 330px; }
      .contact .contact-content .contact-info a {
        color: white;
        text-decoration: none;
        font-size: 1rem;
        letter-spacing: 2px;
        font-family: "Poppins", sans-serif !important; }
      .contact .contact-content .contact-info .share-links .sn {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; }
      .contact .contact-content .contact-info .bespoke-social-icons {
        display: flex;
        gap: 12px;
        justify-content: center;
        padding: 0;
        list-style: none; }
        .contact .contact-content .contact-info .bespoke-social-icons a {
          display: flex;
          align-items: center;
          justify-content: center;
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background: #000;
          border: 1px solid #fff;
          text-decoration: none;
          transition: all 0.3s ease; }
          .contact .contact-content .contact-info .bespoke-social-icons a i {
            color: #fff;
            font-size: 16px;
            transition: color 0.3s ease; }
          .contact .contact-content .contact-info .bespoke-social-icons a:hover {
            background: #fff; }
            .contact .contact-content .contact-info .bespoke-social-icons a:hover i {
              color: #000; }
    .contact .contact-content .contact-form .contact-form-content {
      display: flex;
      width: 100%;
      flex-direction: row;
      padding-top: 30px; }
      @media (max-width: 578px) {
        .contact .contact-content .contact-form .contact-form-content {
          flex-direction: column; } }
      .contact .contact-content .contact-form .contact-form-content .contact-form-info {
        width: 50%;
        color: #1B1B1B !important;
        padding-top: 30px; }
        @media (max-width: 578px) {
          .contact .contact-content .contact-form .contact-form-content .contact-form-info {
            width: 100%; } }
        .contact .contact-content .contact-form .contact-form-content .contact-form-info p {
          font-family: "Poppins", sans-serif !important;
          font-size: 1rem;
          font-weight: 300;
          margin-bottom: 0;
          margin-top: 0;
          text-align: left !important;
          color: #1B1B1B !important; }
        .contact .contact-content .contact-form .contact-form-content .contact-form-info a {
          color: #1B1B1B !important;
          text-decoration: none !important; }
        .contact .contact-content .contact-form .contact-form-content .contact-form-info h4 {
          margin: 20px 0 0 !important;
          text-align: left !important;
          text-transform: capitalize !important;
          font-weight: 400 !important;
          font-family: "Montserrat", sans-serif !important;
          letter-spacing: normal !important;
          font-size: 1rem !important;
          color: #1B1B1B !important; }
        .contact .contact-content .contact-form .contact-form-content .contact-form-info h1 {
          font-family: "Belleza", serif !important;
          font-size: 4rem;
          font-weight: 300;
          color: #1B1B1B !important;
          text-align: left !important;
          margin-bottom: 30px;
          margin-top: -10px;
          line-height: 95%;
          text-transform: none !important; }
          @media (max-width: 1200px) {
            .contact .contact-content .contact-form .contact-form-content .contact-form-info h1 {
              font-size: 3rem; } }
          @media (max-width: 800px) {
            .contact .contact-content .contact-form .contact-form-content .contact-form-info h1 {
              font-size: 2.5rem; } }
      .contact .contact-content .contact-form .contact-form-content .contact-form-image {
        width: 50%;
        padding: 0 15px; }
        @media (max-width: 578px) {
          .contact .contact-content .contact-form .contact-form-content .contact-form-image {
            width: 100%;
            padding: 0;
            text-align: center; } }
        .contact .contact-content .contact-form .contact-form-content .contact-form-image img {
          max-width: 100%;
          width: 315px; }
    .contact .contact-content .contact-form .contact-form-inject {
      width: 100%; }
      .contact .contact-content .contact-form .contact-form-inject > div > div > h2 {
        display: none; }
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-size: 4rem;
        font-weight: 300;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
        margin-top: -10px;
        line-height: 95%;
        text-transform: uppercase; }
        @media (max-width: 1200px) {
          body #cherieYoung #bespoke h1 {
            font-size: 3rem; } }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke h1 {
            font-size: 2.5rem; } }
      body #cherieYoung #bespoke h2 {
        font-family: "Belleza", serif;
        font-size: 3rem;
        font-weight: 300;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
        margin-top: 0; }
        @media (max-width: 1200px) {
          body #cherieYoung #bespoke h2 {
            font-size: 2.25rem; } }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke h2 {
            font-size: 2rem; } }
      body #cherieYoung #bespoke h3 {
        font-family: "Belleza", serif;
        font-size: 1.5rem;
        font-weight: 300;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
        margin-top: 0; }
        @media (max-width: 1200px) {
          body #cherieYoung #bespoke h3 {
            font-size: 1.5rem; } }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke h3 {
            font-size: 1.5rem; } }
      body #cherieYoung #bespoke h4 {
        font-family: "Belleza", serif;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 1.5rem;
        font-weight: 300;
        color: #6d6d6d;
        margin: 0px 0 38px; }
      body #cherieYoung #bespoke p {
        font-family: "Poppins", sans-serif;
        font-size: 1rem;
        font-weight: 300;
        color: #fff;
        text-align: center;
        margin-bottom: 0;
        margin-top: 0; }
 body #cherieYoung #bespoke .welcome {
        padding: 90px 0 60px;
        background-color: white;
        position: relative; }
        @media (max-width: 800px) {
          body #cherieYoung #bespoke .welcome {
            padding: 60px 0 30px; } }
        body #cherieYoung #bespoke .welcome .welcome-content {
          max-width: 1350px;
          margin: auto;
          display: flex;
          justify-content: center;
          align-items: start;
          gap: 60px;
          padding: 0 50px 0 30px; }
          body #cherieYoung #bespoke .welcome .welcome-content h1 {
            padding-bottom: 15px;
            font-family: "Belleza", serif !important;
            color: #1B1B1B;
            text-align: left; }
            body #cherieYoung #bespoke .welcome .welcome-content h1 span {
              font-weight: bold;
              color: #111;
              transition: .5s;
              font-size: 18px; }
          body #cherieYoung #bespoke .welcome .welcome-content p {
            color: #1B1B1B;
            text-align: left;
            margin-bottom: 15px; }
          body #cherieYoung #bespoke .welcome .welcome-content h4 {
            font-family: "Belleza", serif !important;
            font-size: 2.5rem;
            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 img{width:428px; max-width: 100%;}
            @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: 0px;
            position: relative;
            /*@media(max-width:991px){padding-left: 30px;}
             @media(max-width:750px){padding-left: 20px;}*/ }
            body #cherieYoung #bespoke .welcome .welcome-content div.welcome-text-wrapper div.tagline.left {
              color: #6d6d6d;
              font-family: "Belleza", serif !important;
              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%;
              text-align: left; }
          body #cherieYoung #bespoke .welcome .welcome-content img {
            width: 100%; }
          body #cherieYoung #bespoke .welcome .welcome-content .toggle-button {
            font-family: "Montserrat", sans-serif !important;
            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; }
            body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a {
              font-family: "Montserrat", sans-serif !important;
              font-size: 1.3rem;
              font-weight: 300;
              color: #111;
              text-align: center;
              padding: .5rem 2rem;
              background-color: rgba(0, 0, 0, 0);
              border-radius: 0;
              text-decoration: none;
              transition: all .3s ease-in-out;
              position: relative;
              border: 1px solid #000; }
              body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a:hover {
                background-color: black;
                border: 1px solid #fff;
                color: #fff; }
              body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a:hover span {
                color: #000000;
                transition: .5s; }
              body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta a span {
                font-weight: bold;
                color: #111;
                transition: .5s; }
            @media (max-width: 800px) {
              body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta {
                justify-content: center;
                margin-left: -30px; } }
            @media (max-width: 786px) {
              body #cherieYoung #bespoke .welcome .welcome-content .welcome-cta {
                flex-direction: column;
                gap: 10px;
                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 h1 {
            color: #000; }
body #cherieYoung #bespoke .socials-IG {
        background-color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 0px; }
        body #cherieYoung #bespoke .socials-IG h1 {
          padding-top: 30px;
          padding-bottom: 30px;
          color: black; }
          @media (max-width: 790px) {
            body #cherieYoung #bespoke .socials-IG h1 {
              font-size: 3rem; } }
          @media (max-width: 320px) {
            body #cherieYoung #bespoke .socials-IG h1 {
              font-size: 2.5rem; } }
        body #cherieYoung #bespoke .socials-IG h3 {
          color: black; }
        body #cherieYoung #bespoke .socials-IG .social-feed {
          padding: 60px 0;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column;
          width: 100%; }
          body #cherieYoung #bespoke .socials-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 h1 {
          padding-top: 30px;
          color: white;
          margin-bottom: 20px; }
          @media (max-width: 790px) {
            body #cherieYoung #bespoke .socials-GR h1 {
              font-size: 3rem; } }
          @media (max-width: 320px) {
            body #cherieYoung #bespoke .socials-GR h1 {
              font-size: 2.5rem; } }
        body #cherieYoung #bespoke .socials-GR h3 {
          color: white; }
        body #cherieYoung #bespoke .socials-GR img {
          width: 270px; }
        body #cherieYoung #bespoke .socials-GR .social-feed {
          width: 100%;
          padding-top: 30px;
          padding-bottom: 0px;
          display: flex;
          justify-content: center;
          align-items: center;
          flex-direction: column; }
          body #cherieYoung #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: .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; }
