/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-2295 {
    padding: var(--sectionPadding);
    background-color: #fff;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-2295 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 4vw, 4rem);
  }
  #sbs-2295 .cs-image-group {
    /* scales the whole section down and ties the font size to the vw and stops at 75% of the vale of 1em, changes at desktop */
    font-size: min(1.98vw, 0.826rem);
    /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
    width: 46.125em;
    height: 36.125em;
    order: -1;
    position: relative;
    z-index: 1;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #sbs-2295 .cs-picture {
    width: 100%;
    height: 100%;
    border: 1em solid var(--bodyTextColorWhite);
    display: block;
  }
  #sbs-2295 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
  }
  #sbs-2295 .cs-picture-wrapper1 {
    width: 25.75em;
    height: 28.5625em;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sbs-2295 .cs-picture-wrapper2 {
    width: 25.8125em;
    height: 29.625em;
    display: flex;
    flex-direction: column-reverse;
    gap: 1rem;
    position: absolute;
    right: 0;
    bottom: 0;
  }
  #sbs-2295 .cs-tag {
    /* 14px - 24px */
    font-size: clamp(0.875rem, 1.4vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    color: var(--headerColor);
  }
  #sbs-2295 .cs-arrow {
    width: 9.25em;
    height: 3.375em;
    position: absolute;
    top: 15.125em;
    left: 15.9375em;
    transform: rotate(30deg);
  }
  #sbs-2295 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #sbs-2295 .cs-title {
    max-width: 30ch;
  }
  #sbs-2295 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-2295 .cs-text:last-of-type {
    margin-bottom: 1.5rem;
  }
  #sbs-2295 .cs-button-solid {
    font-size: 1rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    margin: 0;
    color: #fff;
    padding: 0 3rem;
    border-radius: 1.875rem;
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #sbs-2295 .cs-button-solid: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;
  }
  #sbs-2295 .cs-button-solid:hover:before {
    width: 100%;
  }
  #sbs-2295 .cs-h3 {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    color: var(--headerColor);
  }
  #sbs-2295 .cs-ul {
    margin: 0.75rem 0 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #sbs-2295 .cs-li {
    font-size: 1rem;
    line-height: 1.5em;
    list-style: none;
    /* 20px - 24px */
    padding-left: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--bodyTextColor);
    position: relative;
  }
  #sbs-2295 .cs-li strong {
    color: #1a1a1a;
  }
  #sbs-2295 .cs-li::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    margin-top: 0.5rem;
    background-color: var(--secondary);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(45deg);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-2295 .cs-container {
    max-width: 80rem;
  }
  #sbs-2295 .cs-image-group {
    order: initial;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #sbs-2295 .cs-container {
    flex-direction: row;
    align-items: stretch;
  }
  #sbs-2295 .cs-image-group {
    font-size: min(1.03vw, 1rem);
    height: auto;
  }
  #sbs-2295 .cs-picture-wrapper1 {
    height: auto;
    bottom: 7.5625em;
  }
  #sbs-2295 .cs-picture-wrapper2 {
    height: auto;
    top: 6.5em;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbs-2295 {
    background-color: rgba(0, 0, 0, 0.2);
  }
  body.dark-mode #sbs-2295 .cs-title,
  body.dark-mode #sbs-2295 .cs-text,
  body.dark-mode #sbs-2295 .cs-h3,
  body.dark-mode #sbs-2295 .cs-li,
  body.dark-mode #sbs-2295 .cs-tag {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbs-2295 .cs-text,
  body.dark-mode #sbs-2295 .cs-li {
    opacity: 0.8;
  }
  body.dark-mode #sbs-2295 .cs-text strong,
  body.dark-mode #sbs-2295 .cs-li strong {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbs-2295 .cs-picture {
    border-color: var(--medium);
  }
}
/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #pricing-1518 {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #pricing-1518:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.05;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }
  #pricing-1518 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #pricing-1518 .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-1518 .cs-title {
    margin: 0;
    max-width: 19ch;
  }
  #pricing-1518 .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);
  }
  #pricing-1518 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 28.875rem;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: border-color 0.3s;
  }
  #pricing-1518 .cs-item:hover .cs-wrapper {
    border-color: var(--secondary);
  }
  #pricing-1518 .cs-item:hover .cs-mask {
    --maskBorder: var(--secondary);
  }
  #pricing-1518 .cs-item:hover .cs-button-solid {
    background-color: var(--secondary);
  }
  #pricing-1518 .cs-flex {
    text-align: center;
    margin-bottom: -2rem;
    padding: 3rem 2rem;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 10;
  }
  #pricing-1518 .cs-desc {
    font-size: 1.25rem;
    text-align: inherit;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
  }
  #pricing-1518 .cs-h3 {
    font-size: 1.9375rem;
    text-align: inherit;
    line-height: 1.2em;
    font-weight: 900;
    margin: 0;
    color: var(--headerColor);
    display: block;
  }
  #pricing-1518 .cs-mask {
    --maskBG: #fff;
    --maskBorder: #e8e8e8;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
  }
  #pricing-1518 .cs-mask path {
    transition: stroke 0.3s;
  }
  #pricing-1518 .cs-wrapper {
    height: 100%;
    /* 24px - 40px left & right */
    /* 24px - 32px bottom */
    padding: 2.5rem clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
    box-sizing: border-box;
    background-color: #fff;
    overflow: hidden;
    border-radius: 2rem;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    transition: border-color 0.3s;
  }
  #pricing-1518 .cs-ul {
    /* 24px - 40px */
    padding: 0 0 clamp(1.5rem, 3vw, 2.5rem) 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* 8px - 12px */
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    position: relative;
  }
  #pricing-1518 .cs-li {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: space-between;
    /* push everything to the top so if the li goes to two lines the icon stays at the top */
    align-items: flex-start;
    gap: 1rem;
  }
  #pricing-1518 .cs-li.cs-disabled {
    opacity: 0.5;
  }
  #pricing-1518 .cs-li.cs-disabled .cs-icon {
    filter: grayscale(1) brightness(300%);
  }
  #pricing-1518 .cs-icon {
    width: 1.5rem;
    height: auto;
    display: block;
  }
  #pricing-1518 .cs-info {
    margin-top: auto;
    /* 16px - 24px */
    padding-top: clamp(1rem, 2vw, 1.5rem);
    box-sizing: border-box;
    border-top: 1px solid #E8E8E8;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 1rem;
  }
  #pricing-1518 .cs-price {
    /* 31px - 39px */
    font-size: clamp(1.9375rem, 4vw, 2.4375rem);
    line-height: 1.2em;
    font-weight: 900;
    margin: 0;
    color: #767676;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
  #pricing-1518 .cs-duration {
    font-size: 1.25rem;
    display: block;
    transform: translateY(0.14rem);
  }
  #pricing-1518 .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875em, 5.5vw, 3.5em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    padding: 0 2rem;
    border-radius: 3.125rem;
    background-color: var(--primary);
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #pricing-1518 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #pricing-1518 .cs-button-solid:hover:before {
    width: 100%;
  }
  #pricing-1518 .cs-blob {
    opacity: 0.1;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
  }
  #pricing-1518 .cs-button-solid {
    width: 100%;
    transition: background-color 0.3s;
  }
  #pricing-1518 .cs-background {
    --backgroundBG: #fff;
    width: 100%;
    min-width: 120rem;
    height: auto;
    position: absolute;
    left: 0;
  }
  #pricing-1518 .cs-background-top {
    top: 0;
  }
  #pricing-1518 .cs-background-bottom {
    bottom: 0;
    transform: rotateX(180deg);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #pricing-1518 .cs-container {
    max-width: 80rem;
  }
  #pricing-1518 .cs-card-group {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #pricing-1518 .cs-info {
    flex-direction: row;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #pricing-1518 .cs-title,
  body.dark-mode #pricing-1518 .cs-text,
  body.dark-mode #pricing-1518 .cs-li,
  body.dark-mode #pricing-1518 .cs-price,
  body.dark-mode #pricing-1518 .cs-desc,
  body.dark-mode #pricing-1518 .cs-h3 {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing-1518 .cs-text,
  body.dark-mode #pricing-1518 .cs-desc {
    opacity: 0.8;
  }
  body.dark-mode #pricing-1518 .cs-wrapper {
    background-color: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #pricing-1518 .cs-info {
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #pricing-1518 .cs-mask {
    --maskBG: var(--dark);
    --maskBorder: var(--accent);
  }
  body.dark-mode #pricing-1518 .cs-icon {
    /* makes icon white (if it wasnt black to start) */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #pricing-1518 .cs-button-solid:hover {
    color: var(--primary);
  }
  body.dark-mode #pricing-1518 .cs-button-solid:before {
    background-color: #fff;
  }
  body.dark-mode #pricing-1518 .cs-background {
    --backgroundBG: var(--dark);
  }
}

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