@import url("https://fonts.googleapis.com/css2?family=Belleza&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/*@import "~@fortawesome/fontawesome-free/css/all.min.css";*/
html {
  font-size: 16px; }

.belleza-regular {
  font-family: "Belleza", sans-serif;
  font-weight: 400;
  font-style: normal; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0; }

.center {
  text-align: center !important; }

.visible-after-animation {
  opacity: 1 !important; }

/* SIERRA */
.container-fluid {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0; }

.main-content {
  padding-bottom: 0;
  overflow: hidden; }

body > div.clearfix {
  display: none; }

.top-strip {
  display: none; }

header.fixed {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1015;
  background: transparent;
  box-shadow: none; }

header.fixed .logo {
  text-align: center !important;
  top: 27px; }

header.fixed.reduced .logo {
  top: 0px;
  left: 15px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all; }

@media (max-width: 600px) {
  header.fixed .logo {
    display: none; }

  header.fixed.reduced .logo {
    display: block; } }
.si-content-label__title {
  font-family: "Belleza", serif;
  font-size: 2rem;
  font-weight: 300;
  color: #111 !important;
  text-align: center; }
  @media (max-width: 1200px) {
    .si-content-label__title {
      font-size: 1.25rem; } }
  @media (max-width: 800px) {
    .si-content-label__title {
      font-size: 1rem; } }

.si-content-label__body {
  background-color: #fff; }

header.fixed.reduced {
  background-color: var(--si-secondary-color);
  box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.3);
  -webkit-transition: 0.2s all;
  transition: 0.2s all; }

header.fixed > .container > .dynamic-nav {
  padding-top: 30px; }

header.fixed.reduced > .container > .dynamic-nav {
  padding-top: 0px; }

/**
 * Modern Animation System
 * - Optimized for performance
 * - Supports delays and custom durations
 * - Uses will-change for hardware acceleration
 * - Prevents layout thrashing
 */
/* Base animation settings - universal for all fade animations */
[class*="fade-"] {
  opacity: 0;
  will-change: opacity, transform;
  animation-play-state: paused;
  backface-visibility: hidden;
  perspective: 1000px;
  /* Ensure animations stay at their end state */
  animation-fill-mode: forwards !important; }

/* Pre-animation state handling */
[class*="fade-"][class$="-pre"] {
  /* Already set to opacity: 0 by the base class */
  /* This class will be removed by JS when element becomes visible */ }

/* Animation active state - universal for all elements */
[class*="fade-"].fade-in,
[class*="fade-"][class$="-active"] {
  animation-play-state: running;
  animation-duration: var(--anim-duration, 0.8s);
  animation-delay: var(--anim-delay, 0s);
  animation-timing-function: var(--anim-easing, cubic-bezier(0.25, 0.1, 0.25, 1));
  animation-fill-mode: forwards !important;
  /* Double ensure this is set */ }

/* Standard fade in - no movement */
.fade-in {
  animation-name: fadeIn; }

/* Directional animations */
.fade-up, .fade-up-active {
  animation-name: fadeUp;
  /* No initial transform - keyframes handle it all */ }

.fade-down, .fade-down-active {
  animation-name: fadeDown; }

.fade-left, .fade-left-active {
  animation-name: fadeLeft; }

.fade-right, .fade-right-active {
  animation-name: fadeRight; }

.fade-scale, .fade-scale-active {
  animation-name: fadeScale; }

.fade-scale-up, .fade-scale-up-active {
  animation-name: fadeScaleUp; }

/* Keyframes with explicit final state for all animations */
@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-30px); }
  100% {
    opacity: 1;
    transform: translateY(0); } }
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(30px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(-30px); }
  100% {
    opacity: 1;
    transform: translateX(0); } }
@keyframes fadeScale {
  0% {
    opacity: 0;
    transform: scale(0.9); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes fadeScaleUp {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(30px); }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0); } }
/* Utility classes for customization */
.delay-100 {
  --anim-delay: 0.1s; }

.delay-200 {
  --anim-delay: 0.2s; }

.delay-300 {
  --anim-delay: 0.3s; }

.delay-400 {
  --anim-delay: 0.4s; }

.delay-500 {
  --anim-delay: 0.5s; }

.delay-800 {
  --anim-delay: 0.8s; }

.delay-1000 {
  --anim-delay: 1s; }

.duration-300 {
  --anim-duration: 0.3s; }

.duration-500 {
  --anim-duration: 0.5s; }

.duration-800 {
  --anim-duration: 0.8s; }

.duration-1000 {
  --anim-duration: 1s; }

.duration-1500 {
  --anim-duration: 1.5s; }

.duration-2000 {
  --anim-duration: 2s; }

.ease-linear {
  --anim-easing: linear; }

.ease-in {
  --anim-easing: cubic-bezier(0.42, 0, 1.0, 1.0); }

.ease-out {
  --anim-easing: cubic-bezier(0, 0, 0.58, 1.0); }

.ease-in-out {
  --anim-easing: cubic-bezier(0.42, 0, 0.58, 1.0); }

.ease-bounce {
  --anim-easing: cubic-bezier(0.68, -0.55, 0.265, 1.55); }

/* Accessibility - reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  [class*="fade-"] {
    transition: opacity 0.1s ease-in-out !important;
    animation: none !important;
    transform: none !important; }

  .fade-in,
  [class*="fade-"][class$="-active"] {
    opacity: 1; } }
/* Lazy loading image styles */
.lazy {
  opacity: 0;
  transition: opacity 0.5s ease-in-out; }
  .lazy.fade-in {
    opacity: 1; }

body {
  margin: 0 auto;
  padding: 0; }
  body .cy-content {
    width: 100%;
    opacity: 1 !important;
    position: relative; }
    body .cy-content h1 {
      font-family: "Belleza", serif;
      font-size: 4rem !important;
      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 .cy-content h1 {
          font-size: 3rem !important; } }
      @media (max-width: 800px) {
        body .cy-content h1 {
          font-size: 2.5rem !important; } }
    body .cy-content 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 .cy-content h2 {
          font-size: 2.25rem; } }
      @media (max-width: 800px) {
        body .cy-content h2 {
          font-size: 2rem; } }
    body .cy-content 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 .cy-content h3 {
          font-size: 1.25rem; } }
      @media (max-width: 800px) {
        body .cy-content h3 {
          font-size: 1rem; } }
    body .cy-content 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 .cy-content p {
      font-family: "Poppins", sans-serif;
      font-size: 17px;
      font-weight: 300;
      color: #fff;
      text-align: center;
      margin-bottom: 0;
      margin-top: 0; }
    body .cy-content .background-content {
      position: absolute;
      display: block;
      z-index: -1;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 60vh;
      min-height: 500px;
      filter: brightness(0.5);
      background-position: center center;
      background-size: cover; }
      @media (max-width: 1200px) {
        body .cy-content .background-content {
          background-size: cover; } }
    body .cy-content .hero {
      position: relative;
      height: 60vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      color: #fff;
      margin-top: 0px;
      min-height: 500px;
      padding-top: 95px; }
      @media (max-width: 320px) {
        body .cy-content .hero {
          height: 110vh;
          margin-top: 0; } }
      body .cy-content .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 .cy-content .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 .cy-content .hero .bottom-cta a {
              text-align: left !important;
              width: 100% !important;
              margin: auto;
              padding-left: 30px;
              padding-right: 30px;
              border-radius: 0px !important;
              font-size: .8rem; } }
        body .cy-content .hero .bottom-cta a:first-of-type {
          width: 60%;
          border-right: 1px solid white;
          text-align: center; }
        @media (max-width: 800px) {
          body .cy-content .hero .bottom-cta {
            flex-direction: column;
            gap: 0px; } }
      body .cy-content .hero .logo-container {
        position: relative;
        display: block;
        top: 0px; }
        body .cy-content .hero .logo-container img {
          display: inline-block;
          height: 200px;
          width: auto;
          margin-bottom: 20px !important; }
          @media (max-width: 800px) {
            body .cy-content .hero .logo-container img {
              height: 150px;
              margin-bottom: 30px !important; } }
          @media (max-width: 600px) {
            body .cy-content .hero .logo-container img {
              height: 100px;
              margin-bottom: 20px !important; } }
      body .cy-content .hero .hero-content {
        text-align: center;
        display: block; }
        body .cy-content .hero .hero-content img.hero-logo {
          display: inline-block;
          max-height: 80px;
          margin-bottom: 60px; }
          @media (max-width: 800px) {
            body .cy-content .hero .hero-content img.hero-logo {
              max-height: 100px;
              margin-bottom: 40px; } }
          @media (max-width: 600px) {
            body .cy-content .hero .hero-content img.hero-logo {
              max-height: 80px;
              margin-bottom: 30px; } }
        body .cy-content .hero .hero-content h1 {
          margin-top: 20px;
          margin-bottom: 27px;
          color: #fff; }
        body .cy-content .hero .hero-content p {
          font-weight: 400;
          text-transform: uppercase;
          white-space: pre-line;
          font-size: 21px;
          line-height: 1.57; }
        body .cy-content .hero .hero-content .hero-cta {
          display: flex;
          justify-content: center;
          align-items: center;
          margin-top: 2rem;
          gap: 30px; }
          @media (max-width: 800px) {
            body .cy-content .hero .hero-content .hero-cta {
              flex-direction: column;
              gap: 10px; } }
          body .cy-content .hero .hero-content .hero-cta a {
            font-family: "Montserrat", sans-serif;
            font-size: 1rem;
            font-weight: 300;
            color: #fff;
            text-align: center;
            padding: .5rem 2rem;
            background-color: rgba(0, 0, 0, 0);
            border-radius: 0;
            text-decoration: none;
            transition: all .3s ease-in-out;
            position: relative;
            border: 1px solid #fff; }
            body .cy-content .hero .hero-content .hero-cta a:hover {
              background-color: black;
              border: 1px solid #000; }
            body .cy-content .hero .hero-content .hero-cta a:hover span {
              transition: .5s; }
            body .cy-content .hero .hero-content .hero-cta a span {
              font-weight: bold;
              transition: .5s; }
            @media (max-width: 800px) {
              body .cy-content .hero .hero-content .hero-cta a {
                font-size: 1.5rem;
                width: 90%;
                margin: auto;
                padding-left: 5px;
                padding-right: 5px; } }
    body .cy-content .cy-block {
      width: 100%;
      background: #fff; }
      body .cy-content .cy-block h2 {
        color: #111 !important;
        font-family: "Belleza", serif !important;
        text-transform: none;
        margin-bottom: 20px; }
      body .cy-content .cy-block h3 {
        color: #111 !important;
        font-family: "Belleza", serif !important;
        font-weight: 400;
        text-transform: none;
        text-align: left !important;
        margin-bottom: 20px !important; }
        body .cy-content .cy-block h3.center {
          text-align: center !important; }
      body .cy-content .cy-block p {
        text-align: left !important;
        font-family: "Poppins", sans-serif !important;
        color: #111 !important; }
        body .cy-content .cy-block p.center {
          text-align: center !important; }
        body .cy-content .cy-block p.overview {
          margin-bottom: 20px; }
      body .cy-content .cy-block .cy-content-block {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        color: #111 !important;
        font-family: "Montserrat", sans-serif; }
        body .cy-content .cy-block .cy-content-block ul > li {
          margin-bottom: 0 !important;
          font-weight: 300 !important;
          font-family: "Poppins", sans-serif !important; }
      body .cy-content .cy-block .text-block {
        max-width: 1100px;
        width: 100%;
        margin: 0 auto; }
