
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-1185 {
        width: 100%;
        max-width: 80rem;
        margin: var(--sectionPadding);
        margin-left: auto;
        margin-right: auto;
        margin-top: 0;
        /* 16px - 60px */
        padding: 3.75rem clamp(1rem, 7vw, 3.75rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border: 1px solid #484848;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    #cta-1185 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        /* changes to 100% at tablet */
        max-width: 25rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
        gap: 1.5rem;
    }

    #cta-1185 .cs-title {
        width: 100%;
        font-size: 1.9375rem;
        margin: 0;
        color: var(--bodyTextColorWhite);
    }
    #cta-1185 .cs-form {
        width: 100%;
        max-width: 45.3125rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #cta-1185 .cs-input {
        font-size: 1rem;
        width: 100%;
        height: clamp(2.875rem, 5.5vw, 3.5rem);
        margin: 0;
        padding: 0;
        padding-left: 1.25rem;
        border: none;
        /* prevents padding from adding to width and height */
        box-sizing: border-box;
        display: block;
    }
    #cta-1185 .cs-input::placeholder {
        color: #767676;
    }
    #cta-1185 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #cta-1185 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #cta-1185 .cs-button-solid:hover:before {
        width: 100%;
    }
    #cta-1185 .cs-submit {
        width: 100%;
        border: none;
        transition: color 0.3s;
    }
    #cta-1185 .cs-submit:before {
        background-color: #fff;
    }
    #cta-1185 .cs-submit:hover {
        cursor: pointer;
        color: var(--primary);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cta-1185 .cs-container {
        padding-left: 3.75rem;
        padding-right: 3.75rem;
    }
    #cta-1185 .cs-content {
        max-width: 100%;
    }
    #cta-1185 .cs-form {
        flex-direction: row;
    }
    #cta-1185 .cs-input {
        width: 100%;
        max-width: 32.8125rem;
    }
    #cta-1185 .cs-submit {
        width: auto;
        min-width: 11.875rem;
        /* prevents flexbox from squishing it */
        flex: none;
    }
}
/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #cta-1185 .cs-content {
        flex-direction: row;
    }
    #cta-1185 .cs-form {
        width: 60%;
    }
}

/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #banner-712 {
        /* 175px - 200px top */
        padding: clamp(10rem, 10vw, 12rem) 1rem 6.25rem;
        position: relative;
        z-index: 1;
    }
    #banner-712 .cs-container {
        text-align: center;
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
    #banner-712 .cs-int-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        margin: auto;
        color: var(--bodyTextColorWhite);
        position: relative;
    }
    #banner-712 .cs-int-subtitle {
        /* 20px-30px  */
        font-size: clamp(1.25rem, 0.625rem + 2vw, 1.875rem);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        margin: auto;
        padding-bottom: 3%;
        color: var(--bodyTextColorWhite);
        position: relative;
    }
    #banner-712 .cs-background {
        width: 100%;
        height: 350px;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        box-shadow: var(--boxShadow);
    }
    #banner-712 .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #000;
        opacity: 0.75;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #banner-712 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #banner-712 .cs-background:before {
        opacity: 1;
        background: linear-gradient(
            90.01deg,
            rgba(0, 0, 0, 0.9) 16.86%,
            rgba(0, 0, 0, 0) 100%
        );
    }
}

#cs-description {
  columns: auto;
}                    
#cs-description .cs-subtitle {
  padding-top: 0;
  padding-bottom: 3%;
  margin-top: 0;
  margin: auto;
  text-align: center;
  font-size: 1.5rem;
  width: 95%;
  max-width: 1000px;
  color: var(--headerColor);
}

#cs-description .text-divider {
  margin: 2rem 2rem;
  display: flex;
  text-align: center;
  align-items: center;
}
#cs-description .text-divider span {
  font-size: 0.9375rem;
  white-space: nowrap;
  padding: 0 1rem;
}
#cs-description .text-divider::before, .text-divider::after {
  content: '';
  display: inline-block;
  height: 1px;
  width: 20px;
  flex-grow: 1;
  background: hsl(240, 4%, 90%);
  vertical-align: middle;
}
#cs-description .cs-icon {
  width: clamp(3.75rem, -1.25rem + 16vw, 8.75rem);
}
body.dark-mode #cs-description .cs-icon {
  filter: invert(1);
}
body.dark-mode #cs-description .cs-subtitle {
  color: var(--bodyTextColorWhite);
}


/*-- -------------------------- -->
<---        Quarry Facts        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #why-choose-440 {
        padding: var(--sectionPadding);
        background-color: #ffffff;
    }
    #why-choose-440 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375em;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #why-choose-440 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #why-choose-440 .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
        display: block;
    }
    #why-choose-440 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #why-choose-440 .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #why-choose-440 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        /* 12px - 20px */
        gap: clamp(0.75rem, 1.5vw, 1.25rem);
    }
    #why-choose-440 .cs-item {
        list-style: none;
        width: 78%;
        /* changes on tablet */
        max-width: 28.875rem;
        /* 22px - 30px */
        padding: clamp(1.375rem, 1rem + 1.2vw, 1.75rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border-radius: 1rem;
        background-color: #fff;
        border: 1px solid #dad9e3;
        box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
        position: relative;
        transition:
            background-color 0.3s,
            transform 0.3s,
            box-shadow 0.3s,
            border 0.3s;
    }
    #why-choose-440 .cs-item:before {
        /* green border on hover */
        content: "";
        width: 100%;
        height: 100%;
        background: transparent;
        border: 4px solid var(--primary);
        border-radius: 0.75rem;
        /* prevents border from affecting height and width */
        box-sizing: border-box;
        /* prevents the mouse from interacting with it */
        pointer-events: none;
        opacity: 0;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        transition: opacity 0.3s;
    }
    #why-choose-440 .cs-item:hover {
        background-color: #fff;
        transform: translateY(-0.4375rem);
        border-color: var(--primary);
    }
    #why-choose-440 .cs-item:hover:before {
        opacity: 1;
    }
    #why-choose-440 .cs-link {
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #why-choose-440 .cs-picture {
        /* 40px - 72px */
        width: clamp(2.5rem, 6.5vw, 4.5rem);
        /* 40px - 72px */
        height: clamp(2.5rem, 6.5vw, 4.5rem);
        margin: 0;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: var(--primary);
        position: relative;
        z-index: 1;
    }
    #why-choose-440 .cs-icon {
        /* 24px - 32px */
        height: clamp(1.5rem, 2vw, 2rem);
        width: auto;
    }
    #why-choose-440 .js-countup {
        font-size: var(--headerFontSize);
        font-weight: 400;
        text-align: center;
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 0.25rem;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #why-choose-440 .cd-sr-only {
      display: none;
    }
    #why-choose-440 .cs-subtitle {
      color: var(--headerColor);
      font-size: clamp(1.375rem, 1rem + 1.2vw, 1.75rem);
      text-align: center;
    }
    #why-choose-440 .cs-desc {
        /* 14px - 20px */
        font-size: clamp(0.875rem, 1.5vw, 1.25rem);
        text-align: center;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        transition: color 0.3s;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #why-choose-440 .cs-container {
        max-width: 80rem;
    }
    #why-choose-440 .cs-card-group {
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
    }
    #why-choose-440 .cs-item {
        width: 100%;
        max-width: 25.8125rem;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #why-choose-440 {
        background-color: var(--dark);
    }
    body.dark-mode #why-choose-440 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #why-choose-440 .cs-title,
    body.dark-mode #why-choose-440 .cs-text,
    body.dark-mode #why-choose-440 .cs-h3,
    body.dark-mode #why-choose-440 .js-countup,
    body.dark-mode #why-choose-440 .cs-subtitle {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #why-choose-440 .cs-desc {
      color: #ddd;
    }
    body.dark-mode #why-choose-440 .cs-picture {
        background-color: var(--accent);
    }
    body.dark-mode #why-choose-440 .cs-item {
        position: relative;
        background-color: rgba(0, 0, 0, 0.2);
    }
}

                                


/*-- -------------------------- -->
<---            Map             -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
#map-container {
  padding: 1%;
}
#map {
  height: 450px;
  width: 93%;
  max-width: 1000px;
  margin: auto;
  padding: 100px;
  border: 1px black solid;
  border-radius: .5rem;
  box-shadow: rgba(149, 157, 165, 0.493) 0px 8px 24px;
  pointer-events: none;
}
}
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #list-1405 {
        width: 93%;
        max-width: 1000px;
        padding: 0;
        padding-top: 25px;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    #list-1405 .cs-li {
        font-family: var(--headerFont);
        font-size: var(--bodyFontSize);
        list-style: none;
        line-height: 1.5em;
        width: 100%;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        /* push icon top the top so if the list item goes to two lines the icon stays at the top */
        align-items: flex-start;
        gap: 0.5rem;
    }
    #list-1405 .cs-icon {
        width: 1.5rem;
        height: auto;
        /* adds extra space between the icon and top of parent so it's more centered */
        margin-top: 1px;
        display: block;
    }
}
/* Dark Mode, copy and paste only the styles inside the #list-1405 brackets into your section's dark mode media query */
@media only screen and (min-width: 0rem) {
    body.dark-mode #list-1405 .cs-li {
        color: var(--bodyTextColorWhite);
        opacity: 0.8;
    }
    body.dark-mode #list-1405 .cs-icon {
        filter: grayscale(1) brightness(1000%);
    }
}

                                





@media only screen and (min-width: 0rem) {
    body.dark-mode #map {
  filter: brightness(.85);
}
}


/*-- -------------------------- -->
<---           Quote            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #reviews-439 {
        /* change width to make sure there is 16px gap left and right */
        width: 91.112%;
        /* changes at tablet */
        max-width: 34.375rem;
        /* using margin instead of padding so the green bar can rest at the true bottom of the section, without padding interrupting it */
        margin: var(--sectionPadding);
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
        border-radius: 1.5rem;
        /* clips corners of green border */
        overflow: hidden;
        position: relative;
    }
    #reviews-439:before {
        /* green bar */
        content: "";
        width: 100%;
        height: 0.5rem;
        background: var(--primary);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 0;
        left: 0;
        z-index: 10;
    }
    #reviews-439 .cs-container {
        width: 100%;
        margin: auto;
        /* pushes down the same amount as the picture is pulled up */
        margin-top: 5.8125rem;
        /* 20px - 108px left & right, clamp changes at desktop */
        /* 48px - 100px bottom */
        padding: 0 clamp(1.25rem, 6vw, 6.75rem) clamp(2.5rem, 8vw, 6.25rem);
        border-radius: 1.5rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #14142b;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        flex-direction: column;
        position: relative;
    }
    #reviews-439 .cs-title {
      font-size: clamp(1.1rem, 2vw, 1.7625rem);
      z-index: 100;
      color: var(--bodyTextColorWhite);
    }
    #reviews-439 .cs-review {
        /* 16px - 25px */
        font-size: clamp(1rem, 2vw, 1.5625rem);
        line-height: 1.5em;
        /* 24px - 48px changes at tablet */
        margin: 0 0 clamp(1.5rem, 3vw, 3rem) 0;
        color: #dad9e3;
        position: relative;
        z-index: 1;
    }
    #reviews-439 .cs-quote {
        /* 40px - 120px , clamp changes at tablet */
        width: clamp(2.5rem, 11vw, 7.5rem);
        height: auto;
        display: block;
        position: absolute;
        left: 0;
        /* changes at tablet */
        top: -3.75rem;
        z-index: -1;
    }
    #reviews-439 .cs-author {
        /* 16px - 31px */
        font-size: clamp(1rem, 2.6vw, 1.9375rem);
        font-weight: 700;
        line-height: 1.2em;
        color: #fafbfc;
    }
    #reviews-439 .cs-picture {
        /* 116px - 328px */
        width: clamp(7.25rem, 24vw, 20.5rem);
        margin-top: -5.8125rem;
        margin-bottom: 2.25rem;
        border-radius: 8.75rem;
        border: clamp(8px, 1vw, 12px) solid #ffffff;
        background-color: #fff;
        box-sizing: content-box;
        /* clips the img tag corners */
        overflow: hidden;
        /* width divided by height */
        aspect-ratio: 0.65079365;
        display: block;
        /* sends it to the top of the flexbox */
        order: -1;
        position: relative;
    }
    #reviews-439 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes it act like a background image */
        object-fit: cover;
        /* makes the top of the image line up at the top of the container */
        object-position: top;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #reviews-439 {
        max-width: 80rem;
    }
    #reviews-439 .cs-container {
        padding-top: 6.75rem;
        flex-direction: row;
        justify-content: flex-end;
    }
    #reviews-439 .cs-content {
        width: 57%;
    }
    #reviews-439 .cs-review {
        /* 48px - 96px, clamp changes at desktop */
        margin-bottom: clamp(3rem, 7vw, 6rem);
    }
    #reviews-439 .cs-quote {
        /* 80px - 120px , clamp changes at tablet */
        width: clamp(5rem, 8vw, 7.5rem);
        top: -3.3125rem;
        /* 20px - 64px */
        left: calc(clamp(1.25rem, 2vw, 4rem) * -1);
    }
    #reviews-439 .cs-picture {
        margin: 0;
        /* reset its order */
        order: initial;
        position: absolute;
        /* 50px - 108px - wrapped in calc function turn multiple value by negative 1 and get a negative clamp value*/
        top: calc(clamp(3.125rem, 8vw, 6.75rem) * -1);
        /* 52px - 100px */
        left: clamp(3.25rem, 7vw, 6.25rem);
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #reviews-439 .cs-container {
        /* 60px - 108px left & right */
        /* 48px - 100px bottom */
        padding: 6.75rem clamp(3.75rem, 4.6vw + 2rem, 6.75rem)
            clamp(2.5rem, 8vw, 6.25rem);
    }
    #reviews-439 .cs-review {
        /* 48px - 96px changes at tablet */
        margin: 0 0 clamp(3rem, 4.2vw + 2rem, 6rem) 0;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #reviews-439 .cs-container {
        background-color: var(--medium);
    }
    body.dark-mode #reviews-439 .cs-quote {
        filter: grayscale(1) brightness(200%);
        opacity: 0.3;
    }
    body.dark-mode #reviews-439 .cs-picture {
        border-color: var(--dark);
        background-color: var(--dark);
    }
}


/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-51 {
        padding: var(--sectionPadding);
        position: relative;
    }
    #cta-51 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #cta-51 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #cta-51 .cs-title {
        color: var(--headerColor);
    }
    #cta-51 .cs-text {
        margin-bottom: 1rem;
        color: var(--bodyTextColorWhite);
        opacity: 0.8;
    }
    #cta-51 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #cta-51 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #cta-51 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #cta-51 .cs-button-solid:hover:before {
        width: 100%;
    }
    body.dark-mode #cta-51 .cs-title {
      color: var(--bodyTextColorWhite);
    }

}

                                




/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cs-footer-1185 {
        padding-bottom: 5%;
        padding-right: 5%;
        padding-left: 5%;
        position: relative;
        /* Navigation Links */
    }
    #cs-footer-1185 .cs-container {
        width: 100%;
        /* reset on desktop */
        max-width: 43.75rem;
        margin: auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 2.5rem;
    }
    #cs-footer-1185 .cs-logo-group {
        /* takes up all the space, lets the other ul's wrap below it */
        width: 100%;
        position: relative;
    }
    #cs-footer-1185 .cs-logo {
        width: 12.3125rem;
        height: auto;
        display: block;
        margin-bottom: 1.5rem;
        filter: invert(1);
    }
    #cs-footer-1185 .cs-logo-img {
        width: 100%;
        height: auto;
    }
    #cs-footer-1185 .cs-logo-img.dark {
        display: none;
    }
    #cs-footer-1185 .cs-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 2.5vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        width: 78%;
        /* changes to 305px at desktop */
        max-width: 26.25rem;
        color: var(--bodyTextColorWhite);
    }
    #cs-footer-1185 .cs-nav {
        width: 100%;
        padding: 0;
        padding-top: 3%;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }
    #cs-footer-1185 .cs-nav-li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }
    #cs-footer-1185 .cs-header {
        font-size: 1rem;
        line-height: 1.2em;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--bodyTextColorWhite);
        position: relative;
        display: block;
    }
    #cs-footer-1185 .cs-nav-link {
        font-size: 1rem;
        text-decoration: none;
        line-height: 1.5em;
        color: var(--bodyTextColorWhite);
        position: relative;
        display: inline-block;
        transition: color 0.3s;
    }
    #cs-footer-1185 .cs-nav-link:before {
        /* underline */
        content: "";
        width: 0%;
        height: 0.125rem;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.125rem;
        left: 0;
        transition: width 0.3s;
    }
    #cs-footer-1185 .cs-nav-link:hover {
        color: var(--secondary);
    }
    #cs-footer-1185 .cs-nav-link:hover:before {
        width: 100%;
    }
    #cs-footer-1185 .cs-icon {
        width: 1.5rem;
        height: auto;
        margin-right: 0.75rem;
    }
    #cs-footer-1185 .cs-bottom {
        max-width: 80rem;
        margin: auto;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid #484848;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #cs-footer-1185 .cs-copyright,
    #cs-footer-1185 .cs-copyright-link {
        font-size: 1rem;
        line-height: 1.5em;
        color: var(--bodyTextColorWhite);
    }
    #cs-footer-1185 .cs-copyright-link {
        text-decoration: none;
        transition: color 0.3s;
    }
    #cs-footer-1185 .cs-copyright-link:hover {
        color: var(--secondary);
    }
    #cs-footer-1185 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #cs-footer-1185 .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background-color: #000;
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        opacity: 0.97;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #cs-footer-1185 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}
#footertopper {
  display: flex;
}
#footertopper .treeline img {
  width: auto;
  height: auto;
  display: flex;
  pointer-events: none;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cs-footer-1185 .cs-container {
        row-gap: 0;
        flex-direction: row;
        justify-content: space-between;
        row-gap: 2.5rem;
    }
    #cs-footer-1185 .cs-nav {
        width: auto;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-footer-1185 .cs-container {
        max-width: 80rem;
        flex-wrap: nowrap;
        /* align everything to the right */
        justify-content: flex-end;
        column-gap: 5.25rem;
    }
    #cs-footer-1185 .cs-logo-group {
        width: auto;
        display: block;
        /* pushes away from everything to the right */
        margin-right: auto;
    }
    #cs-footer-1185 .cs-text {
        width: 100%;
        height: fit-content;
    }
}
/* Large Desktop - 1800px */
@media only screen and (min-width: 112.5rem) {
    #cs-footer-1185 {
        padding-top: 12vw;
    }
}