/* STYLES FOR ABOVE THE FOLD */
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero {
    z-index: 1;
    position: relative;
    /* prevents overflow from the lines extending past the screen width */
    overflow: hidden;
    /* changes on tablet */
    padding: 0 1rem;
    padding-bottom: 11.25rem;
    /* Centers button */
    text-align: center;
    /* Optional: text underline slide effect */
  }
  #hero .desktop-slideshow {
    display: none;
  }
  #hero .mobile-slideshow {
    display: block;
  }
  #hero .slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  #hero .slideshow:before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.6;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
    pointer-events: none;
  }
  #hero .slideshow picture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  }
  #hero .slideshow img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  @keyframes fade {
    0%, 100% {
      opacity: 0;
    }
    5%, 25% {
      opacity: 1;
    }
    30% {
      opacity: 0;
    }
  }
  #hero .slideshow picture:nth-child(1) {
    animation: fade 16s infinite 0s;
  }
  #hero .slideshow picture:nth-child(2) {
    animation: fade 16s infinite 4s;
  }
  #hero .slideshow picture:nth-child(3) {
    animation: fade 16s infinite 8s;
  }
  #hero .slideshow picture:nth-child(4) {
    animation: fade 16s infinite 12s;
  }
  #hero .cs-container {
    position: relative;
    margin: auto;
    max-width: 80em;
    width: 100%;
    /* we put the padding top and bottom on the container instead of #Hero so the pseudo element lines go to the top and bottom of the section */
    /* 144px - 280px - leaving extra space for the navigation */
    /* changes on tablet */
    padding: clamp(9em, 25.95vw, 17.5em) 0;
  }
  #hero .cs-flex-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    margin: auto;
    /* 60px - 220px */
    margin-top: clamp(3.75em, 15.5vw, 13.75em);
    margin-bottom: clamp(3.75em, 15.5vw, 13.75em);
    /* 464px - 562px */
    max-width: clamp(29em, 60vw, 35.125em);
    width: 88vw;
    box-sizing: border-box;
    gap: 21px;
  }
  #hero .cs-topper {
    margin-bottom: 1.625rem;
    color: var(--primary);
    text-align: center;
  }
  #hero .cs-title {
    width: 100%;
    font-size: 2rem;
    color: var(--bodyTextColorWhite);
    text-align: center;
    padding-top: 3.75rem;
  }
  #hero .cs-title a {
    color: var(--primary);
    cursor: default;
    padding: 0;
  }
  #hero .cs-text {
    /* 32px - 40px */
    margin: 0 auto clamp(2rem, 4vw, 2.5rem) 0;
    /* 40px - 48px */
    margin-bottom: clamp(2.5rem, 4vw, 3rem);
    color: var(--bodyTextColorWhite);
    text-align: center;
    font-size: 1.125rem;
    padding: 0 2.5rem 0 2.5rem;
  }
  #hero .cs-button-solid {
    margin-bottom: 1rem;
    height: initial;
    line-height: clamp(2.875em, 5.5vw, 3.5em);
  }
  #hero .cs-button-transparent {
    z-index: 1;
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--bodyTextColorWhite);
    margin: 0 0.5rem;
    background-color: transparent;
    /* 46px - 56px */
    height: clamp(2.875em, 5.5vw, 3.5em);
    width: 11.25rem;
    box-sizing: border-box;
    padding: 0;
    text-decoration: none;
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    font-weight: 700;
    color: #fff;
  }
  #hero .cs-button-transparent .cs-img {
    display: block;
    margin-right: 0.75rem;
  }
  #hero .cs-button-transparent:before {
    z-index: -1;
    position: absolute;
    /* so it sits on top of the border */
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    content: "";
    opacity: 1;
    /* this is what creates the grow affect on hover */
    transform: scaleX(0);
    display: block;
    background: var(--secondary);
    transition: transform 0.2s;
    transform-origin: left;
  }
  #hero .cs-button-transparent:hover:before {
    transform: scaleX(1);
  }
  #hero .cs-btn-outline {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin: 0 0.5rem;
    background: transparent;
    padding: 0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    color: #e7e585;
    transition: color 0.2s ease; /* smooth color change */
  }
  #hero .cs-btn-outline .cs-img {
    display: block;
    margin-right: 0.5rem;
    transition: filter 0.2s ease; /* optional: icon hover effect */
  }
  #hero .cs-btn-outline:hover {
    color: var(--bodyTextColorWhite); /* text changes color on hover */
  }
  #hero .cs-btn-outline::after {
    content: "";
    display: block;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
    margin-top: 2px; /* space between text and line */
  }
  #hero .cs-btn-outline:hover::after {
    transform: scaleX(1);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero {
    /* 32px - 40px */
    padding: 0 clamp(2em, 5vw, 2.5em);
  }
  #hero .cs-container {
    padding: clamp(7em, 27.95vw, 17.5em) 0 clamp(9em, 33.95vw, 23.5em) 0;
  }
  #hero .cs-title {
    width: 100%;
    font-size: 2.5rem;
    padding-top: 3.75rem;
    padding: 0 1.25rem 0 1.25rem;
  }
  #hero .cs-text {
    font-size: 1.25rem;
    padding: 0 4.375rem 0 4.375rem;
  }
  #hero .cs-button-solid {
    margin-right: 1.25rem;
    margin-bottom: 0;
  }
}
/* Desktop Parallax Effect - 1300px */
@media only screen and (min-width: 81.25em) {
  #hero {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    /* creates parallax effect on background image */
    background-attachment: fixed;
  }
  #hero .cs-title {
    width: 100%;
    font-size: 3.125rem;
  }
  #hero .cs-text {
    font-size: 1.375rem;
    padding: 0 6.25rem 0 6.25rem;
  }
  #hero .desktop-slideshow {
    display: block;
  }
  #hero .mobile-slideshow {
    display: none;
  }
  #hero .cs-flex-group {
    margin-top: auto;
    width: 80vw;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero .cs-background:before {
    opacity: 0.8;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  .services {
    z-index: 100;
    position: relative;
    border-top: 0.375em solid var(--primary);
    border-radius: 0.625em;
    margin: auto;
    margin-top: -10.4375em;
    margin-bottom: 3.125em;
    background: #fff;
    max-width: 82.5em;
    width: 90%;
    padding: 3.125em 1.25em;
    box-shadow: 0px 20px 40px rgba(24, 8, 8, 0.05);
  }
  .services .button {
    display: flex;
    margin: auto;
    justify-content: center;
    padding-top: 3.125em;
  }
  .services .cards .card {
    display: block;
    margin: auto;
    margin-bottom: 5em;
    max-width: 22.3125em;
    width: 100%;
  }
  .services .cards .card picture {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 1.4375em;
    background: var(--secondaryLight);
    height: 5.5em;
    width: 5.5em;
  }
  .services .cards .card picture img {
    height: 3em;
    width: 3em;
  }
  .services .cards .card h2 {
    margin-bottom: 0.65em;
    font-size: 2em;
    line-height: 1.35em;
    font-weight: 700;
    color: var(--secondaryLight);
    text-align: center;
  }
  .services .cards .card p {
    opacity: 0.7;
    width: 100%;
    line-height: 1.3333333333em;
    text-align: center;
  }
  .services .cards .card:last-of-type {
    margin-bottom: 0;
  }
}
/* Inbetween */
@media only screen and (min-width: 768px) {
  .services {
    width: 98%;
    font-size: min(1.8vw, 1em);
  }
  .services .cards {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .services .cards .card {
    margin: 0;
    max-width: 20.3125em;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  .services {
    padding: 3.125em 5em;
  }
  .services .cards .card {
    max-width: 22.3125em;
  }
}
/* Dark mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #services {
    background: var(--medium);
  }
  body.dark-mode #services picture {
    background: var(--primaryDark);
  }
  body.dark-mode #services h2 {
    font-weight: bold;
    color: #fff;
  }
}

/*# sourceMappingURL=critical.css.map */
