/************ MOBILE - 360PX *************/
/*****************************************/
@media only screen and (min-width: 0rem) {
  /************** HERO/LANDING *************/
  /*****************************************/
  @keyframes floatAnimation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-2rem);
    }
    100% {
        transform: translateY(0);
    }
}
  @keyframes floatAnimation2 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3rem);
    }
    100% {
        transform: translateY(0);
    }
}
  #hero {
    /* 250px - 500px - leaving extra space for the navigation */
    padding: clamp(15.625rem, 35.95vw, 22rem) 1rem 0;
    padding-bottom: 0;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: var(--heroBG);
  }
  #hero .container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #hero .content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 39.375rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #hero .title {
    /* 39px - 61px */
    font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 20ch;
    margin: 0 0 1rem 0;
    color: #fff;
    position: relative;
  }
  #hero .text {
    font-size: 1.25rem;
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    /* 464px - 622px */
    max-width: clamp(29rem, 60vw, 38.785rem);
    margin: 0 0 2.5rem 0;
    color: #e8e8e8;
  }
  #hero .button-solid {
    font-size: 1.25rem;
    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(--accentColor);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #hero .button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #fff;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #hero .button-solid:hover {
    color: var(--accentColor);
  }
  #hero .button-solid:hover:before {
    width: 100%;
  }
  #hero .picture {
    width: 100%;
    /* 427px - 621px */
    max-width: clamp(26.6875rem, 75vw, 38.8125rem);
    /* reserve space to prevent CLS */
    aspect-ratio: 1216 / 911;
    display: block;
    position: relative;
    z-index: 7;
  }
  #hero .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }
  #hero .bubbles {
    /* this scales the children inside of it down. They're all in ems so they pull from the parent font size for their value of em, in this case, the value of em is tied to the viewwidth size and stops growing when the font size is equal to 1em, which it pulls from the nearst parent with a declred font size (which is the html tag, and that tag is 16px by default) */
    font-size: min(2.9vw, 0.9em);
    position: absolute;
    z-index: -1;
  }
  #hero .bubbles1 {
    width: 42.5em;
    height: 45.25em;
    right: -11.875rem;
    /* changes to 172 at large desktop */
    bottom: -6.25rem;
  }
  #hero .bubbles1:before {
    /* white border bubble */
    content: "";
    width: 38.875em;
    height: 38.875em;
    background: transparent;
    border: 2px solid var(--accentColor);
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    animation-name: floatAnimation;
    animation-duration: 7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #hero .bubbles1:after {
    /* purple bubble */
    content: "";
    width: 34.125em;
    height: 34.125em;
    opacity: 0.8;
    border-radius: 50%;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    display: none;
  }
  #hero .bubbles2 {
    width: 20.625rem;
    height: 29.75rem;
    /* changes to 160px at larger desktop */
    left: -16.25rem;
    /* removed at larger desktop */
    top: 3.75rem;
  }
  #hero .bubbles2:before {
    /* white border bubble */
    content: "";
    width: 20.625rem;
    height: 20.625rem;
    background: transparent;
    border: 2px solid var(--accentColor);
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    animation-name: floatAnimation;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #hero .bubbles2:after {
    /* orange bubble */
    content: "";
    width: 16.25rem;
    height: 16.25rem;
    background: #240438;
    opacity: 0.8;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    right: 2.5rem;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    display: none;
  }
  /********** SERVICES WITH CARDS **********/
  /*****************************************/
  @keyframes gradientShift {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 100% 50%;
    }
  }
  #services {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: var(--sectionPadding);
    background-color: var(--primaryLight);
  }
  #services .container {
    width: 100%;
    /* changes to 1440px on desktop */
    max-width: 43.75rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services .content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services .topper {
    color: var(--textBlack);
    font-weight: 500;
  }
  #services .title {
    max-width: 30ch;
    margin-bottom: 1rem;
    color: var(--textBlack);
  }
  #services .text {
    color: var(--textBlack);
  }
  #services .card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #services .item {
    list-style: none;
    text-align: center;
    width: 100%;
    margin: 0;
    padding: 2rem;
    border-radius: 1rem;
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    cursor: pointer;
  
    /* Gradient Setup */
    background: linear-gradient(135deg, var(--primaryDark), rgb(43, 43, 43));
    background-size: 400% 400%;
    background-position: 0% 50%;
  }
  /* Start animation only on hover */
  #services .item:hover {
    animation: gradientShift 0.3s ease forwards;
  }
  #services .link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--textLight);
  }
  #services .icon-container {
    background-color: #FFF;
    width: 10rem;
    height: 10rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    border: 2px solid black;
    align-self: center;
  }
  #services .icon {
    display: block;
  }
  #services .h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 1rem;
    color: var(--textLight);
    font-weight: 800;
  }
  #services .item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--textLight);
  }
  #services .button-solid {
    margin: 1rem;
    align-self: center;
  }
  /************* ABOUT SECTION *************/
  /*****************************************/
  #about {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: var(--sectionPadding);
    background-color: var(--primaryDark);
  }
  #about .container {
    width: 100%;
    /* changes to 1440px on desktop */
    /* max-width: 43.75rem; */
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-self: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #about .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;
  }
  #about .topper {
    color: var(--textLight);
    margin-bottom: 1.25rem;
  }
  #about .title {
    max-width: 30ch;
    color: var(--textLight);
  }
  #about .text {
    color: var(--textLight);
  }
  #about .card-group {
    width: 100%;
    max-width: 39.375rem;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 16px - 20px */
    /* gap: clamp(1rem, 2.3vw, 1.25rem); */
    gap: 6rem;
    position: relative;
  }
  #about .item {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
  }
  #about .picture {
    width: 100%;
    max-width: 25rem;
    height: auto;
    margin: 0 0 0.5rem 0;
    /* removed at tablet */
    aspect-ratio: 0.80589681;
    border-radius: 1rem;
    border: 4px solid #FFF;
    /* clips the img corners */
    /* clips img tag from overflowing it on hover */
    overflow: hidden;
    display: block;
    position: relative;
    z-index: 1;
  }
  #about .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* makes sure the top of the image is at the top of the parent, heads won't get cut off this way */
    object-position: top;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #about .image-info-box{
    width: 90%;
    margin: -3.5rem 0 0;
    padding: 1rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    background-color: #FFF;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  #about .name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--textBlack);
  }
  #about .job-title {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--textBlack);
  }
  #about .image-info-box {
    max-width: 22rem;
  }
  #about .image-info-box img {
    display: block;
    max-width: 30%;
    height: auto;
    gap: 10rem;
  }
  #about .button-solid {
    font-size: 1.25rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    margin-top: 1.5rem;
    color: #fff;
    padding: 0 3rem;
    border-radius: 1.875rem;
    background-color: var(--accentColor);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #about .button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #FFF;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #about .button-solid:hover {
    color: var(--accentColor);
  }
  #about .button-solid:hover:before {
    width: 100%;
  }
  /********** PORTFOLIO SECTION ************/
  /*****************************************/
  #portfolio {
    overflow: hidden;
    position: relative;
    z-index: 1;
    padding: var(--sectionPadding);
    background-color:  var(--primaryLight);
  }
  #portfolio .container {
    width: 100%;
    /* changes to 1440px on desktop */
    max-width: 43.75rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #portfolio .flex {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #portfolio .topper {
    color: var(--textBlack);
    margin-bottom: 1.25rem;
  }
  #portfolio .title {
    max-width: 30ch;
    color: var(--textBlack);
    margin-bottom: 1rem;
  }
  #portfolio .overview {
    margin-bottom: 1rem;
  }
  #portfolio .text {
    color: var(--textBlack);
  }
  #portfolio .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #portfolio .card-group {
    /* max-width: fit-content; */
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
  }
  #portfolio .item {
    flex: 1 1 250px;
    max-width: 31.25rem;
    display: flex;
    align-items: stretch;
    background-color: var(--lightGray);
    padding: 0.75rem;
    border-radius: 1rem;
    border: 4px solid var(--textBlack);
    transition: background-color 0.3s ease, border-color 0.3s ease;
  }
  #portfolio .link {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
  }
  #portfolio .picture,
  #portfolio .link h3,
  #portfolio .description{
    flex: 0 0 auto;
  }
  #portfolio .link h3 {
    color: var(--textBlack);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 0.5rem;
    text-wrap: nowrap;
  }
  #portfolio .description {
    margin: 0.75rem;
    line-height: 1.4;
    /* Keeps the buttons aligned at the bottom regardless of how text shifts. Change 4 to however many lines that need to be reserved */
    min-height: calc(1.4em * 4);

    /* Clamp to N lines, will cut text */
    /* display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: visible; */
  }
  #portfolio .button {
    margin-bottom: auto;
    display: inline-flex;
    justify-content: center;
    align-self: center;
    font-size: 1.25rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    margin: 0;
    color: #fff;
    padding: 0.5rem 2rem;
    border-radius: 1.875rem;
    background-color: var(--accentColor);
    transition: background-color ease 0.3s;
  }
  #portfolio .item:hover {
    background-color: white;
    border-color: var(--lightAccentColor);
  }
  #portfolio .item:hover .button {
    background-color: var(--lightAccentColor);
  }
  #portfolio .picture {
    width: 100%;
    aspect-ratio: 12 / 9;
    overflow: hidden;
  }
  #portfolio .picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /***************** PRICING ***************/
  /*****************************************/
  #pricing {
    padding: var(--sectionPadding);
    /* clips the floater and prevents it from causing overflow issues */
    overflow: hidden;
    background-color: var(--primaryDark);
    position: relative;
    z-index: 1;
  }
  #pricing .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 .content {
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    /* set text align to left if content needs to be left aligned */
    text-align: center;
  }
  #pricing .topper {
    color: var(--textLight);
  }
  #pricing .title {
    max-width: 20ch;
    color: var(--textLight);
  }
  #pricing .text {
    margin: 1rem;
    color: var(--textLight);
  }
  #pricing .text:last-of-type {
    margin-bottom: 2rem;
  }
  #pricing .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: var(--primaryLight);
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #pricing .plan {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    margin: 0;
    padding: 0;
    color: var(--headerColor);
  }
  #pricing .plan:hover {
    cursor: pointer;
  }
  #pricing .toggle {
    width: 3.25rem;
    height: 2rem;
    border-radius: 2.5rem;
    background-color: var(--accentColor);
    margin: 0 1.5rem;
    position: relative;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #pricing .toggle:hover {
    cursor: pointer;
  }
  #pricing .toggle.active:before {
    opacity: 1;
  }
  #pricing .toggle.active .toggle-switch {
    left: 1.4375rem;
  }
  #pricing .toggle:before {
    /* top right box */
    content: "";
    width: 100%;
    height: 100%;
    background: #c65513;
    opacity: 0;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 2.5rem;
    transition: opacity 0.3s;
  }
  #pricing .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: white;
  }
  #pricing .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 .card-group.active.option1 {
    /* when the active class is on the card-group, run these styles */
    transform: scale(0);
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
  }
  #pricing .card-group.active.option1 .item {
    /* when the active class is on the card-group, run these styles */
    opacity: 0;
    transform: translateY(1.25rem) rotateY(90deg);
    transition:
        opacity 0.3s,
        transform 0.6s;
  }
  #pricing .card-group.active.option2 {
    /* when the active class is on the card-group, run these styles */
    visibility: visible;
    pointer-events: all;
    opacity: 1;
    position: relative;
    right: auto;
    bottom: auto;
    transform: scale(1);
  }
  #pricing .card-group.active.option2 .item {
    /* when the active class is on the card-group, run these styles */
    opacity: 1;
    transform: translateY(0rem) rotateY(0deg);
  }
  #pricing .option1 {
    /* default styles when there is no active class on the 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 .option1 .item {
    /* default styles when there is no active class on the card-group */
    opacity: 1;
    transform: translateY(0rem) rotateY(0deg);
    transition:
        opacity 0.3s,
        transform 0.6s;
  }
  #pricing .option1 .item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #pricing .option1 .item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  #pricing .option2 {
    /* default styles when there is no active class on the 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 .option2 .item {
    /* default styles when there is no active class on the card-group */
    opacity: 0;
    transform: translateY(1.25rem) rotateY(90deg);
    transition:
        opacity 0.3s,
        transform 0.6s;
  }
  #pricing .option2 .item:nth-of-type(2) {
    transition-delay: 0.2s;
  }
  #pricing .option2 .item:nth-of-type(3) {
    transition-delay: 0.4s;
  }
  #pricing .item {
    text-align: center;
    list-style: none;
    width: clamp(20rem, 25vh, 23.75rem);
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }
  #pricing .item.popular .flex {
    background-color: var(--accentColor);
  }
  #pricing .item.popular .tag {
    display: flex;
  }
  #pricing .item.popular .package,
  #pricing .item.popular .price,
  #pricing .item.popular .duration {
    color: var(--textLight);
  }
  #pricing .flex {
    /* 296px - 336px */
    width: clamp(18.5rem, 20vw, 21rem);
    height: clamp(18.5rem, 20vw, 21rem);
    margin-bottom: -6.25rem;
    border-radius: 50%;
    background-color: #c0bdbd;
    border: 6px solid white;
    color: var(--textBlack);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
  }
  #pricing .tag {
    font-size: 0.8125rem;
    color: var(--textBlack);
    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: 1.25rem;
    transform: translateX(-50%);
  }
  #pricing .tag:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #FFF;
    opacity: 0.3;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #pricing .icon {
    width: 1.25rem;
    height: auto;
    display: flex;
  }
  #pricing .package {
    /* 20px - 25px */
    font-size: clamp(1.35rem, 2vw, 1.55rem);
    line-height: 1.2em;
    text-align: inherit;
    font-weight: 700;
    /* 4px - 8px */
    margin: 0 0 clamp(0.25rem, 1vw, 0.5rem) 0;
  }
  #pricing .price {
    /* 31px - 49px */
    font-size: clamp(1.9375rem, 4vw, 2.5500rem);
    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 .duration {
    font-size: 1rem;
    line-height: 1.5em;
    font-weight: 400;
    text-align: inherit;
    margin-left: 0.25rem;
    /* 4px - 8px */
    padding: clamp(0.25rem, 1vw, 0.5rem) 0;
    color: var(--textBlack);
    display: block;
  }
  #pricing .info {
    width: 100%;
    padding: 5.375rem 1.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 .ul {
    width: 100%;
    margin: 2.5rem 0 2.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 0.75rem;
    position: relative;
  }
  #pricing .li {
    font-size: 1rem;
    list-style: none;
    line-height: 1.5em;
    font-weight: 400;
    text-align: inherit;
    margin: 0;
    padding: 0;
    color: var(--textBlack);
    display: flex;
    text-align: left;
    gap: 0.5rem;
  }
  #pricing .li img {
    justify-content: left;
  }
  #pricing .li p {
    color: var(--textBlack);
  }
  #pricing .li.disabled {
    opacity: 0.5;
  }
  #pricing .disabled {
    opacity: 0.5;
  }
  #pricing .disabled .filter-red {
    filter: invert(16%) sepia(94%) saturate(7453%) hue-rotate(0deg) brightness(102%) contrast(112%);
  }
  #pricing .enabled .filter-green {
    filter: brightness(0) saturate(100%) invert(79%) sepia(43%) saturate(7069%) hue-rotate(77deg) brightness(106%) contrast(97%);
  }
  #pricing .button-solid {
    font-size: 1.25rem;
    line-height: 3.5rem;
    text-decoration: none;
    font-weight: 700;
    overflow: hidden;
    margin-top: 1.5rem;
    color: #fff;
    padding: 0 3rem;
    border-radius: 1.875rem;
    background-color: var(--accentColor);
    display: inline-block;
    position: relative;
    z-index: 1;
    transition: color 0.3s;
  }
  #pricing .button-solid:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 0%;
    background: #FFF;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    transition: width 0.3s;
  }
  #pricing .button-solid:hover {
    color: var(--accentColor);
  }
  #pricing .button-solid:hover:before {
    width: 100%;
  }
  #pricing .card-button:before {
    background: var(--primaryDark);
  }
  #pricing .card-button:hover {
    color: #fff;
  }
  #pricing .desktop-view {
    display: none;
  }
  /******************* BLOG ****************/
  /*****************************************/
  #blog {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--primaryLight);
  }
  #blog .container {
    width: 100%;
    /* changes to 1280px on desktop */
    max-width: 43.75rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #blog .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;
  }

  #blog .title {
    max-width: 20ch;
    color: var(--textBlack);
  }
  #blog .topper {
    color: var(--textBlack);
  }
  #blog .text {
    color: var(--textBlack);
  }
  #blog .card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
  }
  #blog .item {
    list-style: none;
    display: flex;
    flex-direction: column;
    grid-column: span 12;
  }
  #blog .item:hover .h3,
  #blog .item:hover .date,
  #blog .item:hover .category {
    color: var(--textLight);
  }
  #blog .item:hover .item-text {
    background-color: var(--primaryDark);
  }
  #blog .item:hover .icon-wrapper {
    border-color: var(--textLight);
  }
  #blog .item:hover .icon,
  #blog .item:hover .date-icon {
      filter: brightness(1000%) grayscale(1);
  }
  #blog .item:hover .icon {
      transform: rotate(45deg);
  }
  #blog .item:hover .category::before {
      background-color: #fff;
      opacity: 0.2;
  }
  #blog .link {
      text-decoration: none;
      display: flex;
      flex-direction: column;
      /* if one card has more content then the others, the card will stretch to fill the parent container */
      flex-grow: 1;
      gap: 1rem;
  }
  #blog .picture {
      width: 100%;
      height: 20rem;
      margin: 0;
      border-radius: 1.5rem;
      display: block;
      position: relative;
      z-index: 1;
      overflow: hidden;
  }
  #blog .picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
  }
  #blog .item-text {
      padding: 1.25rem;
      background-color: #f7f7f7;
      border-radius: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      /* makes the item text the element that grows to fill the container */
      flex-grow: 1;
      transition: background-color 0.3s;
  }
  #blog .h3 {
      /* 20px - 25px */
      font-size: clamp(1.25rem, 1.8vw, 1.5625rem);
      line-height: 1.2em;
      text-align: left;
      margin: 0;
      color: #1a1a1a;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      transition: color 0.3s;
  }
  #blog .icon-wrapper {
      width: 3rem;
      height: 3rem;
      border: 1px solid #bababa;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      /* prevents the parent flexbox from shrinking the icon */
      flex-shrink: 0;
      transition: border-color 0.3s;
  }
  #blog .icon {
      width: auto;
      height: 0.75rem;
      transition:
          filter 0.3s,
          transform 0.3s;
  }
  #blog .info {
      margin: 1rem 0 0;
      padding: 1rem 0 0;
      border-top: 1px solid #e8e8e8;
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  #blog .date {
      font-size: 0.875rem;
      line-height: 1.5em;
      text-align: left;
      color: #1a1a1a;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s;
  }
  #blog .date-icon {
      width: auto;
      height: 1.5rem;
      transition: filter 0.3s;
  }
  #blog .category {
      font-size: 0.875rem;
      /* centers the text if the category bullet has to span multiple lines */
      text-align: center;
      padding: 0.25rem 1rem;
      color: #1a1a1a;
      border-radius: 5rem;
      position: relative;
      z-index: 0;
      overflow: hidden;
  }
  #blog .category::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
}

/************ TABLET - 768PX *************/
/*****************************************/
@media only screen and (min-width: 48rem) {
  /******************** HERO ***************/
  /*****************************************/
  #hero {
    /* 180px - 250px */
    padding-bottom: clamp(11.25rem, 16.5vw, 15.625rem);
  }
  #hero .content {
    text-align: center;
    /* width: 53%; */
    align-items: center;
  }
  #hero .picture {
    width: 100%;
    position: relative;
  }
  #hero .bubbles {
    font-size: 1em;
  }
  #hero .bubbles1 {
    /* changes to auto at large desktop */
    right: -18.75rem;
  }
  /********** SERVICES WITH CARDS **********/
  /*****************************************/
  #services .card-group {
    justify-content: space-between;
    /* makes sure every box "stretches" to be the same height as the tallest box */
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
  }
  #services .item {
    width: 48.6%;
  }
  /*************** ABOUT SECTION ***********/
  /*****************************************/
  #about .card-group {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }
  #about .item {
    width: 100%;
  }
  /***************** PRICING ***************/
  /*****************************************/
  #pricing .card-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  #pricing .item {
    width: 100%;
    /* ensures they stay the same height if you add more content */
    align-self: stretch;
  }
  #pricing .popular {
    /* send back to its original order */
    order: unset;
  }
  #pricing #option2:before {
    top: -0.625rem;
  }
  #pricing #option2:after {
    top: -2.1875rem;
    right: -6.25rem;
  }
  /************* New Pricing ***************/
  /*****************************************/
  #pricing .container {
    max-width: 80rem;
  }
  #pricing .container .card-group {
    flex-direction: row;
    align-items: stretch;
  }
}

/************ DESKTOP - 1024PX ***********/
/*****************************************/
@media only screen and (min-width: 64rem) {
  /*************** HERO ********************/
  /*****************************************/
  #hero .container {
    flex-direction: row;
    justify-content: space-between;
  }
  #hero .bubbles1 {
    width: 42.5em;
    height: 45.25em;
    right: -11.875rem;
    /* changes to 172 at large desktop */
    bottom: -6.25rem;
  }
  #hero .bubbles1:before {
    /* white border bubble */
    content: "";
    width: 38.875em;
    height: 38.875em;
    background: transparent;
    border: 2px solid var(--accentColor);
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    animation-name: floatAnimation;
    animation-duration: 7s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #hero .bubbles1:after {
    /* gray bubble */
    content: "";
    width: 34.125em;
    height: 34.125em;
    background: #2c2c2c;
    opacity: 0.8;
    border-radius: 50;
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 10s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    display: block;
  }
  #hero .bubbles2 {
    width: 20.625rem;
    height: 29.75rem;
    /* changes to 160px at larger desktop */
    left: -16.25rem;
    /* removed at larger desktop */
    top: 3.75rem;
  }
  #hero .bubbles2:before {
    /* white border bubble */
    content: "";
    width: 20.625rem;
    height: 20.625rem;
    background: transparent;
    border: 2px solid var(--accentColor);
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    animation-name: floatAnimation;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
  }
  #hero .bubbles2:after {
    /* orange bubble */
    content: "";
    width: 16.25rem;
    height: 16.25rem;
    background: #2c2c2c;
    opacity: 0.8;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    right: 2.5rem;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    display: block;
  }
  /****************** BLOG *****************/
  /*****************************************/
  #blog .container {
      max-width: 80rem;
  }
  #blog .item {
      grid-column: span 4;
  }
}

/************ DESKTOP - 1300PX ***********/
/*****************************************/
@media only screen and (min-width: 81.25rem) {
  /************** HERO *********************/
  /*****************************************/
  #hero .container {
    position: initial;
  }
  #hero .bubbles1 {
    /* 200px - 450px */
    margin-left: clamp(12.5rem, 20vw, 28.125rem);
    top: 10.75rem;
    right: auto;
    bottom: auto;
    left: 50%;
  }
  /************ SERVICES *******************/
  /*****************************************/
  #services .container {
    max-width: 90rem;
  }
  #services .card-group {
    justify-content: center;
  }
  #services .item {
    /* we do this so it's stackable. You can add new any number of reviews you want and they will stack and center in the middle. We dont use grid because if you have an odd number of reviews, they don't stay centered.  They align with their grid lines. If you want 4 reviews in a row, lower the width under 22.5vw or 23% to get the desired sizes fit 4 in a row and then stack when you add more */
    width: clamp(23.84%, 22.5vw, 23.95%);
  }
  /**************** ABOUT  *****************/
  /*****************************************/
  #about .container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
  }
  #about .content {
    text-align: left;
    width: 55%;
    flex-direction: column;
    align-items: flex-start;
  }
  #about .card-group {
    justify-content: center;
    flex-wrap: nowrap;
  }
  #about .item {
    width: 100%;
  }
  #about .button-solid {
    margin-top: 3rem;
  }
  /********** PORTFOLIO SECTION ************/
  /*****************************************/
  #portfolio .container {
    max-width: 100rem;
  }
  #portfolio .card-group {
    flex-direction: row;
    justify-content: center;
  }

  /**************** PRICING ***************/
  /*****************************************/
  #pricing .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #pricing .content {
    width: 47%;
  }
  #pricing .info {
    min-height: 27rem;
  }
  #pricing .card-group {
    justify-content: space-around;
  }
  #pricing .mobile-view {
    display: none;
  }
  #pricing .desktop-view {
    display: block;
  }
}

/* LARGE DESKTOP - PARALAX EFFECT -1600px*/
/*****************************************/
@media only screen and (min-width: 100rem) {
  #hero .background {
      background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/MISC/abstract.jpg");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
  }
  #hero .background img {
      display: none;
  }
}

/******* LARGER DESKTOP - 1800px ********/
/*****************************************/
@media only screen and (min-width: 112.5rem) {
  #hero .bubbles2 {
      margin-right: 50rem;
      right: 50%;
      left: auto;
      top: 13.125rem;
      bottom: auto;
  }
}

/************* DARK MODE *****************/
/*****************************************/
@media only screen and (min-width: 0rem) {
  /************** HERO/LANDING *************/
  /*****************************************/
  body.dark-mode #hero {
    background: var(--dark);
  }
  /********** SERVICES WITH CARDS **********/
  /*****************************************/
  body.dark-mode #services {
    background-color: var(--dark);
  }
  body.dark-mode #services .title,
  body.dark-mode #services .text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #services .topper {
    color: var(--darkModeAccent);
  }
  body.dark-mode #services .item {
    background: var(--medium);
  }
  /************** ABOUT ********************/
  /*****************************************/
  body.dark-mode #about {
    background-color: var(--dark);
  }
  body.dark-mode #about .title,
  body.dark-mode #about .text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #about .topper {
    color: var(--darkModeAccent);
  }
  /************** PORTFOLIO ****************/
  /*****************************************/
  body.dark-mode #portfolio {
    background-color: var(--dark);
  }
  body.dark-mode #portfolio .title,
  body.dark-mode #portfolio h3,
  body.dark-mode #portfolio .text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #portfolio .topper {
    color: var(--darkModeAccent);
  }
  body.dark-mode #portfolio .item {
    background: var(--medium);
    border-color: var(--darkModeAccent);
  }
  body.dark-mode #portfolio .item:hover {
    border-color: var(--lightAccentColor);
    background-color: var(--accent);
  }
  body.dark-mode #portfolio .item:hover .button {
    background-color: var(--lightAccentColor);
  }
  /*************** PRICING *****************/
  /*****************************************/
  body.dark-mode #pricing {
    background-color: var(--dark);
  }
  body.dark-mode #pricing .title,
  body.dark-mode #pricing h3,
  body.dark-mode #pricing .text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #pricing .topper {
    color: var(--darkModeAccent);
  }
  body.dark-mode #pricing .toggle-group,
  body.dark-mode #pricing .info {
    background-color: var(--medium);
  }
  body.dark-mode #pricing .item .flex {
    background-color: var(--dark);
    border-color: var(--accentColor);
  }
  body.dark-mode #option1,
  body.dark-mode #option2 {
    color: var(--primaryLight);
  }
  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 .li,
  body.dark-mode #pricing .ul .li:first-child {
      color: var(--primaryLight);
  }
  body.dark-mode #pricing .li-img {
      filter: brightness(0) invert(1);
  }
  /*************** BLOG ********************/
  /*****************************************/
  body.dark-mode #blog {
    background-color: var(--dark);
  }
  body.dark-mode #blog .title,
  body.dark-mode #blog h3,
  body.dark-mode #blog .text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #blog .topper {
    color: var(--darkModeAccent);
  }
  body.dark-mode #blog .picture {
    border-color: var(--lightAccent);
  }
  body.dark-mode #blog .item-text {
    background-color: var(--medium);
  }
  body.dark-mode #blog .date {
    color: var(--bodyTextColorWhite);
  }
}

/****************** SEASONAL *************/
/*****************************************/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #seasonal {
        padding: var(--sectionPadding);
        /* clips the floater and prevents it from causing overflow issues */
        overflow: hidden;
        background-color: var(--primaryDark);
        position: relative;
        z-index: 1;
    }
    #seasonal .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);
    }
    #seasonal .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;
    }

    #seasonal .title {
        max-width: 20ch;
        color: var(--textLight);
    }
    #seasonal .text {
        margin: 0.5rem;
        color: var(--textLight);
    }
    #seasonal .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);
    }
    #seasonal .item {
        text-align: center;
        list-style: none;
        width: 100%;
        max-width: 22rem;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: center;
    }
    #seasonal .flex {
        width: clamp(18.5rem, 20vw, 21rem);
        height: clamp(18.5rem, 20vw, 21rem);
        margin-bottom: -6.25rem;
        border-radius: 50%;
        background-color: var(--accentColor);
        border: 6px solid white;
        color: var(--textBlack);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
    }
    #seasonal .package {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        color: var(--textLight);
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        /* 4px - 8px */
        margin: 0 0 clamp(0.25rem, 1vw, 0.5rem) 0;
    }
    #seasonal .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(--textLight);
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    #seasonal .extra {
        color: var(--textLight);
    }
    #seasonal .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(--textLight);
        display: block;
    }
    #seasonal .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;
    }
    #seasonal .enabled .filter-green {
      filter: brightness(0) saturate(100%) invert(79%) sepia(43%) saturate(7069%) hue-rotate(77deg) brightness(106%) contrast(97%);
    }
    #seasonal .ul {
        width: 100%;
        margin: 2.5rem 0 2.5rem 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: left;
        gap: 0.75rem;
        position: relative;
    }
    #seasonal .li {
        font-size: 1rem;
        list-style: none;
        line-height: 1.5em;
        font-weight: 400;
        text-align: inherit;
        margin: 0;
        padding: 0;
        color: var(--textBlack);
        display: flex;
        text-align: left;
        gap: 0.5rem;
    }
    #seasonal .li.disabled {
        opacity: 0.5;
    }
    #seasonal .button-transparent {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        background-color: var(--accentColor);
        color: var(--textLight);
        padding: 0 3rem;
        border-radius: 1.875rem;
        border: 1px solid var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #seasonal .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;
    }
    #seasonal .button-transparent:hover {
        border-color: #1a1a1a;
    }
    #seasonal .button-transparent:hover:before {
        width: 100%;
    }
    #seasonal .button-transparent {
        /* this is the section specific override if you choose to pull out the 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) {
    #seasonal .container {
        max-width: 80rem;
    }
    #seasonal .container .card-group {
        flex-direction: row;
        align-items: stretch;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #seasonal .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    #seasonal .content {
        text-align: left;
        width: 47%;
        align-items: flex-start;
    }
    #seasonal .info {
        min-height: 27rem;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #seasonal {
        background-color: var(--dark);
    }
    body.dark-mode #seasonal .title,
    body.dark-mode #seasonal .text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #seasonal .text {
        opacity: 0.8;
    }
    body.dark-mode #seasonal .info {
        background-color: var(--medium);
    }
    body.dark-mode #seasonal .flex {
        background-color: var(--dark);
        border-color: var(--accentColor);
    }
    body.dark-mode #seasonal .ul:before {
        opacity: 0.5;
    }
    body.dark-mode #seasonal .item.popular .button-transparent {
        background-color: #fff;
        color: var(--primary);
    }
    body.dark-mode #seasonal .item.popular .button-transparent:hover {
        background-color: #1a1a1a;
    }
    body.dark-mode #seasonal .package {
        color: var(--textLight);
    }
    body.dark-mode #seasonal .price,
    body.dark-mode #seasonal .duration,
    body.dark-mode #seasonal .li {
        color: var(--textLight);
    }
    body.dark-mode #seasonal .button-transparent {
        background-color: #1a1a1a;
        color: #fff;
        border: none;
        transition:
            color 0.3s,
            background-color 0.3s;
    }
    body.dark-mode #seasonal .button-transparent:hover {
        background-color: #FFF;
    }
    body.dark-mode #seasonal .li-img {
      filter: brightness(0) invert(1);
    }
}