/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #pricing-357 {
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    padding: var(--sectionPadding);
    background-color: #FFF;
    padding-bottom: 3rem;
  }
  .tooltip {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    cursor: pointer;
  }
  .tooltip img {
    vertical-align: middle;
  }
  .tooltip .tooltip-text {
    visibility: hidden;
    position: fixed;
    z-index: 999999;
    width: 200px;
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -100%);
    white-space: normal;
    pointer-events: none;
    margin-top: -10px;
  }
  .tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
  }
  .tooltip:hover .tooltip-text {
    visibility: visible;
  }
  .white-tooltip .tooltip-text {
    background: #fff;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  .white-tooltip .tooltip-text::after {
    border-color: #fff transparent transparent transparent;
  }
  .dark-mode .tooltip img.light-mode {
    display: none;
  }
  .dark-mode .tooltip img.dark-mode {
    display: inline-block;
  }
  #pricing-357 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-end;
    height: 100%;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #pricing-357 .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-357 .cs-toggle-group {
    width: auto;
    margin: 2rem auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #pricing-357 .cs-plan {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
    color: var(--headerColor);
  }
  #pricing-357 .cs-plan:hover {
    cursor: pointer;
  }
  #pricing-357 .cs-toggle {
    width: 3.875rem;
    height: 2.25rem;
    border-radius: 2.5rem;
    background-color: var(--primaryLight);
    margin: 0 0.75rem;
    position: relative;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #pricing-357 .cs-toggle:hover {
    cursor: pointer;
  }
  #pricing-357 .cs-toggle.active:before {
    opacity: 1;
  }
  #pricing-357 .cs-toggle.active .cs-toggle-switch {
    left: 2rem;
  }
  #pricing-357 .cs-toggle:before {
    /* top right box */
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ffba43 -24.69%, #e12213 126.23%);
    opacity: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 2.5rem;
    transition: opacity 0.3s;
  }
  #pricing-357 .cs-toggle-switch {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.375rem;
    transition: left 0.3s;
    background: #fff;
  }
  #pricing-357 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.8vw, 1.25rem);
    perspective: 700px;
    transform-style: preserve-3d;
  }
  #pricing-357 .cs-card-group.active.cs-option1 {
    /* when the active class is on the cs-card-group, run these styles */
    transform: scale(0);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
  }
  #pricing-357 .cs-card-group.active.cs-option1 .cs-item {
    /* when the active class is on the cs-card-group, run these styles */
    opacity: 0;
    transform: translateY(1.25rem) rotateY(90deg);
    transition: opacity 0.3s, transform 0.6s;
    margin-top: auto;
  }
  #pricing-357 .cs-card-group.active.cs-option2 {
    /* when the active class is on the cs-card-group, run these styles */
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    position: relative;
    left: auto;
    top: auto;
    transform: scale(1);
  }
  #pricing-357 .cs-card-group.active.cs-option2 .cs-item {
    /* when the active class is on the cs-card-group, run these styles */
    opacity: 1;
    transform: translateY(0rem) rotateY(0deg);
    margin-top: auto;
    /*  height: auto; */
  }
  #pricing-357 .cs-option1 {
    /* default styles when there is no active class on the cs-card-group */
    opacity: 1;
    visibility: visible;
    left: left;
    top: auto;
    transform: scale(1);
    transform-origin: left top;
    transition: transform 0.6s, opacity 0.3s, visibility 0.3s;
  }
  #pricing-357 .cs-option1 .cs-item {
    /* default styles when there is no active class on the cs-card-group */
    opacity: 1;
    transform: translateY(0rem) rotateY(0deg);
    margin-top: auto;
    /* height: 34em; */
    transition: opacity 0.3s, transform 0.6s;
  }
  #pricing-357 .cs-option1 .cs-item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #pricing-357 .cs-option1 .cs-item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  #pricing-357 .cs-option2 {
    /* default styles when there is no active class on the cs-card-group */
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0;
    /* reset on tablet */
    top: 62.5rem;
    transform: scale(0);
    transform-origin: left top;
    transition: transform 0.6s, opacity 0.3s, visibility 0.3s, bottom 0.3s;
  }
  #pricing-357 .cs-option2 .cs-item {
    /* default styles when there is no active class on the cs-card-group */
    opacity: 0;
    transform: translateY(1.25rem) rotateY(90deg);
    margin-top: auto;
    transition: opacity 0.3s, transform 0.6s;
  }
  #pricing-357 .cs-option2 .cs-item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #pricing-357 .cs-option2 .cs-item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  #pricing-357 .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  #pricing-357 .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;
  }
  #pricing-357 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #pricing-357 .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-357 .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-357 .cs-item:nth-of-type(2) .cs-option2-text,
  #pricing-357 .cs-item:nth-of-type(2) .cs-option1-text {
    transition-delay: 0.1s;
  }
  #pricing-357 .cs-item:nth-of-type(3) .cs-option2-text,
  #pricing-357 .cs-item:nth-of-type(3) .cs-option1-text {
    transition-delay: 0.2s;
  }
  #pricing-357 .cs-popular {
    position: relative;
    overflow: hidden;
    background: var(--primary);
  }
  #pricing-357 .cs-popular::before {
    content: 'Popular';
    font-size: 1rem;
    position: absolute;
    display: block;
    top: 1.25rem;
    right: -3.75rem;
    padding: 0 0.75rem;
    transform: rotate(42deg);
    background: var(--secondary);
    color: var(--bodyTextColorWhite);
    font-weight: 700;
    line-height: 1.8125em;
    z-index: 10;
  }
  #pricing-357 .cs-popular:before {
    content: 'Popular';
    font-size: 1rem;
    text-align: center;
    line-height: 1.8125em;
    font-weight: 700;
    width: 11.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);
    z-index: 10;
  }
  #pricing-357 .cs-popular .cs-h3,
  #pricing-357 .cs-popular .cs-item-text,
  #pricing-357 .cs-popular .cs-price,
  #pricing-357 .cs-popular .cs-included,
  #pricing-357 .cs-popular .cs-li,
  #pricing-357 .cs-popular .cs-small {
    color: var(--bodyTextColorWhite);
  }
  #pricing-357 .cs-popular .cs-button-solid {
    background-color: #fff;
    color: var(--primary);
    transition: color 0.3s;
  }
  #pricing-357 .cs-popular .cs-button-solid:before {
    background-color: var(--secondary);
  }
  #pricing-357 .cs-popular .cs-button-solid:hover {
    color: #fff;
  }
  #pricing-357 .cs-popular .cs-li-img {
    /* turns the check mark white */
    filter: brightness(900%);
  }
  #pricing-357 .cs-popular2 {
    background: var(--primary);
    position: relative;
    /* clips the popular tag */
    overflow: hidden;
    /* send to the top */
    /* order: -1; */
  }
  #pricing-357 .cs-popular2:before {
    /* Most Popular Tag */
    content: 'Save $300';
    font-size: 1rem;
    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: -2.75rem;
    transform: rotate(42deg);
  }
  #pricing-357 .cs-popular2 .cs-h3,
  #pricing-357 .cs-popular2 .cs-item-text,
  #pricing-357 .cs-popular2 .cs-price,
  #pricing-357 .cs-popular2 .cs-included,
  #pricing-357 .cs-popular2 .cs-li,
  #pricing-357 .cs-popular2 .cs-small {
    color: var(--bodyTextColorWhite);
  }
  #pricing-357 .cs-popular2 .cs-button-solid {
    background-color: #fff;
    color: var(--primary);
    transition: color 0.3s;
  }
  #pricing-357 .cs-popular2 .cs-button-solid:before {
    background-color: var(--secondary);
  }
  #pricing-357 .cs-popular2 .cs-button-solid:hover {
    color: #fff;
  }
  #pricing-357 .cs-popular2 .cs-li-img {
    /* turns the check mark white */
    filter: brightness(900%);
  }
  #pricing-357 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.25rem;
    padding: 0;
    color: var(--headerColor);
  }
  #pricing-357 .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-357 .cs-option-group {
    position: relative;
  }
  #pricing-357 .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-357 .cs-price {
    font-size: 3.0625rem;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--headerColor);
    /* spans are inline, need to add block for margin to work */
    display: block;
    text-align: center;
  }
  #pricing-357 .cs-small {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4E4B66;
  }
  #pricing-357 .cs-included {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 700;
    /* 16px - 24px */
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: var(--headerColor);
    display: block;
  }
  #pricing-357 .cs-ul {
    padding: 0;
    margin: 0;
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
  }
  #pricing-357 .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-357 .cs-li:last-of-type {
    margin-bottom: 0;
  }
  #pricing-357 .cs-disabled {
    /* fades out list items that are disabled from the price tier */
    filter: grayscale(1);
    opacity: 0.3;
  }
  #pricing-357 .cs-li-img {
    width: 1.25rem;
    height: auto;
    margin-top: 0.1875rem;
    margin-right: 0.5rem;
  }
  #pricing-357 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.25rem);
    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;
    margin-top: auto;
  }
  #pricing-357 .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;
  }
  #pricing-357 .cs-button-solid:hover:before {
    width: 100%;
  }
  #pricing-357 .cs-button-solid {
    /* cs-button-solid override */
    width: 100%;
    /* margin: 0 0 1rem 0; */
  }
  .cs-button-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
  }
  .cs-option {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    padding: 0.75rem 1.5rem;
    background-color: #f7f7f7;
    color: var(--bodyTextColor);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .cs-option:hover {
    background-color: var(--primary);
    color: #fff;
  }
  .cs-option.active {
    background-color: var(--primary);
    color: #fff;
  }
  .cs-card-group.cs-hidden {
    display: none;
  }
}
/* Tablet 768px */
@media only screen and (min-width: 48rem) {
  #pricing-357 .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  #pricing-357 .cs-option1 {
    /* default styles when there is no active class on the cs-card-group */
    opacity: 1;
    visibility: visible;
    left: left;
    top: auto;
    transform: scale(1);
    transform-origin: left top;
    transition: transform 0.6s, opacity 0.3s, visibility 0.3s;
  }
  #pricing-357 .cs-option1 .cs-item {
    /* default styles when there is no active class on the cs-card-group */
    opacity: 1;
    transform: translateY(0rem) rotateY(0deg);
    margin-top: auto;
    height: 34em;
    transition: opacity 0.3s, transform 0.6s;
  }
  #pricing-357 .cs-option1 .cs-item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #pricing-357 .cs-option1 .cs-item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  #pricing-357 .cs-option2 {
    /* default styles when there is no active class on the cs-card-group */
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    left: 0;
    /* reset on tablet */
    top: 62.5rem;
    transform: scale(0);
    transform-origin: left top;
    transition: transform 0.6s, opacity 0.3s, visibility 0.3s, bottom 0.3s;
  }
  #pricing-357 .cs-option2 .cs-item {
    /* default styles when there is no active class on the cs-card-group */
    opacity: 0;
    transform: translateY(1.25rem) rotateY(90deg);
    margin-top: auto;
    height: 44em;
    transition: opacity 0.3s, transform 0.6s;
  }
  #pricing-357 .cs-option2 .cs-item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #pricing-357 .cs-option2 .cs-item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  #pricing-357 .cs-item {
    width: 100%;
    /* ensures they stay the same height if you add more content */
    align-self: stretch;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  #pricing-357 .cs-popular {
    /* send back to its original order */
    order: unset;
  }
  #pricing-357 #cs-option2-357:before {
    top: -0.625rem;
  }
  #pricing-357 #cs-option2-357:after {
    top: -2.1875rem;
    right: -6.25rem;
  }
}
.left h2 span {
  color: var(--primary);
}
.left h2 {
  font-size: 2.5em;
  margin-bottom: 25px;
}
h2 span {
  font-weight: 700;
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #pricing-357 {
    background-color: var(--dark);
  }
  body.dark-mode #pricing-357 .cs-topper {
    color: var(--secondaryLight);
  }
  body.dark-mode #pricing-357 .cs-title,
  body.dark-mode #pricing-357 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-357 .cs-plan {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-357 .cs-item {
    background: var(--accent);
    border-color: var(--medium);
  }
  body.dark-mode #pricing-357 .cs-popular {
    background: var(--primary);
  }
  body.dark-mode #pricing-357 .cs-h3,
  body.dark-mode #pricing-357 .cs-item-text,
  body.dark-mode #pricing-357 .cs-price,
  body.dark-mode #pricing-357 .cs-included,
  body.dark-mode #pricing-357 .cs-li,
  body.dark-mode #pricing-357 .cs-small {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-357 .cs-li-img {
    /* make so bright it turns white */
    filter: brightness(900%) grayscale(1);
  }
  body.dark-mode .left h2 span {
    color: var(--secondaryLight);
  }
}
/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* Mobile 360px */
@media only screen and (min-width: 0rem) {
  #pricing-387 {
    padding: var(--sectionPadding);
  }
  #pricing-387 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #pricing-387 .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-387 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #pricing-387 .cs-text {
    /* 48px - 64px */
    margin-bottom: clamp(3rem, 3vw, 4rem);
  }
  #pricing-387 .cs-toggle-group {
    width: 18.5rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #pricing-387 .cs-plan {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
    color: var(--headerColor);
  }
  #pricing-387 .cs-plan:hover {
    cursor: pointer;
  }
  #pricing-387 .cs-toggle-note {
    font-size: 0.875rem;
    line-height: 1.4em;
    color: var(--bodyTextColor);
    margin: 1rem auto 0 auto;
    max-width: 31.25rem;
    text-align: center;
    /* Dark mode support */
  }
  body.dark-mode #pricing-387 .cs-toggle-note {
    color: #fff;
  }
  #pricing-387 .cs-toggle {
    width: 3.5rem;
    height: 1.75rem;
    border-radius: 2.5rem;
    background-color: var(--primary);
    margin: 0 0.75rem;
    position: relative;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #pricing-387 .cs-toggle:hover {
    cursor: pointer;
  }
  #pricing-387 .cs-toggle.active:before {
    opacity: 1;
  }
  #pricing-387 .cs-toggle.active .cs-toggle-switch {
    left: 2rem;
  }
  #pricing-387 .cs-toggle:before {
    /* top right box */
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ffba43 -24.69%, #e12213 126.23%);
    opacity: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 2.5rem;
    transition: opacity 0.3s;
  }
  #pricing-387 .cs-toggle-switch {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.25rem;
    transition: left 0.3s;
    background: #fff;
  }
  #pricing-387 .cs-option-group {
    position: relative;
    /* these two create the 3D illusion */
    perspective: 700px;
    transform-style: preserve-3d;
  }
  #pricing-387 .cs-option-group.option2-active .cs-option1-text {
    opacity: 0;
    transform: scaleY(0);
  }
  #pricing-387 .cs-option-group.option2-active .cs-option2-text {
    top: 0;
    opacity: 1;
  }
  #pricing-387 .cs-option1-text {
    transform-origin: center center;
    transition: opacity 0.3s, transform 0.3s;
  }
  #pricing-387 #cs-option2-387 {
    position: relative;
  }
  #pricing-387 #cs-option2-387:before {
    /* squiggle arrow */
    content: "";
    position: absolute;
    display: block;
    height: 1.75rem;
    width: 1.75rem;
    background: url("https://csimg.nyc3.digitaloceanspaces.com/Pricing/sqiggle-arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    top: -0.3125rem;
    right: -2rem;
  }
  #pricing-387 #cs-option2-387:after {
    /* percentage off */
    content: "25% off";
    font-size: 0.75rem;
    line-height: 1.625rem;
    text-transform: uppercase;
    font-weight: 500;
    width: auto;
    height: 1.625rem;
    padding: 0 0.75rem;
    border-radius: 0.5rem;
    background: #e5f2ff;
    box-sizing: border-box;
    color: var(--primary);
    opacity: 1;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: -1.875rem;
    right: -2.25rem;
  }
  #pricing-387 .cs-option2-text {
    /* push the text down, outside of the group wrapper and animate back up */
    opacity: 0;
    position: absolute;
    left: 0;
    top: 1.875rem;
    transition: opacity 0.3s, top 0.6s cubic-bezier(0.42, 0, 0.16, 1.39);
  }
  #pricing-387 .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-387 .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: 39.375rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #e8e8e8;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
  }
  #pricing-387 .cs-popular {
    background: var(--primary);
    position: relative;
    /* clips the popular tag */
    overflow: hidden;
    /* send to the top */
    order: -1;
  }
  #pricing-387 .cs-popular:before {
    /* Most Popular Tag */
    content: "Popular";
    font-size: 0.875rem;
    text-align: center;
    line-height: 1.8125rem;
    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-387 .cs-popular .cs-h3,
  #pricing-387 .cs-popular .cs-item-text,
  #pricing-387 .cs-popular .cs-price,
  #pricing-387 .cs-popular .cs-included,
  #pricing-387 .cs-popular .cs-li,
  #pricing-387 .cs-popular .cs-small {
    color: var(--bodyTextColorWhite);
  }
  #pricing-387 .cs-popular .cs-button-solid {
    background-color: #fff;
    color: var(--primary);
    transition: color 0.3s;
  }
  #pricing-387 .cs-popular .cs-button-solid:before {
    background-color: var(--secondary);
  }
  #pricing-387 .cs-popular .cs-button-solid:hover {
    color: #fff;
  }
  #pricing-387 .cs-popular .cs-li-img {
    /* turns the check mark white */
    filter: brightness(900%);
  }
  #pricing-387 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.25rem;
    padding: 0;
    color: var(--headerColor);
  }
  #pricing-387 .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-387 .cs-option-group {
    position: relative;
  }
  #pricing-387 .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-387 .cs-price {
    font-size: 3.0625rem;
    line-height: 1.2em;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--headerColor);
    /* spans are inline, need to add block for margin to work */
    display: block;
  }
  #pricing-387 .cs-small {
    font-size: 0.875rem;
    font-weight: 400;
    color: #4e4b66;
  }
  #pricing-387 .cs-included {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 700;
    /* 16px - 24px */
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: var(--headerColor);
    display: block;
  }
  #pricing-387 .cs-ul {
    padding: 0;
    margin: 0;
    /* 32px - 40px */
    margin-bottom: clamp(2rem, 4vw, 2.5rem);
  }
  #pricing-387 .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-387 .cs-li:last-of-type {
    margin-bottom: 0;
  }
  #pricing-387 .cs-disabled {
    /* fades out list items that are disabled from the price tier */
    filter: grayscale(1);
    opacity: 0.3;
  }
  #pricing-387 .cs-li-img {
    width: 1.25rem;
    height: auto;
    margin-top: 0.1875rem;
    margin-right: 0.5rem;
  }
  #pricing-387 .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;
  }
  #pricing-387 .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;
  }
  #pricing-387 .cs-button-solid:hover:before {
    width: 100%;
  }
  #pricing-387 .cs-button-solid {
    width: 100%;
    margin: 0 0 1rem 0;
  }
}
/* Tablet 768px */
@media only screen and (min-width: 48rem) {
  #pricing-387 .cs-card-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    flex-wrap: nowrap;
  }
  #pricing-387 .cs-item {
    width: 100%;
    /* ensures they stay the same height if you add more content */
    align-self: stretch;
    /* flexbox to align buttons to bottom */
    display: flex;
    flex-direction: column;
  }
  #pricing-387 .cs-button-solid {
    /* push button to bottom of card */
    margin-top: auto;
  }
  #pricing-387 .cs-popular {
    /* send back to its original order */
    order: unset;
  }
  #pricing-387 #cs-option2-387:before {
    top: -0.625rem;
  }
  #pricing-387 #cs-option2-387:after {
    top: -2.1875rem;
    right: -6.25rem;
  }
}
/* Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
  #pricing-387 .cs-top-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  #pricing-387 .cs-top-section: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-387 .cs-option-group {
    margin-right: 5rem;
  }
  #pricing-387 .cs-option-group:after {
    display: none;
  }
  #pricing-387 .cs-ul {
    /* splits the list into 2 columns */
    columns: 2;
    column-gap: 6.875rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #pricing-387 {
    background-color: var(--dark);
  }
  body.dark-mode #pricing-387 .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #pricing-387 .cs-title,
  body.dark-mode #pricing-387 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-387 .cs-plan {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-387 .cs-item {
    background: var(--accent);
    border-color: var(--medium);
  }
  body.dark-mode #pricing-387 .cs-popular {
    background: var(--primary);
  }
  body.dark-mode #pricing-387 .cs-h3,
  body.dark-mode #pricing-387 .cs-item-text,
  body.dark-mode #pricing-387 .cs-price,
  body.dark-mode #pricing-387 .cs-included,
  body.dark-mode #pricing-387 .cs-li,
  body.dark-mode #pricing-387 .cs-small {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-387 .cs-li-img {
    /* make so bright it turns white */
    filter: brightness(900%) grayscale(1);
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-18 {
    padding: var(--sectionPadding);
  }
  #services-18 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-18 .cs-card-group {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 56.25rem;
    margin: 0;
    padding: 2.5rem 0 4.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
  }
  #services-18 .cs-item {
    text-align: left;
    list-style: none;
    width: 100%;
    max-width: 23rem;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #services-18 .cs-picture {
    margin-right: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* 60px - 68px */
    width: clamp(3.75rem, 6vw, 4.25rem);
    height: clamp(3.75rem, 6vw, 4.25rem);
    border-radius: 50%;
    border: 2px solid var(--primary);
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #services-18 .cs-icon {
    width: 1.875rem;
    height: auto;
    display: block;
  }
  #services-18 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0;
    margin-bottom: 1rem;
    color: var(--headerColor);
  }
  #services-18 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #services-18 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.25rem);
    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;
  }
  #services-18 .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;
  }
  #services-18 .cs-button-solid:hover:before {
    width: 100%;
  }
  #services-18 .cs-button-solid {
    /* button override */
    margin-top: -4.5rem;
    /* creates illusion of 2 separate lines */
    outline: 1.25rem solid #fff;
  }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
  #services-18 .cs-card-group {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 2.5rem;
    row-gap: 2.5rem;
    display: flex;
    align-items: flex-start;
  }
  #services-18 .cs-item {
    margin: 0;
    width: 46%;
  }
  #services-18 .cs-button-solid {
    margin-top: calc(clamp(4.5rem, 9vw, 5.625rem)*-1);
  }
}
/* Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #services-18 .cs-card-group {
    max-width: 80rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #services-18 .cs-text,
  body.dark-mode #services-18 .cs-item-text {
    opacity: 0.8;
  }
  body.dark-mode #services-18 .cs-icon {
    /* turns it white */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #services-18 .cs-button-solid {
    outline-color: var(--dark);
  }
  body.dark-mode #services-18 .cs-title,
  body.dark-mode #services-18 .cs-text,
  body.dark-mode #services-18 .cs-h3,
  body.dark-mode #services-18 .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-2066 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
  }
  #faq-2066 .cs-container {
    width: 100%;
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #faq-2066 .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-2066 .cs-flex-group {
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
  }
  #faq-2066 .cs-button-group {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-self: stretch;
  }
  #faq-2066 .cs-option {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    /* 50px - 72px */
    line-height: 1.2em;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem;
    background-color: #fff;
    color: var(--bodyTextColor);
    border: 1px solid #bababa;
    border-radius: 0.5rem;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
  }
  #faq-2066 .cs-option:before {
    /* background color */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
  #faq-2066 .cs-option:hover:hover {
    cursor: pointer;
    border-color: var(--primary);
  }
  #faq-2066 .cs-option:hover:hover:before {
    opacity: 0.1;
  }
  #faq-2066 .cs-option.cs-active {
    color: var(--primary);
    border-color: var(--primary);
  }
  #faq-2066 .cs-option.cs-active:before {
    opacity: 0.1;
  }
  #faq-2066 .cs-wrapper {
    position: relative;
  }
  #faq-2066 .cs-faq-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transform-style: preserve-3d;
    perspective: 900px;
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
    /* makes the transfrom scaling orgin the top left corner, dictates the direction by which the scale transforms animate towards */
    transform-origin: top;
  }
  #faq-2066 .cs-faq-group.cs-hidden {
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    /* hidden galleries have a 0 opacity, and we animate the opacity to 1 when they become active */
    opacity: 0;
    /* by using visibility:hidden instead of display:none, we can see the animations from the opacity and transforms, display:none won't render animations. */
    visibility: hidden;
    position: absolute;
    /* this top and left value help control the animation, by setting it to position absolute and left 0, the FAQ won't fly off screen to the left, it will stop its position to be at the left edge of the .cs-flex-group (left: 0). Same for the bottom:0 value, the FAQ won't go past that position when it animates */
    top: 0;
    left: 0;
    /* prevents the hidden galleries from overflowing the section, and makes a nice animations to transition to and from */
    transform: scaleY(0);
  }
  #faq-2066 .cs-faq-group.cs-hidden .cs-faq-item {
    opacity: 0;
    transform: rotateX(270deg);
  }
  #faq-2066 .cs-faq-item {
    list-style: none;
    width: 100%;
    /* clips all corners of the button that overlap the rounded border */
    overflow: hidden;
    opacity: 1;
    border-bottom: 1px solid #e8e8e8;
    top: 0;
    transform: rotateX(0deg);
    transition: transform 0.6s, opacity 0.3s;
  }
  #faq-2066 .cs-faq-item:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #faq-2066 .cs-faq-item:nth-of-type(3) {
    transition-delay: 0.2s;
  }
  #faq-2066 .cs-faq-item:nth-of-type(4) {
    transition-delay: 0.3s;
  }
  #faq-2066 .cs-faq-item:nth-of-type(5) {
    transition-delay: 0.4s;
  }
  #faq-2066 .cs-faq-item:nth-of-type(6) {
    transition-delay: 0.5s;
  }
  #faq-2066 .cs-faq-item:nth-of-type(7) {
    transition-delay: 0.6s;
  }
  #faq-2066 .cs-faq-item:nth-of-type(8) {
    transition-delay: 0.7s;
  }
  #faq-2066 .cs-faq-item:nth-of-type(9) {
    transition-delay: 0.8s;
  }
  #faq-2066 .cs-faq-item:nth-of-type(10) {
    transition-delay: 0.9s;
  }
  #faq-2066 .cs-faq-item:last-of-type {
    border-bottom: none;
  }
  #faq-2066 .cs-faq-item.active .cs-button {
    color: var(--primary);
  }
  #faq-2066 .cs-faq-item.active .cs-button:before {
    background-color: var(--primary);
    transform: rotate(315deg);
  }
  #faq-2066 .cs-faq-item.active .cs-button:after {
    background-color: var(--primary);
    transform: rotate(-315deg);
  }
  #faq-2066 .cs-faq-item.active .cs-item-p {
    height: auto;
    /* 20px - 24px bottom */
    /* 16px - 24px left & right */
    padding: 0 0 1.5rem 0;
    opacity: 1;
  }
  #faq-2066 .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: bold;
    line-height: 1.2em;
    text-align: left;
    width: 100%;
    padding: 1.5rem 0;
    background-color: #fff;
    color: var(--headerColor);
    border: none;
    display: block;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq-2066 .cs-button:hover {
    cursor: pointer;
  }
  #faq-2066 .cs-button:before {
    /* left line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: rotate(45deg);
    transition: transform 0.5s;
    /* animate the transform from the left side of the x axis, and the center of the y */
    transform-origin: left center;
  }
  #faq-2066 .cs-button:after {
    /* right line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 50%;
    right: 1.3125rem;
    transform: rotate(-45deg);
    transition: transform 0.5s;
    /* animate the transform from the right side of the x axis, and the center of the y */
    transform-origin: right center;
  }
  #faq-2066 .cs-button-text {
    width: 80%;
    display: block;
  }
  #faq-2066 .cs-item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 90%;
    height: 0;
    margin: 0;
    padding: 0;
    /* clips the text so it doesn't show up */
    overflow: hidden;
    color: var(--bodyTextColor);
    opacity: 0;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
  #faq-2066 .cs-cta {
    text-align: center;
    width: 100%;
    margin: 0;
    /* 32px - 40px */
    padding: clamp(2rem, 4vw, 2.5rem);
    border: 1px solid var(--primary);
    /*  border-radius: (16/16rem); */
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
  #faq-2066 .cs-cta:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.1;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
  #faq-2066 .cs-flex {
    display: flex;
    flex-direction: column;
  }
  #faq-2066 .cs-cta-title {
    font-size: 1.9375rem;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
  }
  #faq-2066 .cs-cta-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0 0 2rem 0;
    color: var(--bodyTextColor);
  }
  #faq-2066 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 13rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 2rem;
    background-color: var(--primary);
    color: #fff;
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #faq-2066 .cs-button-solid:before {
    content: '';
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    border-radius: 0.25rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #faq-2066 .cs-button-solid:hover:before {
    width: 100%;
  }
  #faq-2066 .cs-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: -1;
    transform: translateX(-50%);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #faq-2066 .cs-container {
    max-width: 80rem;
  }
  #faq-2066 .cs-button-group {
    flex-direction: row;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #faq-2066 .cs-option {
    padding: 0.75rem 1.5rem;
  }
  #faq-2066 .cs-cta {
    text-align: left;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }
  #faq-2066 .cs-cta-text {
    margin: 0;
  }
  #faq-2066 .cs-button-solid {
    flex-shrink: 0;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #faq-2066 {
    background-color: var(--dark);
  }
  body.dark-mode #faq-2066 .cs-title,
  body.dark-mode #faq-2066 .cs-item-p,
  body.dark-mode #faq-2066 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq-2066 .cs-text,
  body.dark-mode #faq-2066 .cs-cta-text {
    opacity: 0.8;
  }
  body.dark-mode #faq-2066 .cs-option {
    background-color: transparent;
    color: var(--bodyTextColorWhite);
    border-color: rgba(255, 255, 255, 0.3);
  }
  body.dark-mode #faq-2066 .cs-option.cs-active,
  body.dark-mode #faq-2066 .cs-option:hover {
    color: var(--secondaryLight);
    border-color: var(--secondaryLight);
  }
  body.dark-mode #faq-2066 .cs-item {
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #faq-2066 .cs-faq-item {
    transition: border-color 0.3s, transform 0.6s;
    border-color: rgba(255, 255, 255, 0.3);
  }
  body.dark-mode #faq-2066 .cs-faq-item.active .cs-button {
    color: var(--secondaryLight);
  }
  body.dark-mode #faq-2066 .cs-faq-item.active .cs-button:before,
  body.dark-mode #faq-2066 .cs-faq-item.active .cs-button:after {
    background-color: #fff;
  }
  body.dark-mode #faq-2066 .cs-faq-item.active .cs-item-p {
    /* 20px - 24px */
    padding-top: clamp(1.25rem, 1.3vw, 1.5rem);
  }
  body.dark-mode #faq-2066 .cs-faq-item:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  body.dark-mode #faq-2066 .cs-faq-item:nth-of-type(3) {
    transition-delay: 0.2s;
  }
  body.dark-mode #faq-2066 .cs-faq-item:nth-of-type(4) {
    transition-delay: 0.3s;
  }
  body.dark-mode #faq-2066 .cs-faq-item:nth-of-type(5) {
    transition-delay: 0.4s;
  }
  body.dark-mode #faq-2066 .cs-faq-item:nth-of-type(6) {
    transition-delay: 0.5s;
  }
  body.dark-mode #faq-2066 .cs-faq-item:nth-of-type(7) {
    transition-delay: 0.6s;
  }
  body.dark-mode #faq-2066 .cs-faq-item:nth-of-type(8) {
    transition-delay: 0.7s;
  }
  body.dark-mode #faq-2066 .cs-faq-item:nth-of-type(9) {
    transition-delay: 0.8s;
  }
  body.dark-mode #faq-2066 .cs-faq-item:nth-of-type(10) {
    transition-delay: 0.9s;
  }
  body.dark-mode #faq-2066 .cs-faq-item:hover {
    transition: border-color 0.3s;
  }
  body.dark-mode #faq-2066 .cs-button {
    background-color: var(--dark);
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq-2066 .cs-button:before,
  body.dark-mode #faq-2066 .cs-button:after {
    background-color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq-2066 .cs-cta-title,
  body.dark-mode #faq-2066 .cs-cta-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq-2066 .cs-graphic {
    display: none;
  }
}
/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #contact-2061 {
    padding: var(--sectionPadding);
    overflow: hidden;
    position: relative;
  }
  #contact-2061 .cs-container {
    width: 100%;
    max-width: 59rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  #contact-2061 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #contact-2061 .cs-text {
    max-width: 40.625rem;
    margin-bottom: 2rem;
  }
  #contact-2061 form {
    width: 100%;
    max-width: 40.625rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #contact-2061 .cs-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  #contact-2061 label {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
  }
  #contact-2061 input,
  #contact-2061 select,
  #contact-2061 textarea {
    font-family: inherit;
    font-size: 1rem;
    width: 100%;
    height: 3.5rem;
    box-sizing: border-box;
    padding: 0 1.5rem;
    background-color: #f7f7f7;
    color: var(--bodyTextColor);
    border: none;
    border-radius: 0.5rem;
  }
  #contact-2061 textarea {
    height: 7.5rem;
    padding-top: 1rem;
    resize: vertical;
  }
  #contact-2061 .cs-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #contact-2061 .cs-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
  }
  #contact-2061 .cs-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin: 0;
  }
  #contact-2061 .cs-checkbox span {
    font-size: 1rem;
    font-weight: 400;
  }
  #contact-2061 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 9.375rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 2rem;
    background-color: var(--primary);
    color: #fff;
    /*  border-radius: (8/16rem); */
    display: inline-block;
    position: relative;
    z-index: 1;
    border: none;
    cursor: pointer;
  }
  #contact-2061 .cs-button-solid:before {
    content: "";
    width: 0%;
    height: 100%;
    background: #000;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #contact-2061 .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #contact-2061 .cs-checkbox-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #contact-2061 input,
  body.dark-mode #contact-2061 select,
  body.dark-mode #contact-2061 textarea {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
  }
}
#pricing-tabs {
  position: relative;
  z-index: 10;
}
#pricing-tabs .cs-tab-group {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: -3.5rem;
  margin-bottom: 0;
  z-index: 20;
  position: relative;
}
#pricing-tabs .cs-tab-option {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 1.5rem;
  height: 3.25rem;
  line-height: 3.25rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--headerColor);
  border: 3px solid #e0e6ea;
  border-bottom: none;
  border-radius: 0.25rem 0.25rem 0 0;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: none;
  position: relative;
  z-index: 21;
  text-align: center;
  letter-spacing: 0.05em;
}
#pricing-tabs .cs-tab-option:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
#pricing-tabs .cs-tab-option.cs-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  z-index: 22;
}
#pricing-tabs .cs-tab-section {
  display: block;
  width: 100%;
  background: #fff;
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: none;
  padding-top: 3.5rem;
}
#pricing-tabs .cs-tab-section.cs-hidden {
  display: none;
}
@media (max-width: 600px) {
  #pricing-tabs .cs-tab-group {
    /* margin-top: -1.5rem; */
    gap: 0.25rem;
  }
  #pricing-tabs .cs-tab-option {
    font-size: 0.95rem;
    padding: 0 0.75rem;
    height: 2.5rem;
    line-height: 2.5rem;
    border-radius: 0.25rem 0.25rem 0 0;
  }
  #pricing-tabs .cs-tab-section {
    padding-top: 2.2rem;
  }
}
@media (min-width: 0) {
  body.dark-mode #pricing-tabs .cs-tab-section {
    background: var(--dark);
  }
  body.dark-mode #pricing-tabs .cs-tab-option {
    background: rgba(30, 40, 50, 0.7);
    color: #fff;
    border: 3px solid #22303a;
  }
  body.dark-mode #pricing-tabs .cs-tab-option.cs-active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
  }
}
#feature-comparison {
  width: 100%;
  margin: 0rem auto 3rem auto;
  overflow: visible;
}
#feature-comparison .feature-table-container {
  max-width: 1100px;
  margin: 0 auto 2rem auto;
  background: #fff;
  border-radius: 0.5rem;
  border: 1.5px solid #e0e6ea;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  overflow-x: auto;
  padding: 1.5rem 1rem 2.5rem 1rem;
}
#feature-comparison .feature-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1rem;
  background: transparent;
}
#feature-comparison .feature-table-header th {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: center;
  padding: 1rem 0.5rem;
  border-bottom: 2px solid #e0e6ea;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
#feature-comparison .feature-row td {
  text-align: center;
  padding: 0.75rem 0.5rem;
  border-bottom: 1px solid #e0e6ea;
  background: #fff;
  font-weight: 500;
}
#feature-comparison .feature-row td:first-child {
  text-align: left;
  font-weight: bold;
  width: 30%;
}
#feature-comparison .feature-detail-row td {
  background: #f7fafd;
  color: #333;
  font-size: 0.98rem;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #e0e6ea;
  text-align: left;
}
#feature-comparison .feature-expand-btn {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: color 0.2s;
  position: relative;
}
#feature-comparison .feature-expand-btn[aria-expanded="true"] {
  color: #222;
}
#feature-comparison .feature-expand-btn:after {
  content: '\25BC';
  font-size: 0.8em;
  margin-left: 0.5em;
  transition: transform 0.2s;
  display: inline-block;
}
#feature-comparison .feature-expand-btn[aria-expanded="true"]:after {
  transform: rotate(180deg);
}
@media (max-width: 700px) {
  #feature-comparison .feature-table-container {
    margin: 0.5rem 0.5rem 2rem 0.5rem;
    padding: 1.5rem 0.5rem 2.5rem 0.5rem;
  }
  #feature-comparison .feature-table-header th,
  #feature-comparison .feature-row td,
  #feature-comparison .feature-detail-row td {
    font-size: 0.95rem;
    padding: 0.5rem 0.2rem;
  }
  #feature-comparison .feature-row td:first-child,
  #feature-comparison .feature-detail-row td {
    padding-left: 0.5rem;
  }
}
@media (min-width: 0) {
  body.dark-mode #feature-comparison .feature-table-container {
    background: #18222b;
    border: 1.5px solid #2c3a47;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  }
  body.dark-mode #feature-comparison .feature-table-header th {
    background: #22303a;
    color: #fff;
    border-bottom: 2px solid #2c3a47;
  }
  body.dark-mode #feature-comparison .feature-row td {
    background: #18222b;
    color: #fff;
    border-bottom: 1px solid #2c3a47;
  }
  body.dark-mode #feature-comparison .feature-detail-row td {
    background: #22303a;
    color: #e0e6ea;
    border-bottom: 1px solid #2c3a47;
  }
  body.dark-mode #feature-comparison .feature-expand-btn {
    color: var(--secondaryLight, #4fc3f7);
  }
  body.dark-mode #feature-comparison .feature-expand-btn[aria-expanded="true"] {
    color: #fff;
  }
}
@media (min-width: 0) {
  body.dark-mode #feature-comparison .feature-table-toggle-header button,
  body.dark-mode #feature-comparison .feature-table-toggle-header span {
    color: #fff !important;
    border-bottom-color: var(--primary) !important;
  }
}
/*-- -------------------------- -->
<---       Add-on Pricing        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #pricing-1387 {
    padding: var(--sectionPadding);
    /* clips the cs-floater and prevents it from causing overflow issues */
    overflow: hidden;
    background-color: #f7f7f7;
    position: relative;
    z-index: 1;
  }
  #pricing-1387 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 36.5rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 3vw, 4rem);
    position: relative;
  }
  #pricing-1387 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #pricing-1387 .cs-title {
    max-width: 20ch;
    margin: 0 0 1rem;
  }
  #pricing-1387 .cs-text {
    margin-bottom: 1rem;
  }
  #pricing-1387 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #pricing-1387 .cs-toggle-group {
    width: 100%;
    max-width: 25.875rem;
    margin: 0;
    padding: 0.75rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    background-color: #f1f1f4;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #pricing-1387 .cs-plan {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
    color: var(--headerColor);
  }
  #pricing-1387 .cs-plan:hover {
    cursor: pointer;
  }
  #pricing-1387 .cs-toggle {
    width: 3.25rem;
    height: 2rem;
    border-radius: 2.5rem;
    background-color: var(--primaryLight);
    margin: 0 1rem;
    position: relative;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #pricing-1387 .cs-toggle:hover {
    cursor: pointer;
  }
  #pricing-1387 .cs-toggle.active:before {
    opacity: 1;
  }
  #pricing-1387 .cs-toggle.active .cs-toggle-switch {
    left: 1.4375rem;
  }
  #pricing-1387 .cs-toggle:before {
    /* top right box */
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 2.5rem;
    transition: opacity 0.3s;
  }
  #pricing-1387 .cs-toggle-switch {
    width: 1.625rem;
    height: 1.625rem;
    display: block;
    border-radius: 50%;
    filter: drop-shadow(0px 3px 1px rgba(0, 0, 0, 0.06)) drop-shadow(0px 3px 8px rgba(0, 0, 0, 0.15));
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.1875rem;
    transition: left 0.3s;
    background: #fff;
  }
  #pricing-1387 .cs-card-group {
    width: 100%;
    max-width: 39.375rem;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* 16px - 20px */
    gap: clamp(1rem, 2.3vw, 1.25rem);
  }
  #pricing-1387 .cs-card-group.cs-active.cs-option1 {
    /* when the active class is on the cs-card-group, run these styles */
    transform: scale(0);
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
  }
  #pricing-1387 .cs-card-group.cs-active.cs-option1 .cs-item {
    /* when the active class is on the cs-card-group, run these styles */
    opacity: 0;
    transform: translateY(1.25rem) rotateY(90deg);
    transition: opacity 0.3s, transform 0.6s;
  }
  #pricing-1387 .cs-card-group.cs-active.cs-option2 {
    /* when the active class is on the cs-card-group, run these styles */
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    position: relative;
    right: auto;
    bottom: auto;
    transform: scale(1);
  }
  #pricing-1387 .cs-card-group.cs-active.cs-option2 .cs-item {
    /* when the active class is on the cs-card-group, run these styles */
    opacity: 1;
    transform: translateY(0rem) rotateY(0deg);
  }
  #pricing-1387 .cs-option1 {
    /* default styles when there is no active class on the cs-card-group */
    opacity: 1;
    visibility: visible;
    right: 0;
    bottom: auto;
    transform: scale(1);
    transform-origin: top;
    transition: transform 0.6s, opacity 0.3s, visibility 0.3s;
  }
  #pricing-1387 .cs-option1 .cs-item {
    /* default styles when there is no active class on the cs-card-group */
    opacity: 1;
    transform: translateY(0rem) rotateY(0deg);
    transition: opacity 0.3s, transform 0.6s;
  }
  #pricing-1387 .cs-option1 .cs-item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #pricing-1387 .cs-option1 .cs-item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  #pricing-1387 .cs-option2 {
    /* default styles when there is no active class on the cs-card-group */
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: scale(0);
    transform-origin: top;
    transition: transform 0.6s, opacity 0.3s, visibility 0.3s;
  }
  #pricing-1387 .cs-option2 .cs-item {
    /* default styles when there is no active class on the cs-card-group */
    opacity: 0;
    transform: translateY(1.25rem) rotateY(90deg);
    transition: opacity 0.3s, transform 0.6s;
  }
  #pricing-1387 .cs-option2 .cs-item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #pricing-1387 .cs-option2 .cs-item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  #pricing-1387 .cs-item {
    text-align: center;
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }
  #pricing-1387 .cs-item.cs-popular .cs-flex {
    background-color: var(--primary);
  }
  #pricing-1387 .cs-item.cs-popular .cs-tag {
    display: flex;
  }
  #pricing-1387 .cs-item.cs-popular .cs-package,
  #pricing-1387 .cs-item.cs-popular .cs-price,
  #pricing-1387 .cs-item.cs-popular .cs-duration {
    color: var(--bodyTextColorWhite);
  }
  #pricing-1387 .cs-item.cs-popular .cs-duration {
    opacity: 0.8;
  }
  #pricing-1387 .cs-item.cs-popular .cs-button-transparent {
    background-color: var(--primary);
    color: #fff;
    transition: color 0.3s, border-color 0.6s, background-color 0.3s;
  }
  #pricing-1387 .cs-item.cs-popular .cs-button-transparent:hover {
    border-color: #1a1a1a;
    background-color: #1a1a1a;
  }
  #pricing-1387 .cs-flex {
    /* 196px - 250px */
    width: clamp(12.25rem, 25vw, 15.625rem);
    height: clamp(12.25rem, 25vw, 15.625rem);
    margin-bottom: -6.25rem;
    border-radius: 50%;
    background-color: #dbdbdb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  #pricing-1387 .cs-tag {
    font-size: 0.8125rem;
    color: var(--headerColor);
    text-transform: uppercase;
    /* keeps the text in one line, won't jump to two lines */
    white-space: nowrap;
    font-weight: 700;
    padding: 0.5rem;
    gap: 0.25rem;
    border-radius: 50px;
    background-color: #fff;
    /* clips the corners of the pseudo element */
    overflow: hidden;
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    bottom: -0.25rem;
    transform: translateX(-50%);
  }
  #pricing-1387 .cs-tag:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--primary);
    opacity: 0.3;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #pricing-1387 .cs-icon {
    width: 1.25rem;
    height: auto;
    display: flex;
  }
  #pricing-1387 .cs-package {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 700;
    /* 4px - 8px */
    margin: 0 0 clamp(0.25rem, 1vw, 0.5rem) 0;
  }
  #pricing-1387 .cs-price {
    /* 31px - 49px */
    font-size: clamp(1.9375rem, 4vw, 3.0625rem);
    line-height: 1.2em;
    font-weight: 700;
    text-align: inherit;
    margin: 0;
    padding: 0;
    color: var(--headerColor);
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
  #pricing-1387 .cs-duration {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 400;
    text-align: inherit;
    margin: 0;
    /* 4px - 8px */
    padding: clamp(0.25rem, 1vw, 0.5rem) 0;
    color: var(--bodyTextColor);
    display: block;
  }
  #pricing-1387 .cs-info {
    width: 100%;
    padding: 5.375rem 2.5rem 2.5rem;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #pricing-1387 .cs-ul {
    width: 100%;
    margin: 2.5rem 0 2.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
  }
  #pricing-1387 .cs-li {
    font-size: 1rem;
    list-style: none;
    line-height: 1.5em;
    font-weight: 400;
    text-align: inherit;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
    display: block;
  }
  #pricing-1387 .cs-li.cs-disabled {
    opacity: 0.5;
  }
  #pricing-1387 .cs-button-transparent {
    font-size: 1rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    margin: 0;
    color: var(--primary);
    padding: 0 3rem;
    border-radius: 1.875rem;
    border: 1px solid var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #pricing-1387 .cs-button-transparent:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #1a1a1a;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #pricing-1387 .cs-button-transparent:hover {
    color: var(--bodyTextColorWhite);
    border-color: #1a1a1a;
  }
  #pricing-1387 .cs-button-transparent:hover:before {
    width: 100%;
  }
  #pricing-1387 .cs-button-transparent {
    /* this is the section specific override if you choose to pull out the cs-button-transparent and place it in a global stylesheet to resue acorss the entire site */
    margin-top: auto;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #pricing-1387 .cs-container {
    max-width: 80rem;
  }
  #pricing-1387 .cs-container .cs-card-group {
    flex-direction: row;
    align-items: stretch;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #pricing-1387 .cs-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #pricing-1387 .cs-content {
    text-align: left;
    width: 47%;
    align-items: flex-start;
  }
  #pricing-1387 .cs-info {
    min-height: 27rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #pricing-1387 {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #pricing-1387 .cs-title,
  body.dark-mode #pricing-1387 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-1387 .cs-text {
    opacity: 0.8;
  }
  body.dark-mode #pricing-1387 .cs-toggle-group {
    background-color: rgba(0, 0, 0, 0.3);
  }
  body.dark-mode #pricing-1387 .cs-plan {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-1387 .cs-flex {
    background-color: var(--dark);
  }
  body.dark-mode #pricing-1387 .cs-ul:before {
    opacity: 0.5;
  }
  body.dark-mode #pricing-1387 .cs-item.cs-popular .cs-button-transparent {
    background-color: #fff;
    color: var(--primary);
  }
  body.dark-mode #pricing-1387 .cs-item.cs-popular .cs-button-transparent:hover {
    background-color: #1a1a1a;
    color: #fff;
  }
  body.dark-mode #pricing-1387 .cs-info {
    background-color: var(--medium);
  }
  body.dark-mode #pricing-1387 .cs-package {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-1387 .cs-price,
  body.dark-mode #pricing-1387 .cs-duration,
  body.dark-mode #pricing-1387 .cs-li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-1387 .cs-duration,
  body.dark-mode #pricing-1387 .cs-li {
    opacity: 0.8;
  }
  body.dark-mode #pricing-1387 .cs-button-transparent {
    background-color: var(--primary);
    color: #fff;
    border: none;
    transition: color 0.3s, background-color 0.3s;
  }
  body.dark-mode #pricing-1387 .cs-button-transparent:hover {
    background-color: #1a1a1a;
  }
}
