@media only screen and (min-width: 0rem) {
  .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  .cs-button-solid {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--secondary);
    min-width: 5rem;
    padding: 0 1rem;
    background-color: var(--headerColor);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    border: 2px solid var(--headerColor);
    border-radius: 1rem;
    transition: all 0.4s;
  }
  .cs-button-solid:hover {
    color: var(--primary);
  }
}
/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #banner-1106-1112 {
    padding: var(--sectionPadding);
    padding-top: 23.125rem;
    padding-bottom: 18vw;
    /* clips the line from causing overflow issues for going off screen */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #banner-1106-1112 .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: 0.75rem;
  }
  #banner-1106-1112 .cs-int-topper {
    font-size: var(--topperFontSize);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 0 0 0 1.25rem;
    color: var(--secondary);
    display: block;
    position: relative;
  }
  #banner-1106-1112 .cs-int-topper:before {
    /* yellow line */
    content: "";
    width: 50vw;
    height: 2px;
    background: var(--secondary);
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
  }
  #banner-1106-1112 .cs-int-title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.3vw, 5.25rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0;
    color: var(--bodyTextColorWhite);
    position: relative;
    text-transform: uppercase;
  }
  #banner-1106-1112 .cs-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1106-1112 .cs-link {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.2em;
    text-decoration: none;
    color: var(--bodyTextColorWhite);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #banner-1106-1112 .cs-link:last-of-type {
    /* remove the chevron on the last list item */
  }
  #banner-1106-1112 .cs-link:last-of-type::after {
    display: none;
  }
  #banner-1106-1112 .cs-link:after {
    /* chevron - added as pseudo to make adding and removing them easier */
    content: "";
    width: 1.875rem;
    height: 0.125rem;
    /* 12px - 24px */
    margin: 0 clamp(0.75rem, 2vw, 1.5rem);
    background-color: #fff;
  }
  #banner-1106-1112 .cs-link.cs-active {
    color: var(--secondary);
  }
  #banner-1106-1112 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 1rem;
    left: 0;
    z-index: -1;
  }
  #banner-1106-1112 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: -moz-linear-gradient(left, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(left, rgba(26, 26, 26, 0.94) 0%, rgba(26, 26, 26, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    opacity: 1;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #banner-1106-1112 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
  #banner-1106-1112 .cs-graphic {
    z-index: 10;
    position: absolute;
    bottom: -1px;
    left: 0;
    display: flex;
    align-items: flex-end;
    height: auto;
    width: 100%;
    pointer-events: none;
  }
}
/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-1210 {
    padding: var(--sectionPadding);
    padding-bottom: 9vw;
    background-color: #1D1C1C;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  #steps-1210 .cs-container {
    /* changes to 1280px at tablet */
    max-width: 44rem;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #steps-1210 .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;
  }
  #steps-1210 .cs-background-graphic {
    height: 60%;
  }
  #steps-1210 .cs-background-graphic:before {
    content: '';
    width: 100%;
    height: 20%;
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
  #steps-1210 .cs-background-graphic img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    filter: brightness(1000%);
    opacity: 0.07;
    object-fit: cover;
  }
  #steps-1210 .cs-title {
    color: var(--bodyTextColorWhite);
    text-transform: capitalize;
  }
  #steps-1210 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    max-width: 40.625rem;
    width: 100%;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #steps-1210 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.25rem;
  }
  #steps-1210 .cs-item {
    text-align: center;
    list-style: none;
    /* 8px - 48px */
    padding: 0 clamp(0.5rem, 5vw, 3rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    grid-column: span 12;
  }
  #steps-1210 .cs-item:last-of-type:after {
    display: none;
  }
  #steps-1210 .cs-item:after {
    /* content property isn't set until 768px, to hide the line on mobile */
    /* 120px - 200px */
    content: "";
    width: clamp(7.5rem, 14vw, 12.5rem);
    height: 5.625rem;
    background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/orange-dotted-line.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 1;
    display: none;
    position: absolute;
    top: 0;
    left: clamp(11.5rem, 24vw, 20rem);
  }
  #steps-1210 .cs-number {
    font-family: "Nunito", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: bold;
    width: 5.5rem;
    height: 5.5rem;
    /* 16px - 32px */
    margin-bottom: clamp(1rem, 4vw, 2rem);
    color: var(--primary);
    background-color: #282828;
    border: 1px solid #404040;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #steps-1210 .cs-icon {
    width: 2.5rem;
    height: auto;
    display: block;
  }
  #steps-1210 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--bodyTextColorWhite);
  }
  #steps-1210 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: inherit;
    max-width: 25.8125rem;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #steps-1210 .cs-graphic {
    z-index: 10;
    position: absolute;
    bottom: -1px;
    left: 0;
    display: flex;
    align-items: flex-end;
    height: auto;
    width: 100%;
    pointer-events: none;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-1210 .cs-container {
    max-width: 80rem;
  }
  #steps-1210 .cs-item {
    grid-column: span 4;
  }
  #steps-1210 .cs-item:after {
    display: block;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #steps-1210 {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #pricing-1691 {
    padding: var(--sectionPadding);
    padding-top: 15vw;
    padding-bottom: 15vw;
    background-color: var(--secondary);
    overflow-x: hidden;
    position: relative;
  }
  #pricing-1691 .cs-container {
    width: 100%;
    max-width: 80em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #pricing-1691 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content to the left, set to center to centrally align */
    align-items: center;
  }
  #pricing-1691 .cs-title,
  #pricing-1691 .cs-text {
    color: var(--headerColor);
  }
  #pricing-1691 .cs-title {
    margin: 0;
    max-width: 25ch;
  }
  #pricing-1691 .cs-topper {
    color: var(--headerColor);
  }
  #pricing-1691 .cs-text {
    max-width: 32.625rem;
    opacity: 0.8;
  }
  #pricing-1691 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-flow: wrap row;
    justify-content: center;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.5rem);
    transform-style: preserve-3d;
    perspective: 700px;
  }
  #pricing-1691 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 31.25rem;
    margin: 0;
    /* 56px - 80px */
    padding: 2.5rem clamp(3.5rem, 6vw, 5rem);
    box-sizing: border-box;
    background-color: var(--headerColor);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    border-radius: 0.5rem;
    border: 0.125rem solid var(--headerColor);
  }
  #pricing-1691 .cs-item::before {
    content: "";
    width: 2px;
    height: 80%;
    background-color: var(--primary);
    position: absolute;
    top: 0;
    left: 2rem;
  }
  #pricing-1691 .cs-item.cs-popular {
    background-color: var(--headerColor);
  }
  #pricing-1691 .cs-item.cs-popular .cs-package,
  #pricing-1691 .cs-item.cs-popular .cs-li {
    color: var(--bodyTextColor);
  }
  #pricing-1691 .cs-item.cs-popular .cs-icon {
    /* if icon is not black, this turns it white */
    filter: grayscale(1) brightness(1000%);
  }
  #pricing-1691 .cs-item.cs-popular .cs-price,
  #pricing-1691 .cs-item.cs-popular .cs-link {
    color: var(--bodyTextColor);
  }
  #pricing-1691 .cs-item.cs-popular .cs-arrow {
    filter: grayscale(1) brightness(100);
  }
  #pricing-1691 .cs-package {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 0.5rem;
    color: var(--bodyTextColorWhite);
  }
  #pricing-1691 .cs-price {
    font-size: 3.0625rem;
    font-weight: 900;
    line-height: 1.2em;
    /* 36px - 48px */
    margin-bottom: clamp(2.25rem, 4vw, 3rem);
    color: var(--bodyTextColorWhite);
    display: flex;
    align-items: baseline;
  }
  #pricing-1691 .cs-price-info {
    font-size: var(--bodyFontSize);
    font-weight: 500;
    line-height: 1.2em;
    /* 16px - 20px */
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    color: var(--bodyTextColorWhite);
  }
  #pricing-1691 .cs-ul {
    margin: 0 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
  }
  #pricing-1691 .cs-li {
    /* 14px - 16px */
    font-size: var(--bodyFontSize);
    line-height: 1.2em;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColorWhite);
    display: flex;
    justify-content: space-between;
    /* push everything to the top so if the li goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 1rem;
  }
  #pricing-1691 .cs-li.cs-disabled {
    opacity: 0.5;
  }
  #pricing-1691 .cs-duration {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5em;
    color: var(--bodyTextColorWhite);
  }
  #pricing-1691 .cs-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-decoration: none;
    /* 36px - 48px */
    margin-top: clamp(2.25rem, 4vw, 3rem);
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s;
  }
  #pricing-1691 .cs-link:hover .cs-arrow {
    transform: translateX(0.25rem);
  }
  #pricing-1691 .cs-link-text {
    width: fit-content;
  }
  #pricing-1691 .cs-arrow {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: filter 0.3s, transform 0.3s;
  }
  #pricing-1691 .cs-graphic {
    z-index: 10;
    position: absolute;
    bottom: -1px;
    left: 0;
    display: flex;
    align-items: flex-end;
    height: auto;
    width: 100%;
    pointer-events: none;
  }
  #pricing-1691 .cs-graphic2 {
    top: -1px;
    bottom: auto;
    transform: scaleY(-1) scaleX(-1);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #pricing-1691 .cs-item {
    width: 48.9%;
  }
  #pricing-1691 .cs-graphic {
    height: auto;
    right: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #pricing-1691 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #pricing-1691 .cs-card-group {
    flex-wrap: nowrap;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #pricing-1691 {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #pricing-1691 .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #pricing-1691 .cs-title,
  body.dark-mode #pricing-1691 .cs-li,
  body.dark-mode #pricing-1691 .cs-package,
  body.dark-mode #pricing-1691 .cs-price {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-1691 .cs-item {
    background-color: rgba(0, 0, 0, 0.3);
  }
  body.dark-mode #pricing-1691 .cs-item:before {
    background-color: var(--primaryLight);
  }
  body.dark-mode #pricing-1691 .cs-item.cs-popular {
    background-color: rgba(0, 0, 0, 0.6);
  }
  body.dark-mode #pricing-1691 .cs-icon {
    /* makes icon white (if it wasnt black to start) */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #pricing-1691 .cs-link {
    color: #fff;
  }
  body.dark-mode #pricing-1691 .cs-arrow {
    filter: grayscale(1) brightness(100);
  }
  body.dark-mode #pricing-1691 .cs-graphic {
    opacity: 0.1;
  }
}
/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq {
    padding: var(--sectionPadding);
    background: #1D1C1C;
  }
  #faq .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    row-gap: clamp(3rem, 6vw, 4rem);
  }
  #faq .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;
  }
  #faq .cs-title {
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #faq .cs-faq-group {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #faq .cs-faq-item {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid var(--primary);
    transition: border-bottom 0.3s;
  }
  #faq .cs-faq-item.active {
    border-color: var(--secondary);
  }
  #faq .cs-faq-item.active .cs-button {
    color: var(--secondary);
  }
  #faq .cs-faq-item.active .cs-button:before {
    background-color: var(--secondary);
    transform: rotate(315deg);
  }
  #faq .cs-faq-item.active .cs-button:after {
    background-color: var(--secondary);
    transform: rotate(-315deg);
  }
  #faq .cs-faq-item.active .cs-item-p {
    height: auto;
    /* 20px - 24px bottom */
    /* 16px - 24px left & right */
    padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 1.3vw, 1.5rem);
    opacity: 1;
  }
  #faq .cs-button {
    font-size: var(--bodyFontSize);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    /* 16px - 20px */
    padding: clamp(1rem, 1.3vw, 1.25rem);
    border: none;
    background: transparent;
    color: var(--bodyTextColorWhite);
    display: block;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq .cs-button:hover {
    cursor: pointer;
  }
  #faq .cs-button:before {
    /* left line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--bodyTextColorWhite);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 45%;
    right: 1.5rem;
    transform: rotate(45deg);
    /* animate the transform from the left side of the x axis, and the center of the y */
    transform-origin: left center;
    transition: transform 0.5s;
  }
  #faq .cs-button:after {
    /* right line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--bodyTextColorWhite);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 45%;
    right: 1.3125rem;
    transform: rotate(-45deg);
    /* animate the transform from the right side of the x axis, and the center of the y */
    transform-origin: right center;
    transition: transform 0.5s;
  }
  #faq .cs-button-text {
    width: 80%;
    display: block;
  }
  #faq .cs-item-p {
    /* 14px - 16px */
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    width: 90%;
    height: 0;
    margin: 0;
    /* 16px - 24px */
    padding: 0 clamp(1rem, 2vw, 1.5rem);
    opacity: 0;
    color: var(--bodyTextColorWhite);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #faq .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    /* push everything to the top */
    align-items: flex-start;
    flex-wrap: wrap;
  }
  #faq .cs-content {
    width: 100%;
  }
  #faq .cs-faq-group {
    width: 48%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #faq {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #faq .cs-picture {
    border-color: var(--accent);
  }
  body.dark-mode #faq .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #faq .cs-title,
  body.dark-mode #faq .cs-item-p {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq .cs-faq-item {
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #faq .cs-faq-item.active {
    border-color: var(--primaryLight);
  }
  body.dark-mode #faq .cs-faq-item.active .cs-button {
    color: var(--primaryLight);
  }
  body.dark-mode #faq .cs-faq-item.active .cs-button:before,
  body.dark-mode #faq .cs-faq-item.active .cs-button:after {
    background-color: var(--primaryLight);
  }
  body.dark-mode #faq .cs-button {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq .cs-button:before,
  body.dark-mode #faq .cs-button:after {
    background-color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---           Quote            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #quote {
    padding: var(--sectionPadding);
    padding-top: 15vw;
    padding-bottom: 15vw;
    background-color: var(--secondary);
    position: relative;
  }
  #quote .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #quote .cs-topper {
    color: var(--headerColor);
  }
  #quote .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #quote .cs-topper {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.4em;
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.25rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  #quote .cs-topper:before {
    /* yellow line */
    content: "";
    width: 3.125rem;
    height: 2px;
    background: var(--headerColor);
    opacity: 1;
    display: block;
  }
  #quote .cs-quote {
    /* 31px - 49px */
    font-size: clamp(1.9375rem, 5.1vw, 3.0625rem);
    line-height: 1.2em;
    font-weight: 900;
    margin: 0;
    color: var(--headerColor);
  }
  #quote .cs-name {
    /* 16px - 20px */
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    color: var(--headerColor);
    display: block;
    letter-spacing: 0.01em;
  }
  #quote .cs-button-solid {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--secondary);
    min-width: 5rem;
    padding: 0 1rem;
    background-color: var(--headerColor);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    border: 2px solid var(--headerColor);
    border-radius: 1rem;
    transition: all 0.4s;
  }
  #quote .cs-button-solid:hover {
    color: var(--primary);
  }
  #quote .cs-graphic {
    z-index: 10;
    position: absolute;
    bottom: -1px;
    left: 0;
    display: flex;
    align-items: flex-end;
    height: auto;
    width: 100%;
    pointer-events: none;
  }
  #quote .cs-graphic2 {
    top: -1px;
    bottom: auto;
    transform: scaleY(-1) scaleX(-1);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #quote {
    background-color: var(--medium);
  }
  body.dark-mode #quote .cs-quote,
  body.dark-mode #quote .cs-topper {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #team {
    padding: var(--sectionPadding);
    background-color: #1D1C1C;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  #team .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #team .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;
    gap: 1.5rem;
  }
  #team .cs-title {
    max-width: 20ch;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
  #team .cs-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  #team .cs-button-solid {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--bodyTextColor);
    min-width: 5rem;
    padding: 0 1rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    border-radius: 1rem;
    transition: all 0.4s;
  }
  #team .cs-button-solid:hover {
    background-color: var(--secondary);
  }
  #team .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    flex-direction: column;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    position: relative;
  }
  #team .cs-item {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    grid-column: span 12;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
    position: relative;
  }
  #team .cs-item:hover .cs-picture img {
    opacity: 0.4;
    transform: scale(1.2);
  }
  #team .cs-item:hover .cs-link {
    opacity: 1;
    transform: translateY(0);
  }
  #team .cs-item:hover .cs-link:hover {
    /* we need to add the hover styles for the cs-link inside the cs-item hover for specifcity. There's a transform none on the cs-link when we hover over the cs-item, so for the transform to work when we hover over the cs-link, we add it while the hover is active on the cs-item. This allows it to be more specific and override the transform 0 it adds to the cs-link */
    transform: scale(1.15);
    transition: transform 0.3s;
    transition-delay: 0;
  }
  #team .cs-item:hover .cs-job {
    color: var(--primary);
  }
  #team .cs-image-group {
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
    z-index: 1;
    aspect-ratio: 0.91691395;
    flex: 1 0 0;
  }
  #team .cs-picture {
    width: 100%;
    height: 100%;
    background-color: #000;
    /* removed at tablet */
    aspect-ratio: 328/260;
    /* clips the img corners */
    /* clips img tag from overflowing it on hover */
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0.25rem;
  }
  #team .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes sure the top of the image is at the top of the parent, heads won't get cut off this way */
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.7s, opacity 0.3s;
  }
  #team .cs-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1;
  }
  #team .cs-link {
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background-color: #F7F7F7;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-1rem);
    transition: transform 0.6s, opacity 0.6s;
  }
  #team .cs-link:nth-of-type(2) {
    transition-delay: 0.08s;
  }
  #team .cs-link:nth-of-type(3) {
    transition-delay: 0.16s;
  }
  #team .cs-icon {
    width: 1.25rem;
    height: auto;
    display: block;
  }
  #team .cs-info {
    width: 100%;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s;
  }
  #team .cs-name {
    font-size: 1.25rem;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--bodyTextColorWhite);
    display: block;
    transition: color 0.3s;
  }
  #team .cs-job {
    font-size: 1rem;
    line-height: 1.2em;
    margin: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
    display: block;
    transition: color 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #team .cs-content {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  #team .cs-card-group {
    /* 16px - 20px */
    column-gap: clamp(1rem, 2vw, 1.25rem);
    row-gap: 2.5rem;
  }
  #team .cs-item {
    grid-column: span 6;
  }
  #team .cs-picture {
    /* 400px - 440px */
    height: clamp(25rem, 50vw, 27.5rem);
    aspect-ratio: initial;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 64rem) {
  #team .cs-item {
    grid-column: span 3;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #team {
    background-color: rgba(0, 0, 0, 0.6);
  }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-403 {
    padding: var(--sectionPadding);
    padding-top: 15vw;
    padding-bottom: 15vw;
    position: relative;
  }
  #cta-403 .cs-background {
    width: 100%;
    height: 100%;
    background-blend-mode: multiply;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #cta-403 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: var(--secondary);
    opacity: 0.8;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cta-403 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
    /* positions the image inside the parent */
    object-position: 0% 30%;
  }
  #cta-403 .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-403 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 32.3125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #cta-403 .cs-title,
  #cta-403 .cs-text {
    color: var(--headerColor);
  }
  #cta-403 .cs-text {
    margin-bottom: 1rem;
  }
  #cta-403 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #cta-403 .cs-topper {
    color: var(--headerColor);
    letter-spacing: 0.2em;
  }
  #cta-403 .cs-button-solid {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--secondary);
    min-width: 5rem;
    padding: 0 1rem;
    background-color: var(--headerColor);
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    border: 2px solid var(--headerColor);
    border-radius: 1rem;
    transition: all 0.4s;
  }
  #cta-403 .cs-button-solid:hover {
    color: var(--primary);
  }
  #cta-403 .cs-graphic {
    z-index: 10;
    position: absolute;
    bottom: -1px;
    left: 0;
    display: flex;
    align-items: flex-end;
    height: auto;
    width: 100%;
    pointer-events: none;
  }
  #cta-403 .cs-graphic2 {
    top: -1px;
    bottom: auto;
    transform: scaleY(-1) scaleX(-1);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-403 .cs-background {
    /* clips the black slant so it doesnt overflow */
    overflow: hidden;
  }
  #cta-403 .cs-background:before {
    width: 40%;
    opacity: 1;
  }
  #cta-403 .cs-background:after {
    /* black slant */
    content: "";
    width: 31.25rem;
    height: 93.75rem;
    margin-right: -3.125rem;
    background: -moz-linear-gradient(left, var(--secondary) 0%, var(--secondary) 57%, rgba(26, 26, 26, 0) 100%);
    background: -webkit-linear-gradient(left, var(--secondary) 0%, var(--secondary) 57%, rgba(26, 26, 26, 0) 100%);
    background: linear-gradient(to right, var(--secondary) 0%, var(--secondary) 57%, rgba(26, 26, 26, 0) 100%);
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    right: 50%;
    transform: rotate(10deg) translateY(-50%);
  }
  #cta-403 .cs-background img {
    width: 60%;
    object-position: right;
    left: auto;
    right: 0;
  }
  #cta-403 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #cta-403 .cs-content {
    text-align: left;
    align-items: flex-start;
    width: 45%;
  }
  #cta-403 .cs-text,
  #cta-403 .cs-title {
    margin-left: 0;
  }
}
