/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
[class*="fade-"] {
  opacity: 0;
  will-change: opacity, transform;
  animation-play-state: paused;
  backface-visibility: hidden;
  perspective: 1000px;
  /* Ensure animations stay at their end state */
  animation-fill-mode: forwards !important; }

/* Pre-animation state handling */
[class*="fade-"][class$="-pre"] {
  /* Already set to opacity: 0 by the base class */
  /* This class will be removed by JS when element becomes visible */ }

/* Animation active state - universal for all elements */
[class*="fade-"].fade-in,
[class*="fade-"][class$="-active"] {
  animation-play-state: running;
  animation-duration: var(--anim-duration, 0.8s);
  animation-delay: var(--anim-delay, 0s);
  animation-timing-function: var(--anim-easing, cubic-bezier(0.25, 0.1, 0.25, 1));
  animation-fill-mode: forwards !important;
  /* Double ensure this is set */ }

/* Standard fade in - no movement */
.fade-in {
  animation-name: fadeIn; }

/* Directional animations */
.fade-up, .fade-up-active {
  animation-name: fadeUp;
  /* No initial transform - keyframes handle it all */ }

.fade-down, .fade-down-active {
  animation-name: fadeDown; }

.fade-left, .fade-left-active {
  animation-name: fadeLeft; }

.fade-right, .fade-right-active {
  animation-name: fadeRight; }

.fade-scale, .fade-scale-active {
  animation-name: fadeScale; }

.fade-scale-up, .fade-scale-up-active {
  animation-name: fadeScaleUp; }

/* Keyframes with explicit final state for all animations */
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(30px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-30px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.9); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes fadeScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(30px); }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0); } }
/* Utility classes for customization */
.delay-100 {
  --anim-delay: 0.1s; }

.delay-200 {
  --anim-delay: 0.2s; }

.delay-300 {
  --anim-delay: 0.3s; }

.delay-400 {
  --anim-delay: 0.4s; }

.delay-500 {
  --anim-delay: 0.5s; }

.delay-800 {
  --anim-delay: 0.8s; }

.delay-1000 {
  --anim-delay: 1s; }

.duration-300 {
  --anim-duration: 0.3s; }

.duration-500 {
  --anim-duration: 0.5s; }

.duration-800 {
  --anim-duration: 0.8s; }

.duration-1000 {
  --anim-duration: 1s; }

.duration-1500 {
  --anim-duration: 1.5s; }

.duration-2000 {
  --anim-duration: 2s; }

.ease-linear {
  --anim-easing: linear; }

.ease-in {
  --anim-easing: cubic-bezier(0.42, 0, 1.0, 1.0); }

.ease-out {
  --anim-easing: cubic-bezier(0, 0, 0.58, 1.0); }

.ease-in-out {
  --anim-easing: cubic-bezier(0.42, 0, 0.58, 1.0); }

.ease-bounce {
  --anim-easing: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

/* Accessibility - reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  [class*="fade-"] {
    transition: opacity 0.1s ease-in-out !important;
    animation: none !important;
    transform: none !important; }

  .fade-in,
  [class*="fade-"][class$="-active"] {
    opacity: 1; } }
/* Lazy loading image styles */
.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out; }
  .lazy.fade-in {
    opacity: 1; }

#cherieYoung {
  width: 100%;
  opacity: 1 !important; }
  #cherieYoung #buy-sell {
    width: 100%;
    position: relative;
    overflow: hidden; }
    #cherieYoung #buy-sell h1 {
      font-family: "Montserrat", sans-serif;
      font-size: 4rem;
      font-weight: 300;
      color: #647783;
      text-align: center;
      margin-bottom: 0;
      margin-top: -10px;
      line-height: 95%;
      text-transform: uppercase; }
      @media (max-width: 1200px) {
        #cherieYoung #buy-sell h1 {
          font-size: 3rem; } }
      @media (max-width: 800px) {
        #cherieYoung #buy-sell h1 {
          font-size: 2.5rem; } }
    #cherieYoung #buy-sell h2 {
      font-family: "Montserrat", sans-serif;
      font-size: 2rem;
      font-weight: 400;
      color: #111;
      text-align: center;
      margin-bottom: 25px;
      margin-top: 0; }
      @media (max-width: 1200px) {
        #cherieYoung #buy-sell h2 {
          font-size: 1.75rem; } }
      @media (max-width: 800px) {
        #cherieYoung #buy-sell h2 {
          font-size: 1.5rem; } }
    #cherieYoung #buy-sell h3 {
      font-family: "Montserrat", sans-serif;
      font-size: 1.5rem;
      font-weight: 300;
      color: #111;
      text-align: center; }
      @media (max-width: 1200px) {
        #cherieYoung #buy-sell h3 {
          font-size: 1.5rem; } }
      @media (max-width: 800px) {
        #cherieYoung #buy-sell h3 {
          font-size: 1.5rem; } }
    #cherieYoung #buy-sell h4 {
      font-family: "Montserrat", sans-serif;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 1.5rem;
      font-weight: 300;
      margin: 0px 0 38px; }
    #cherieYoung #buy-sell p {
      font-family: "Montserrat", sans-serif;
      font-size: 1.1rem;
      font-weight: 300;
      color: #111;
      text-align: left;
      line-height: 1.3; }
    #cherieYoung #buy-sell .container {
      max-width: 1100px;
      width: 100%;
      margin: 0 auto;
      padding: 30px 15px; }
    #cherieYoung #buy-sell #cta_buttons {
      background-color: white; }
      #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 16px;
        max-width: 100%;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 30px 15px;
        box-sizing: border-box; }
        #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile {
          grid-column: span 4;
          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: 450px; }
          #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile:hover::before {
            background-color: rgba(0, 0, 0, 0.4);
            transition: 0.5s; }
          #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile::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; }
          #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile a {
            border-radius: 10px;
            text-align: center;
            display: inline-block;
            color: #fff !important;
            padding: 10px;
            transition: 0.5s;
            margin-top: 25px;
            font-weight: 400;
            box-sizing: border-box;
            overflow: hidden;
            position: relative;
            z-index: 1;
            text-decoration: none;
            font-size: 17px;
            font-family: "Montserrat", sans-serif; }
            #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile a .title {
              font-family: "Montserrat", Georgia, serif;
              font-size: 28px;
              text-align: center;
              margin-bottom: 45px;
              display: block;
              line-height: 1;
              position: relative;
              z-index: 9; }
              #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile a .title > span {
                color: #e77777; }
            #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile a p {
              color: #fff;
              padding: 0 20px;
              text-align: center;
              font-weight: 400; }
            #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile a .title small {
              display: block;
              font-size: 16px;
              font-weight: 400;
              font-family: "Montserrat", "Open Sans", Helvetica, sans-serif;
              letter-spacing: 4px;
              margin-bottom: 10px;
              text-transform: uppercase; }
            #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile a span.btn {
              display: inline-block;
              background: #fff;
              color: #222;
              padding: 10px 30px;
              position: relative;
              z-index: 9;
              height: fit-content;
              font-weight: initial !important;
              text-transform: initial;
              border-radius: 4px;
              cursor: pointer;
              margin-top: 30px; }
              #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile a span.btn:hover {
                text-decoration: none;
                background: #e77777;
                color: #fff;
                transition: all 0.5s ease-in-out; }
        @media (max-width: 1024px) {
          #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile {
            grid-column: span 6; }
          #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile:last-child {
            grid-column: span 12 !important; } }
        @media (max-width: 767px) {
          #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles {
            padding: 30px 0px 0px !important; }
            #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles .tile {
              grid-column: span 12;
              min-height: 350px; }
            #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles a .title {
              font-size: 28px;
              margin-bottom: 30px; }
            #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles a .title small {
              font-size: 14px;
              letter-spacing: 2px; }
            #cherieYoung #buy-sell #cta_buttons .cta_buttons-content .cta_buttons-tiles span.btn {
              padding: 8px 20px;
              font-size: 15px; } }
