/************ MOBILE - 360PX *************/
/*****************************************/
@media only screen and (min-width: 0em) {
    /**************** INTRO ******************/
    /*****************************************/
    #intro {
        padding: var(--sectionPadding);
        background-color: #ffffff;
        /* clips the wave background from causing overflow issues when it goes off screen */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #intro .container {
        width: 100%;
        height: auto;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #intro .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 46.125rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #intro .content img {
        width: 100%;
        height: auto;
        margin: 1rem 0;
        display: block;
    }
    #intro .title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        width: 100%;
        max-width: 100%;
        margin: 0 0 0.5rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #intro h2,
    #intro h3,
    #intro h4,
    #intro h5,
    #intro h6 {
        font-weight: 400;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #intro h2 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }
    #intro h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #intro h4,
    #intro h5,
    #intro h6 {
        font-size: 1.25rem;
    }
    #intro .button-solid {
        margin-bottom: 2rem;
    }
    #intro .color {
        color: var(--primary);
    }
    #intro p {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--bodyTextColor);
    }
    #intro p:last-of-type {
        margin-bottom: 2rem;
    }
    #intro p a {
        font-size: inherit;
        line-height: inherit;
        text-decoration: underline;
        color: var(--primary);
    }
    #intro ol,
    #intro ul {
        padding-left: 1.5rem;
        margin: 0 0 2rem 0;
        color: var(--bodyTextColor);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #intro ul li {
        list-style: none;
        color: inherit;
        position: relative;
    }
    #intro ul li:before {
        /* custom list bullet */
        content: "";
        width: 3px;
        height: 3px;
        background: currentColor;
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 0.625rem;
        left: -0.75rem;
    }
    #intro .image-group {
        /* scales the whole section down and ties the font size to the vw and stops at 70% of the vale of 1em, changes at desktop */
        font-size: min(1vw, 1em);
        /* everything inside this box is in ems so we can scale it all down proportionally with a font size */
        width: 34rem;
        height: 30rem;
        display: none;
        /* prevents flexbox from squishing it */
        flex: none;
        position: relative;
        /* flips it horizontally */
        transform: scaleX(-1);
    }
    #intro .picture {
        width: 33.875em;
        height: 40.4375em;
        border-radius: 17.8125em;
        border: 0.75em solid #ffffff;
        background-color: #ffffff;
        /* prevents border from affecting height and width */
        box-sizing: border-box;
    }
    #intro .picture img {
        width: 100%;
        height: 100%;
        border-radius: 2rem;
        /* makes it act like a background image */
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        /* flips the image to its original orientation */
        transform: scaleX(-1);
    }
}

/************ TABLET - 768PX *************/
/*****************************************/
@media only screen and (min-width: 48rem) {
    /*************** BANNER ******************/
    /*****************************************/
    #banner .wave {
        width: 100%;
        left: 0;
        transform: none;
    }
    /*************** INTRO *******************/
    /*****************************************/
    #intro .container {
        flex-direction: row;
        align-items: flex-start;
    }
    #intro .image-group {
        width: 25rem;
        display: block;
    }
    #intro .background {
        width: 100%;
        height: 100%;
        background-color: #f7f7f7;
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        z-index: -1;
    }
    #intro .background img {
        width: 100%;
        height: 100%;
        opacity: 0.2;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
}

/******** SMALL DESKTOP - 1024PX *********/
/*****************************************/
@media only screen and (min-width: 64rem) {
    /************** BANNER *******************/
    /*****************************************/
    #banner .int-title{
        padding: clamp(2.75rem, 25vw ,3rem);
    }
}

/********** LARGE DESKTOP 1300PX *********/
/*****************************************/
@media only screen and (min-width: 81.25rem) {
    /*************** INTRO *******************/
    /*****************************************/
    #intro .image-group {
        width: 35rem;
    }
    
    
    #intro .picture {
        max-width: 26rem;
        height: 30rem;
    }
    #intro .picture img {
        width: 100%;
        height: 100%;
        /* makes it act like a background image */
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        /* flips the image to its original orientation */
        transform: scaleX(-1);
    }
}

/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #pricing {
    padding: var(--sectionPadding);
    /* clips svg graphic from overflowing the section */
    overflow: hidden;
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
  }
  #pricing::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("/assets/img/blurry-gradient-haikei-pricing-m.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        black 12%,
        black 88%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
            to bottom,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%
    );
  }
  #pricing .container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px, changes to 20px at large desktop */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #pricing .content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #pricing .card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #pricing .item {
    /* change to center to centralise all text in item */
    text-align: left;
    list-style: none;
    width: 100%;
    margin: 0;
    /* 24px - 40px top & bottom */
    /* 16px - 40px left & right */
    padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem);
    background-color: #fff;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: span 12;
    z-index: 1;
  }
  #pricing .package {
    margin: 0 0 2rem;
    padding: 0 0 1.5rem;
    border-bottom: 1px solid #e8f8f7;
    display: flex;
    flex-direction: column;
    min-height: 2rem;
  }
  #pricing .flex {
    margin-bottom: 0.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #pricing .flex .name {
    /* remove the margin that gives space between the name and item-text. we'll apply this on flex instead */
    margin: 0;
  }
  #pricing .name {
    font-size: clamp(1.75rem, 2vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0 0 0.25rem;
    color: var(--accentColor);
    display: block;
  }
  #pricing .item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0 0 1.5rem;
    min-height: 5rem;
    color: var(--bodyTextColor);
  }
  #pricing .price {
    /* 39px - 49px */
    font-size: clamp(2.4375rem, 5vw, 3.0625rem);
    font-weight: 900;
    line-height: 1.2em;
    color: var(--accentColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 0.25rem;
  }
  #pricing .price-prefix {
    min-height: 1.25rem;
    margin-bottom: 0.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.25rem;
    color: var(--bodyTextColor);
  }
  #pricing .duration {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.3em;
    margin: 0;
    color: var(--textBlack);
    transform: translateY(-9px);
  }
  #pricing .price-note {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.4em;
    margin-top: 0.5rem;
    color: var(--bodyTextColor);
  }
  #pricing .popular {
    position: relative;
  }
  #pricing .tag {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1.2em;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    padding: 0.5rem;
    color: var(--accentColor);
    border: 2px solid var(--borderColor);
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #pricing .ul {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #pricing .li {
    font-size: var(--bodyFontSize);
    line-height: 1.5;
    list-style: none;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #pricing .disabled {
    filter: grayscale(1);
    opacity: 0.5;
  }
  #pricing .disabled .icon {
    filter: grayscale(1);
  }
  #pricing .icon {
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 1.25rem;
    margin-top: 0.125rem;
    color: #06a96b;
    display: block;
  }
  #pricing .feature-text {
    flex: 1;
    min-width: 0;
  }
  #pricing .button-solid {
    width: 100%;
    text-align: center;
  }
  #pricing .addons {
    margin-top: auto;
    margin-bottom: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e8f8f7;
  }
  #pricing .addons-title {
        display: block;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--primary);
  }
  #pricing .addon {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.45rem 0;
        font-size: 0.95rem;
        color: var(--bodyTextColor);
  }
  #pricing .addon span:last-child {
        font-weight: 700;
        color: var(--headerColor);
  }
  #pricing .button-solid {
    font-size: 0.8rem;
    padding: 0 1.25rem;
  }
  #pricing .background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #pricing .background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #pricing .background::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(243, 252, 251, 0.94) 0%, rgba(243, 252, 251, 0.93) 100%), rgba(0, 0, 0, 0) 50% / cover no-repeat;
    position: absolute;
    top: 0;
    left: 0;
  }
  /* Wide Pricing Cards */
  #pricing .item-wide {
    width: 100%;
  }

  /* Ecommerce */
  #pricing .ecommerce {
    background-color: var(--primaryDark);
  }

  #pricing .ecommerce .name,
  #pricing .ecommerce .price {
    color: var(--secondaryLight);
  }

  #pricing .ecommerce .item-text,
  #pricing .ecommerce .duration,
  #pricing .ecommerce .price-prefix,
  #pricing .ecommerce .li {
    color: var(--textLight);
  }

  #pricing .ecommerce .button-solid:before {
    background: #FFF;
  }
  #pricing .ecommerce .button-solid:hover:before {
    background-color: #FFF;
  }
  #pricing .ecommerce .button-solid:hover {
    color: var(--accentColor);
  }

  #pricing .ecommerce .package {
    border-color: rgba(255, 255, 255, 0.2);
  }

  /* Website Care */
  #pricing .care {
    background-color: #fff;
    border: 2px solid var(--primary);
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #pricing .container {
    max-width: 80rem;
  }

  #pricing .content {
    text-align: left;
    align-items: flex-start;
  }

  #pricing .card-group {
    width: 100%;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  #pricing .item {
    grid-column: 1;
  }

  /* Monthly Website + Website Purchase */
  #pricing .item {
    grid-column: span 1;
  }

  /* =========================================
   Ecommerce + Website Care
   ========================================= */

  #pricing .item-wide {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 3rem;
    align-items: center;
    padding: 2rem 2.5rem;
  }

  /* Left side */
  #pricing .wide-content {
    min-width: 0;
  }

  #pricing .item-wide .name {
    margin-bottom: 0.5rem;
  }

  #pricing .item-wide .item-text {
    max-width: 36rem;
    min-height: 0;
    margin: 0 0 1.25rem;
  }

  /* 2 x 2 feature grid */
  #pricing .item-wide .ul {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 2rem;
  }

  /* Right side */
  #pricing .wide-action {
    min-width: 13rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #pricing .wide-action .price-prefix {
    min-height: 0;
    margin: 0 0 0.25rem;
    text-align: center;
  }

  #pricing .wide-action .price {
    justify-content: center;
    margin: 0 0 1rem;
    text-align: center;
  }

  #pricing .wide-action .button-solid {
    width: auto;
    min-width: 12rem;
    margin: 0;
    white-space: nowrap;
  }
  /* Monthly Website + Website Purchase */
  #pricing .item:not(.item-wide) .package {
    text-align: center;
    align-items: center;
  }

  #pricing .item:not(.item-wide) .item-text {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.6em;
  }

  #pricing .item:not(.item-wide) .price-prefix {
    margin-top: 0.75rem;
    font-size: 1rem;
    line-height: 1.4em;
  }

  #pricing .item:not(.item-wide) .price {
    font-size: 3.5rem;
    line-height: 1.1em;
  }

  #pricing .item:not(.item-wide) .duration {
    font-size: 1rem;
  }

  #pricing .item:not(.item-wide) .price-note {
    margin-top: 0.5rem;
    font-size: 0.95rem;
  }

  #pricing .item:not(.item-wide) .button-solid {
    width: auto;
    min-width: 20rem;
    align-self: center;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #pricing::before {
    background-image: url("/assets/img/blurry-gradient-haikei-pricing-d.svg");
  }

  #pricing .content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  #pricing .title {
    margin: 0;
  }

  #pricing .card-group {
    max-width: 68rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #pricing .item {
    grid-column: span 1;
  }

  #pricing .item-wide {
    grid-column: 1 / -1;
  }
  #pricing .item:not(.item-wide) {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media only screen and (min-width: 81.25rem) {
  #pricing .button-solid {
    font-size: 1.1rem;
    padding: 0 1.25rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #pricing .title,
  body.dark-mode #pricing .text,
  body.dark-mode #pricing .name,
  body.dark-mode #pricing .tag,
  body.dark-mode #pricing .price,
  body.dark-mode #pricing .duration,
  body.dark-mode #pricing .item-text,
  body.dark-mode #pricing .li {
    color: var(--textLight);
  }
  body.dark-mode #pricing .text,
  body.dark-mode #pricing .item-text {
    opacity: 1;
  }
  body.dark-mode #pricing .tag {
    border-color: var(--lightAccentColor);
  }
  body.dark-mode #pricing .item {
    background-color: var(--dark);
    border-color: rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
  }
  body.dark-mode #pricing .item:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }
  body.dark-mode #pricing .package {
    border-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #pricing .button-transparent {
    color: var(--textLight);
    border-color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing .icon {
    color: var(--textLight);
  }
  body.dark-mode #pricing .disabled {
    opacity: 0.4;
  }
  body.dark-mode #pricing .exclusive {
    background-color: var(--dark);
  }
  body.dark-mode #pricing .background::before {
    background: var(--dark);
    opacity: 1;
  }
  body.dark-mode #pricing .price-note {
    color: var(--textLight);
  }
}
                                

/************** QUESTIONS  ***************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #questions {
        padding: var(--sectionPadding);
        position: relative;
        background-color: #FFF;
    }
    #questions .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #questions .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;
    }

    #questions .title {
        color: var(--textBlack);
    }
    #questions .text {
        margin-bottom: 1rem;
        color: var(--textBlack);
        opacity: 0.9;
    }
    #questions .text:last-of-type {
        margin-bottom: 2rem;
    }
    #questions .button-solid:hover {
        color: var(--textLight);
    }
    /* Dark Mode */
    body.dark-mode #questions .title,
    body.dark-mode #questions .text {
        color: var(--textLight);
    }
    body.dark-mode #questions .button-solid:hover {
        color: var(--accentColor);
    }
}
       
/*-- -------------------------- -->
<---      How TO Choose         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #choosing {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    /* clips floating arrow from overflowing */
    overflow: hidden;
  }
  #choosing .container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375em;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #choosing .content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 36.625rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #choosing .card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* 16px - 20px */
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #choosing .item {
    list-style: none;
    text-align: left;
    width: 100%;
    margin: 0;
    /* 24px - 32px left & right */
    padding: 2rem clamp(1.5rem, 2vw, 2rem);
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    border-radius: 1rem;
    background-color: #f0efef;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #choosing .title {
    margin-bottom: 1rem;
  }
  #choosing .h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #choosing .item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    text-align: inherit;
    margin: 0 0 1.25rem 0;
    color: var(--bodyTextColor);
  }
  #choosing .accent {
    color: var(--accentColor);
    font-style: italic;
  }
  #choosing .floater {
    width: 21.9375rem;
    height: auto;
    display: none;
    position: absolute;
    top: -6.25rem;
    left: 16rem;
    transform: rotate(66deg) scaleX(-1);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #choosing .container {
    max-width: 80rem;
  }
  #choosing .card-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  #choosing .item {
    width: 48.9%;
    max-width: 25.8125rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #choosing .item {
    /* change to 23vw if you want 4 cards in a row on desktop */
    width: 30vw;
  }
  #choosing .floater {
    display: block;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #choosing .topper {
    color: var(--lightAccentColor);
  }
  body.dark-mode #choosing .title,
  body.dark-mode #choosing .text,
  body.dark-mode #choosing .h3,
  body.dark-mode #choosing .item-p {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #choosing .floater {
    opacity: .3;
  }
  body.dark-mode #choosing .text,
  body.dark-mode #choosing .item-p {
    opacity: .9;
  }
  body.dark-mode #choosing .item {
    background-color: var(--mediumDark);
    border: 1px solid var(--accentColor);
  }
  body.dark-mode #choosing .accent {
    color: var(--lightAccentColor);
  }
}
                                
/*************** DARK MODE ***************/
/*****************************************/
@media only screen and (min-width: 0em) {
    body.dark-mode #intro,
    body.dark-mode #pricing,
    body.dark-mode #questions {
        background-color: var(--dark);
    }
    body.dark-mode #intro .title, 
    body.dark-mode #intro .text,
    body.dark-mode #intro .h2{
        color: var(--primaryLight);
    }
    body.dark-mode #intro .picture {
        background-color: var(--dark);
        border: none;
    }
    body.dark-mode #pricing .topper,
    body.dark-mode #choose-plan .topper,
    body.dark-mode #choose-option .topper,
    body.dark-mode #add-on .topper {
        color: var(--darkModeAccent);
        font-weight: 900
        
    }
    body.dark-mode #pricing .toggle-group,
    body.dark-mode #pricing .info {
        background-color: var(--medium);
    }
    body.dark-mode #option1,
    body.dark-mode #option2 {
        color: var(--primaryLight);
    }
    body.dark-mode #pricing .item .flex {
        background-color: var(--dark);
        border-color: var(--accentColor);
    }
    body.dark-mode #pricing .flex .package,
    body.dark-mode #pricing .flex .price,
    body.dark-mode #pricing .flex .duration,
    body.dark-mode #pricing .ul .li,
    body.dark-mode #pricing .ul .li:first-child {
        color: var(--primaryLight);
    }
    body.dark-mode #pricing .li-img {
        filter: brightness(0) invert(1);
    }

    body.dark-mode #pricing .button-solid:hover {
        color: var(--accentColor);
    }
    
}