/*-- -------------------------- -->
<---         Hero 1469          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1469 {
    /* 200px - 288px - leaving extra space for the navigation */
    padding: clamp(12.5rem, 29.95vw, 18rem) 1rem 0;
    /* 100px - 288px */
    padding-bottom: clamp(6.25rem, 20vw, 18rem);
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1469:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #f0f4ed;
    opacity: 0.9;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }
  #hero-1469 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #hero-1469 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 38.5rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #hero-1469 .cs-topper {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1.6vw, 1rem);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    display: block;
  }
  #hero-1469 .cs-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 20ch;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
  }
  #hero-1469 .cs-text {
    /* 16px - 24px */
    font-size: clamp(1rem, 2.3vw, 1.25rem);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    /* 32px - 40px */
    margin: 0 0 clamp(2rem, 4vw, 2.5rem) 0;
    color: var(--bodyTextColor);
  }
  #hero-1469 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-1469 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* makes the top of the image start at the top of the parent */
    object-position: top;
  }
  #hero-1469 .cs-hide {
    display: none;
  }
  #hero-1469 .cs-curve {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-1469:before {
    background: linear-gradient(89deg, rgba(240, 244, 237, 0.9) 44.46%, rgba(240, 244, 237, 0) 78.47%);
    opacity: 1;
  }
  #hero-1469 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #hero-1469 .cs-content {
    width: 67%;
    text-align: left;
    align-items: flex-start;
  }
  #hero-1469 .cs-hide {
    display: block;
    position: absolute;
    z-index: 10;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-1469 .cs-flower {
    display: block;
    left: -3.5rem;
    /* 150px - 280px */
    top: clamp(9.375rem, 10vw, 17.5rem);
  }
}
/* Large Desktop Parallax Effect - 1600px */
@media only screen and (min-width: 100rem) {
  #hero-1469 .cs-background {
    background: url("/assets/images/hero-1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #hero-1469 .cs-background img {
    display: none;
  }
}
/* Dark Mode - 360px */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-1469:before {
    background-color: var(--dark);
    opacity: 0.94;
  }
  body.dark-mode #hero-1469 .cs-title,
  body.dark-mode #hero-1469 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #hero-1469 .cs-text {
    opacity: 0.8;
  }
  body.dark-mode #hero-1469 .cs-curve path {
    fill: var(--dark);
  }
}
/* Dark Mode - 768px */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-1469 {
    background-color: var(--dark);
  }
  body.dark-mode #hero-1469:before {
    background: linear-gradient(to right, #000000 0%, #000000 15%, #000000 23%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.8;
  }
  body.dark-mode #hero-1469 .cs-background {
    opacity: 0.2;
  }
}
