/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* CodeStitch Root and Helpers */
@media only screen and (min-width: 0em) {
  :root {
    --primary: #7286d3;
    --primaryLight: #e5e0ff;
    --secondary: #8ea7e9;
    --secondaryLight: #fff2f2;
    --pink: #f78da7;
    --bodyTextColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }
  .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 2em;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--pink);
    display: block;
  }
  .cs-title {
    font-size: var(--headerFontSize);
    font-family: "Montserrat", Arial, Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 auto 1rem;
    color: var(--bodyTextColor);
    position: relative;
  }
  .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    width: 100%;
    margin: 0 auto;
  }
  .cs-item {
    border-radius: 5px;
  }
  .cs-button-solid {
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    width: auto;
    line-height: 3.125em;
    height: 3.125rem;
    text-align: center;
    padding: 0 1.875rem;
    position: relative;
    z-index: 1;
    background-color: var(--primary);
    border-radius: 5px;
    color: white;
    transition: color 0.3s;
    transition-delay: 0.1s;
  }
  .cs-button-solid:hover {
    color: #fff;
  }
  .cs-button-solid:hover:before {
    width: 100%;
  }
  .cs-button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #000;
    border-radius: 5px;
    width: 0;
    transition: width 0.3s;
  }
}
#button-box-838 {
  width: 100%;
  max-width: calc(630 / 16 * 1rem);
  margin-bottom: calc(32 / 16 * 1rem);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: calc(24 / 16 * 1rem);
}
#button-box-838 .cs-button-transparent {
  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: var(--primary);
  min-width: 9.375rem;
  padding: 0 1.5rem;
  background-color: transparent;
  border-radius: 0.25rem;
  display: inline-block;
  position: relative;
  z-index: 1;
  /* prevents padding from adding to the width */
  box-sizing: border-box;
  transition: background-color 0.3s, color 0.3s;
}
#button-box-838 .cs-button-transparent:hover {
  background-color: var(--primary);
  color: #fff;
}
/* Dark Mode */
body.dark-mode #button-box-838 .cs-button-transparent {
  color: var(--bodyTextColorWhite);
}
/* Fonts and general styles */
@media only screen and (min-width: 0em) {
  /* poppins-regular - latin */
  @font-face {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 400;
    src: local(""), url("/assets/fonts/Poppins-Regular.woff2") format("woff2");
    font-display: swap;
  }
  /* Montserrat-600 - latin */
  @font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 600;
    src: local(""), url("/assets/fonts/Montserrat-SemiBold.woff2") format("woff2");
    font-display: swap;
  }
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: "Poppins", Arial, sans-serif;
    color: var(--bodyTextColor);
    overflow-x: hidden;
    scroll-behavior: smooth;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    transition: background-color 0.5s;
  }
  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--bodyTextColor);
  }
  p,
  li,
  a {
    margin: 0;
    font-size: 1rem;
    line-height: 27/18em;
  }
  p,
  li {
    color: #353535;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    padding: 0;
    margin: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 2000px) {
  body,
  html {
    font-size: 0.85vw;
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
body,
html {
  /* reset margin and padding so there's no gap between the nav and the screen edges */
  margin: 0;
  padding: 0;
}
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #navigation {
    width: 100%;
    padding: 0.75rem 1rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: var(--primaryLight);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    z-index: 10000;
  }
  #navigation:before {
    /* on hover green bar */
    content: "";
    width: 40%;
    max-width: 9.125rem;
    height: 100%;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0%;
    z-index: -1;
    transition: width 0.2s, max-width 0.3s, background-color 0.3s;
  }
  #navigation.cs-active:before {
    width: 100%;
    max-width: 100%;
    background-color: var(--secondary);
  }
  #navigation.cs-active .cs-link {
    color: var(--bodyTextColorWhite);
  }
  #navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.1s;
  }
  #navigation.cs-active .cs-li {
    transform: translateY(0);
    opacity: 1;
  }
  #navigation .cs-logo {
    width: 40%;
    max-width: 9.125rem;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    padding-right: 4px;
    padding-left: 4px;
  }
  #navigation .cs-logo img {
    width: 100%;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #navigation .cs-toggle {
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
    height: clamp(2.75rem, 6vw, 3rem);
    margin: 0 0 0 auto;
    border-radius: 0.25rem;
    background-color: #484848;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #navigation .cs-active .cs-line2 {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #navigation .cs-box {
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    position: relative;
  }
  #navigation .cs-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #navigation .cs-line1 {
    top: 0;
    transform-origin: center;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #navigation .cs-ul-wrapper {
    width: 100%;
    height: 100vh;
    opacity: 0;
    background-color: var(--primaryLight);
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s, opacity 0.3s;
  }
  #navigation .cs-ul {
    margin: 0;
    padding: 3rem 0 3rem 0;
    width: 100%;
    height: auto;
    max-height: 65vh;
    overflow: scroll;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  #navigation .cs-li {
    text-align: center;
    list-style: none;
    margin-right: 0;
    /* transition from these values */
    transform: translateY(-4.375rem);
    opacity: 0;
    transition: transform 0.6s, opacity 0.9s;
  }
  #navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #navigation .cs-li-link {
    /* 16px - 24px */
    font-size: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.2em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: inline-block;
    position: relative;
  }
  #navigation .cs-li-link:before {
    /* active state underline */
    content: "";
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 1;
    position: absolute;
    display: none;
    bottom: -0.125rem;
    left: 0;
  }
  #navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #navigation .cs-button-solid {
    display: none;
  }
}
/* Dark Mode */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode .cs-logo {
    background-color: var(--medium);
  }
  body.dark-mode #navigation:before {
    background-color: var(--medium);
  }
  body.dark-mode #navigation .cs-ul-wrapper,
  body.dark-mode #navigation {
    background-color: var(--dark);
  }
  body.dark-mode #navigation .cs-ul-wrapper:before {
    /* backgorund overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }
  body.dark-mode #navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #navigation {
    width: 100%;
    /* 23px - 420px */
    padding: 0rem 1rem 0rem clamp(14.6875rem, 23vw, 26.25rem);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: var(--primaryLight);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 10000;
  }
  #navigation .cs-toggle {
    display: none;
  }
  #navigation .cs-logo {
    width: 18.4%;
    max-width: 20rem;
    height: 100%;
    background-color: var(--primary);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    padding-left: 8px;
    padding-right: 8px;
  }
  #navigation .cs-logo img {
    width: 100%;
    height: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #navigation .cs-ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* 20px - 36px */
    gap: clamp(1.25rem, 2.6vw, 2.25rem);
  }
  #navigation .cs-li {
    list-style: none;
    padding: 2rem 0;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #navigation .cs-li:last-of-type {
    /* pushes the button to the far roght */
    margin-left: auto;
  }
  #navigation .cs-li-link {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1vw, 1rem);
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
    position: relative;
  }
  #navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
  #navigation .cs-li-link:before {
    /* active state underline */
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0rem;
    left: 0;
    transition: width 0.3s;
  }
  #navigation .cs-nav-button {
    margin: 0 1rem 0 auto;
  }
}
/* Dark Mode */
@media only screen and (min-width: 64rem) {
  body.dark-mode #navigation {
    background-color: var(--dark);
  }
  body.dark-mode #navigation .cs-logo {
    background-color: var(--medium);
  }
  body.dark-mode #navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #navigation .cs-li-link:before {
    background-color: var(--primaryLight);
  }
}
/*-- -------------------------- -->
<---   Interior Page Header     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  #int-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 1;
    min-height: 30vh;
    padding-top: 3.125rem;
  }
  #int-hero:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0.7;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #int-hero picture {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -2;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    color: #fff;
    font-size: 64/30rem;
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 96%;
    max-width: 31.25rem;
    margin-top: 4.375rem;
    margin-bottom: 1.875rem;
  }
  #int-hero p {
    color: #fff;
    text-align: center;
    max-width: 25rem;
    margin: auto;
    margin-bottom: 1.875rem;
    display: block;
    width: 96%;
  }
}
/* Tablet */
@media only screen and (min-width: 48em) {
  #int-hero {
    font-size: 100%;
  }
  #int-hero h1 {
    font-size: 4rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64em) {
  #int-hero {
    min-height: 18.75rem;
    height: auto;
    padding-top: 11.25rem;
    padding-block-end: 6.25rem;
    background-attachment: fixed;
    font-size: inherit;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #footer {
    padding: 2.5rem 1rem 1.25rem;
    background: #8ea7e9;
    background: linear-gradient(360deg, #8ea7e9 12%, #7286d3 60%);
  }
  #footer .cs-container {
    width: 100%;
    max-width: 67.5rem;
    margin: auto;
  }
  #footer .cs-ul {
    padding: 0 0 2.5rem;
    margin: auto;
    border-bottom: 1px solid #eff0f6;
  }
  #footer .cs-li {
    list-style: none;
    text-align: center;
    margin-bottom: 1.25rem;
  }
  #footer .cs-li:last-of-type {
    margin-bottom: 0;
  }
  #footer .cs-link {
    /* 15px - 17px */
    font-size: clamp(0.9375rem, 2vw, 1.0625rem);
    line-height: 1.5em;
    text-decoration: none;
    font-weight: 700;
    color: var(--bodyTextColorWhite);
    position: relative;
  }
  #footer .cs-link:hover:before {
    width: 100%;
  }
  #footer .cs-link:before {
    /* top right box */
    content: "";
    width: 0%;
    height: 0.1875rem;
    background: var(--bodyTextColorWhite);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -0.125rem;
    left: 0;
    transition: width 0.3s;
  }
  #footer .cs-bottom {
    margin-top: 1.25rem;
    display: flex;
    /* set everyone to position on the left side */
    justify-content: flex-start;
    align-items: center;
  }
  #footer .cs-copyright {
    font-size: 0.9375rem;
    text-align: center;
    display: block;
    /* margin right auto on a flexbox pushes everyone else to the right */
    margin: 0 auto 0 0;
  }
  #footer .cs-social-link {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.75rem;
    background: #a0a3bd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #footer .cs-social-link img {
    height: 0.6875rem;
    width: auto;
  }
}
/* Tablet - 700px */
@media only screen and (min-width: 43.75rem) {
  #footer .cs-ul {
    display: flex;
    /* push everything to the left */
    justify-content: flex-start;
    align-items: center;
  }
  #footer .cs-li {
    /* 45px - 88px */
    margin: 0 clamp(2.8125rem, 7vw, 5.5rem) 0 0;
  }
  #footer .cs-li:last-of-type {
    margin: 0;
    /* margin-left auto will push everything away and force it to the farthest 
                   right edge */
    margin-left: auto;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #footer {
    background-color: #202020;
    background-image: none;
  }
  body.dark-mode #footer .cs-copyright {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #pricing {
    padding: var(--sectionPadding);
    padding-top: 0;
    position: relative;
  }
  #pricing .cs-wave {
    width: 110%;
    height: 200px;
    position: absolute;
    overflow: hidden;
    bottom: 0px;
    transform: translateX(-20px);
    transition: filter 0.3s;
  }
  #pricing .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #pricing .cs-container:after {
    content: "";
    position: absolute;
    display: block;
    height: 69.25rem;
    width: 125rem;
    background: url("/assets/svgs/cta-squares.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -3;
  }
  #pricing .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;
  }
  #pricing .cs-content .cs-title span {
    color: var(--primary);
  }
  #pricing .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #pricing .cs-item {
    list-style: none;
    /* 20px - 32px top & bottom */
    /* 16px - 32px left & right */
    padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.4vw, 2rem);
    width: 100%;
    max-width: 25.8125rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
  }
  #pricing .cs-item:nth-of-type(2) .cs-option2-text,
  #pricing .cs-item:nth-of-type(2) .cs-option1-text {
    transition-delay: 0.1s;
  }
  #pricing .cs-item:nth-of-type(3) .cs-option2-text,
  #pricing .cs-item:nth-of-type(3) .cs-option1-text {
    transition-delay: 0.2s;
  }
  #pricing .cs-popular {
    background: var(--primary);
    position: relative;
    /* clips the popular tag */
    overflow: hidden;
    /* send to the top */
    order: -1;
  }
  #pricing .cs-popular:before {
    /* Most Popular Tag */
    content: "Popular";
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.8125em;
    font-weight: 700;
    width: 10.625rem;
    padding: 0 0.75rem;
    color: var(--bodyTextColorWhite);
    background-color: var(--secondary);
    position: absolute;
    display: block;
    top: 1.25rem;
    right: -3.75rem;
    transform: rotate(42deg);
  }
  #pricing .cs-popular .cs-h3,
  #pricing .cs-popular .cs-item-text,
  #pricing .cs-popular .cs-price,
  #pricing .cs-popular .cs-included,
  #pricing .cs-popular .cs-li,
  #pricing .cs-popular .cs-small {
    color: var(--bodyTextColorWhite);
  }
  #pricing .cs-popular .cs-button-solid {
    background-color: #fff;
    color: var(--primary);
    transition: color 0.3s;
  }
  #pricing .cs-popular .cs-button-solid:before {
    background-color: var(--secondary);
  }
  #pricing .cs-popular .cs-button-solid:hover {
    color: #fff;
  }
  #pricing .cs-popular .cs-li-img {
    /* turns the check mark white */
    filter: brightness(900%);
  }
  #pricing .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.25rem;
    padding: 0;
    color: var(--bodyTextColor);
  }
  #pricing .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    /* 16px - 24px */
    margin: 0 0 clamp(1rem, 2vw, 1.5rem);
    padding: 0;
    color: var(--bodyTextColor);
  }
  #pricing .cs-option-group {
    position: relative;
  }
  #pricing .cs-option-group:after {
    /* top right box */
    content: "";
    width: 100%;
    height: 1px;
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
    background: linear-gradient(90deg, rgba(232, 232, 232, 0.2) 0%, #e8e8e8 53.78%, rgba(232, 232, 232, 0.2) 100%);
    opacity: 1;
    position: relative;
    display: block;
  }
  #pricing .cs-price {
    font-size: 3.0625rem;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--bodyTextColor);
    /* spans are inline, need to add block for margin to work */
    display: block;
  }
  #pricing .cs-small {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4e4b66;
  }
  #pricing .cs-included {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 700;
    /* 16px - 24px */
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: var(--bodyTextColor);
    display: block;
  }
  #pricing .cs-ul {
    padding: 0;
    margin: 0;
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
  }
  #pricing .cs-li {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    list-style: none;
    padding: 0;
    margin: 0 0 0.75rem;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #pricing .cs-li:last-of-type {
    margin-bottom: 0;
  }
  #pricing .cs-li-img {
    width: 1.25rem;
    height: auto;
    margin-top: 0.1875rem;
    margin-right: 0.5rem;
  }
}
/* Tablet 768px */
@media only screen and (min-width: 48rem) {
  #pricing .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  #pricing .cs-item {
    width: 100%;
    /* ensures they stay the same height if you add more content */
    align-self: stretch;
  }
  #pricing .cs-popular {
    /* send back to its original order */
    order: unset;
  }
  #pricing #cs-option2-357:before {
    top: -0.625rem;
  }
  #pricing #cs-option2-357:after {
    top: -2.1875rem;
    right: -6.25rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #pricing {
    background-color: var(--dark);
  }
  body.dark-mode #pricing .cs-wave {
    filter: grayscale(1) brightness(23%);
  }
  body.dark-mode #pricing .cs-container:after {
    background: none;
  }
  body.dark-mode #pricing .cs-title,
  body.dark-mode #pricing .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing .cs-plan {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing .cs-item {
    background: var(--accent);
    border-color: var(--medium);
  }
  body.dark-mode #pricing .cs-popular {
    background: var(--primary);
  }
  body.dark-mode #pricing .cs-h3,
  body.dark-mode #pricing .cs-item-text,
  body.dark-mode #pricing .cs-price,
  body.dark-mode #pricing .cs-included,
  body.dark-mode #pricing .cs-li,
  body.dark-mode #pricing .cs-small {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing .cs-li-img {
    /* make so bright it turns white */
    filter: brightness(900%) grayscale(1);
  }
}
