/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1204 {
    /* 150px - 350px */
    padding: clamp(9rem, 25.95vw, 21.875rem) 1rem;
    padding-bottom: 0;
    background-color: #f7f7f7;
    position: relative;
    z-index: 1;
    /* prevents overflow from the arrow graphic */
    overflow: hidden;
  }
  #hero-1204:before {
    /* black bar */
    content: "";
    width: 100%;
    /* 100px - 200px */
    height: clamp(6.25rem, 29vw, 12.5rem);
    background: #1a1a1a;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
  }
  #hero-1204 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 48px - 64px */
    gap: clamp(3rem, 7vw, 4rem);
  }
  #hero-1204 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #hero-1204 .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  #hero-1204 .cs-title {
    /* Adjust these values to make the font smaller */
    font-size: clamp(1.5rem, 4vw, 2.5rem); /* Example: smaller range */
    font-weight: 900;
    line-height: 1.2em;
    width: 100%;
    max-width: 20ch;
    margin: 0 0 1rem;
    color: var(--headerColor);
    position: relative;
  }
  #hero-1204 .cs-text {
    font-size: 1.25rem;
    line-height: 1.5em;
    width: 100%;
    max-width: 43.75rem;
    /* 28px - 40px */
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    color: var(--bodyTextColor);
  }
  #hero-1204 .cs-button-solid {
    font-size: 1rem;
    text-align: center;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    width: 11.25rem;
    text-decoration: none;
    font-weight: 700;
    /* clips corners of the before element */
    overflow: hidden;
    margin: 0;
    color: #1a1a1a;
    padding: 0;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #hero-1204 .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero-1204 .cs-button-solid:hover {
    color: #fff;
  }
  #hero-1204 .cs-button-solid:hover:before {
    width: 100%;
  }
  #hero-1204 .cs-picture {
    width: 100%;
    /* changes to 866px at desktop */
    max-width: 34.0625rem;
    height: auto;
    display: flex;
    align-items: flex-end;
    position: relative;
  }
  #hero-1204 .cs-picture img {
    width: 100%;
    height: auto;
  }
  #hero-1204 .cs-floater {
    /* changes to 1465px at desktop */
    width: 59.6875rem;
    height: auto;
    opacity: 0.08;
    display: block;
    position: absolute;
    right: 0;
    top: 40%;
    z-index: -1;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-1204:before {
    height: 16.125rem;
  }
  #hero-1204 .cs-picture {
    width: 70%;
    max-width: 54.125rem;
  }
  #hero-1204 .cs-floater {
    width: 91.5625rem;
    top: 30%;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-1204 {
    padding-bottom: 15.625rem;
  }
  #hero-1204:before {
    height: 100%;
    width: 40vw;
    margin-left: 20.8125rem;
    left: 50%;
  }
  #hero-1204 .cs-container {
    flex-direction: row;
    justify-content: flex-start;
    /* remove the positioning so the cs-picture is now absolutely positioned to the next parent with a declared position - the #hero section container. Now we can position it off the bottom edge of the parent container */
    position: initial;
  }
  #hero-1204 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #hero-1204 .cs-picture {
    width: 54.125rem;
    height: 52.625rem;
    margin-left: 0.625rem;
    position: absolute;
    left: 50%;
    bottom: 0;
  }
  #hero-1204 .cs-picture img {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #hero-1204 .cs-floater {
    margin-right: -20.8125rem;
    top: 8.75rem;
    right: 50%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-1204 {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #hero-1204:before {
    background-color: rgba(0, 0, 0, 0.6);
  }
  body.dark-mode #hero-1204 .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #hero-1204 .cs-title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #hero-1204 .cs-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1204 {
    padding: var(--sectionPadding);
    padding-top: 0;
    padding-bottom: 0;
    position: relative;
    z-index: 10;
  }
  #services-1204 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-1204 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.5vw, 1.25rem);
  }
  #services-1204 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    max-width: 31.25rem;
    /* 16px - 32px */
    padding: clamp(1rem, 3vw, 2rem);
    background-color: #fff;
    border: 1px solid #e8e8e8;
    box-sizing: border-box;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  #services-1204 .cs-item:hover {
    background-color: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 50px;
    transform: translateY(-0.4375rem);
  }
  #services-1204 .cs-item:hover .cs-picture:before {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  #services-1204 .cs-link {
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #services-1204 .cs-picture {
    /* 60px - 80px */
    width: clamp(3.75rem, 10vw, 5rem);
    height: clamp(3.75rem, 10vw, 5rem);
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 3vw, 1.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #fff5e6;
    position: relative;
    z-index: 1;
  }
  #services-1204 .cs-icon {
    /* 32px - 40px */
    height: clamp(2rem, 4vw, 2.5rem);
    width: auto;
  }
  #services-1204 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    text-align: inherit;
    line-height: 1.2em;
    /* 8px - 12px */
    margin: 0 0 clamp(0.5rem, 2vw, 0.75rem);
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #services-1204 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    text-align: inherit;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    transition: color 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1204 .cs-card-group {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #services-1204 .cs-h3,
  body.dark-mode #services-1204 .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #services-1204 .cs-item-text {
    opacity: 0.8;
  }
  body.dark-mode #services-1204 .cs-picture {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #services-1204 .cs-item {
    background-color: var(--medium);
    position: relative;
    transition: background-color 0.3s, transform 0.3s;
  }
  body.dark-mode #services-1204 .cs-item:hover {
    background-color: var(--accent);
  }
  body.dark-mode #services-1204 .cs-item:hover:before {
    opacity: 1;
  }
  body.dark-mode #services-1204 .cs-item:hover .cs-h3,
  body.dark-mode #services-1204 .cs-item:hover .cs-item-text {
    color: #fff;
  }
}
/*# sourceMappingURL=critical.css.map */