/* PAGE-SPECIFIC STYLES FOR THE HOME PAGE */
/*-- -------------------------- -->
<---       Why Choose Us        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #choose, #choose2 {
    padding: var(--sectionPadding);
  }
  #choose .cs-container, #choose2 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #choose .cs-container2, #choose2 .cs-container2 {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #choose .cs-content, #choose2 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #choose .cs-color, #choose2 .cs-color {
    color: var(--primary);
  }
  #choose .cs-text, #choose2 .cs-text {
    margin-bottom: 16/16rem;
  }
  #choose .cs-text:last-of-type, #choose2 .cs-text:last-of-type {
    margin-bottom: 32/16rem;
  }
  #choose .cs-ul, #choose2 .cs-ul {
    width: 100%;
    margin: 1rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  #choose .cs-li, #choose2 .cs-li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  #choose .cs-li2, #choose2 .cs-li2 {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  #choose .cs-h3, #choose2 .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #choose .cs-icon, #choose2 .cs-icon {
    width: 1.0625rem;
    height: auto;
    margin-top: 0.25rem;
  }
  #choose .cs-item-text, #choose2 .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #choose .cs-item-text2, #choose2 .cs-item-text2 {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: left;
    margin: 0;
    color: var(--bodyTextColor);
    margin-bottom: 0.75rem;
  }
  #choose .cs-button-solid, #choose2 .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: #000;
    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;
  }
  #choose .cs-button-solid:hover, #choose2 .cs-button-solid:hover {
    color: #fff;
  }
  #choose .cs-button-solid:hover:before, #choose2 .cs-button-solid:hover:before {
    width: 100%;
  }
  #choose .cs-button-solid:before, #choose2 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background-color: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #choose .cs-image-group, #choose2 .cs-image-group {
    /* everything inside the image group is in ems so the font size will scale them down.  Font size minimum is tied to view width size, and grows until it reaches 75% of the value on em */
    font-size: min(2.3vw, 0.75em);
    width: 39.5em;
    height: 51.25em;
    position: relative;
    z-index: 1;
    /* flips it horizontally */
    transform: scaleX(-1);
  }
  #choose .cs-picture, #choose2 .cs-picture {
    width: 19.125em;
    height: 22.5em;
    overflow: hidden;
    display: block;
    position: absolute;
  }
  #choose .cs-picture img, #choose2 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    /* so the images are the original orientation, undoing the flip the cs-image-group is doing */
    transform: scaleX(-1);
  }
  #choose .cs-picture1, #choose2 .cs-picture1 {
    top: 5em;
    left: 0;
  }
  #choose .cs-picture2, #choose2 .cs-picture2 {
    top: 0;
    right: 0;
  }
  #choose .cs-picture3, #choose2 .cs-picture3 {
    bottom: 0;
    left: 0;
  }
  #choose .cs-picture4, #choose2 .cs-picture4 {
    bottom: 5em;
    right: 0;
  }
  #choose .cs-graphic,
  #choose .cs-graphic2, #choose2 .cs-graphic,
  #choose2 .cs-graphic2 {
    display: none;
  }
  #choose2 {
    background-color: var(--backgroundWhite);
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #choose .cs-container,
  #choose2 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #choose .cs-container2,
  #choose2 .cs-container2 {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  #choose .cs-image-group,
  #choose2 .cs-image-group {
    font-size: min(1.2vw, 1em);
    flex: none;
    /* sends it to the right in the 2nd position */
    order: 2;
  }
  #choose .cs-graphic,
  #choose2 .cs-graphic {
    width: 61.4375em;
    height: auto;
    display: block;
    position: absolute;
    bottom: 10.3125em;
    right: -2em;
    z-index: -1;
  }
  #choose .cs-graphic2,
  #choose2 .cs-graphic2 {
    width: 61.4375em;
    height: auto;
    display: block;
    position: absolute;
    bottom: 10.3125em;
    left: -2em;
    z-index: -1;
    transform: scaleX(-1);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #choose .cs-topper .cs-color,
  body.dark-mode #choose2 .cs-topper .cs-color {
    color: var(--primaryLight);
  }
  body.dark-mode #choose .cs-title,
  body.dark-mode #choose .cs-text,
  body.dark-mode #choose .cs-h3,
  body.dark-mode #choose .cs-item-text,
  body.dark-mode #choose .cs-item-text2,
  body.dark-mode #choose2 .cs-title,
  body.dark-mode #choose2 .cs-text,
  body.dark-mode #choose2 .cs-h3,
  body.dark-mode #choose2 .cs-item-text,
  body.dark-mode #choose2 .cs-item-text2 {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #choose .cs-item-text2,
  body.dark-mode #choose .cs-item-text,
  body.dark-mode #choose2 .cs-item-text2,
  body.dark-mode #choose2 .cs-item-text {
    opacity: 0.8;
  }
  body.dark-mode #choose .cs-icon,
  body.dark-mode #choose2 .cs-icon {
    filter: brightness(125%);
  }
  body.dark-mode #choose .cs-graphic,
  body.dark-mode #choose2 .cs-graphic {
    opacity: 0.5;
  }
  body.dark-mode #choose .cs-graphic2,
  body.dark-mode #choose2 .cs-graphic2 {
    opacity: 0.5;
  }
  body.dark-mode #choose .cs-button-solid:hover,
  body.dark-mode #choose2 .cs-button-solid:hover {
    color: #000;
  }
  body.dark-mode #choose .cs-button-solid:before,
  body.dark-mode #choose2 .cs-button-solid:before {
    background-color: #fff;
  }
  body.dark-mode #choose2 {
    background-color: var(--dark2);
  }
}
/*-- -------------------------- -->
<---    SBS ilustration 1       -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  .list-1404 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
    align-items: stretch;
    margin: 0 0 1.5rem 0;
    max-width: 39.375rem;
    width: 100%;
    padding: 0;
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  .list-1404 .cs-item {
    border: 1px solid #D9D9D9;
    background-color: #D9D9D9;
    box-sizing: border-box;
    padding: clamp(1rem, 3vw, 1.5rem);
    list-style: none;
    transition: background-color 0.3s;
    border-radius: 25px;
  }
  .list-1404 .cs-item:hover {
    background-color: var(--primary);
  }
  .list-1404 .cs-link {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-decoration: none;
  }
  .list-1404 .cs-h3 {
    align-items: center;
    display: flex;
    font-size: 1.25rem;
    font-weight: 700;
    gap: 0.5rem;
    justify-content: flex-start;
    line-height: 1.2em;
    margin: 0;
  }
  .list-1404 .cs-h3-icon {
    display: block;
    height: auto;
    width: 2rem;
  }
  .list-1404 .cs-item-text {
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    opacity: 0.8;
  }
}
@media only screen and (min-width: 0rem) {
  #sbs-il-1 {
    padding: var(--sectionPadding);
    padding-top: clamp(5.25rem, 8vw, 10.5rem);
    padding-bottom: clamp(4.25rem, 7vw, 9.5rem);
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #sbs-il-1 .cs-container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-il-1 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 3;
  }
  #sbs-il-1 .cs-title {
    font-size: 2rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 25ch;
  }
  #sbs-il-1 .cs-text {
    margin-bottom: 1rem;
    opacity: 0.8;
  }
  #sbs-il-1 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-il-1 .cs-image-group {
    font-size: min(2vw, 0.7rem);
    width: 40.1875em;
    height: 38em;
    position: relative;
    z-index: 1;
  }
  #sbs-il-1 .cs-picture {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    object-fit: cover;
  }
  #sbs-il-1 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #sbs-il-1 .cs-mask {
    width: 101%;
    height: 101%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
  }
  #sbs-il-1 .cs-graphic {
    width: 100%;
    min-width: 75rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
  }
  #sbs-il-1 .cs-dark {
    display: none;
  }
}
@media only screen and (min-width: 64rem) {
  #sbs-il-1 .cs-container {
    max-width: 80rem;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }
  #sbs-il-1 .cs-content {
    width: 51%;
  }
  #sbs-il-1 .cs-image-group {
    flex: none;
    font-size: min(1vw, 1rem);
  }
  #sbs-il-1 .cs-image-group:before {
    display: block;
  }
}
@media only screen and (min-width: 81.25rem) {
  #sbs-il-1 .cs-container {
    justify-content: flex-end;
  }
  #sbs-il-1 .cs-content {
    max-width: 39.375rem;
    flex: none;
  }
  #sbs-il-1 .cs-li {
    flex-direction: row;
  }
}
@media only screen and (min-width: 125rem) {
  #sbs-il-1 {
    padding-bottom: 9vw;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbs-il-1 {
    background-color: var(--backgroundColor);
  }
  body.dark-mode #sbs-il-1 .cs-bold,
  body.dark-mode #sbs-il-1 .cs-text-large, body.dark-mode #sbs-il-1 .cs-title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbs-il-1 .cs-text,
  body.dark-mode #sbs-il-1 .cs-info-text {
    opacity: 0.8;
  }
  body.dark-mode #sbs-il-1 .cs-picture {
    border-color: var(--accent);
  }
  body.dark-mode #sbs-il-1 .cs-info {
    background-color: var(--medium);
  }
  body.dark-mode #sbs-il-1 .cs-graphic {
    opacity: 0.6;
  }
  body.dark-mode .list-1404 .cs-item {
    border: 1px solid var(--backgroundColor);
    background-color: var(--backgroundColor);
  }
  body.dark-mode .list-1404 .cs-item:hover {
    background-color: var(--primary);
  }
  body.dark-mode .list-1404 .cs-item:hover .cs-h3,
  body.dark-mode .list-1404 .cs-item:hover .cs-link,
  body.dark-mode .list-1404 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---    SBS ilustration 2     -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #sbs-il-2 {
    padding: var(--sectionPadding);
    padding-bottom: 3.125rem;
    background-color: var(--backgroundWhite);
  }
  #sbs-il-2 .cs-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4rem);
    margin: auto;
    max-width: 34.375rem;
    width: 100%;
  }
  #sbs-il-2 .cs-content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    max-width: 33.875rem;
    text-align: left;
    width: 100%;
  }
  #sbs-il-2 .cs-title {
    font-size: 2rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 25ch;
  }
  #sbs-il-2 .cs-text {
    margin-bottom: 1rem;
    opacity: 0.8;
  }
  #sbs-il-2 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-il-2 .cs-wrapper {
    align-items: center;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    flex: none;
    height: 3.5rem;
    justify-content: center;
    transition: transform 0.3s;
    width: 3.5rem;
  }
  #sbs-il-2 .cs-icon {
    display: block;
    height: auto;
    transition: transform 0.3s;
    width: 1.5rem;
  }
  #sbs-il-2 .cs-info {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  #sbs-il-2 .cs-header {
    color: var(--bodyTextColorWhite);
    display: block;
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 0;
    opacity: 0.8;
  }
  #sbs-il-2 .cs-link-content {
    color: var(--bodyTextColorWhite);
    display: block;
    font-size: clamp(1.25rem, 4vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
  }
  #sbs-il-2 .cs-image-group {
    font-size: min(2vw, 0.7rem);
    width: 40.1875em;
    height: 38em;
    position: relative;
    z-index: 1;
  }
  #sbs-il-2 .cs-picture {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    object-fit: cover;
  }
  #sbs-il-2 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #sbs-il-2 .cs-mask {
    width: 101%;
    height: 101%;
    object-fit: cover;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
  }
  #sbs-il-2 .cs-graphic {
    width: 100%;
    min-width: 75rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
  }
  #sbs-il-2 .cs-dark {
    display: none;
  }
  #sbs-il-2 .cs-stripes {
    display: block;
    height: auto;
    left: 20%;
    position: absolute;
    top: 0;
    width: 40.625em;
    z-index: -2;
  }
}
@media only screen and (min-width: 64rem) {
  #sbs-il-2 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #sbs-il-2 .cs-content {
    align-self: center;
    flex: none;
    max-width: 51%;
  }
  #sbs-il-2 .cs-image-group {
    flex: none;
    font-size: min(1vw, 1rem);
  }
  #sbs-il-2 .cs-image-group:before {
    display: block;
  }
}
@media only screen and (min-width: 81.25rem) {
  #sbs-il-2 .cs-container {
    gap: 5.5rem;
  }
  #sbs-il-2 .cs-stripes {
    left: 50%;
    top: -7.5rem;
    transform: translateX(-60%);
    width: 65.625rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #sbs-il-2 {
    background-color: var(--dark2);
  }
  body.dark-mode #sbs-il-2 .cs-bold,
  body.dark-mode #sbs-il-2 .cs-text-large, body.dark-mode #sbs-il-2 .cs-title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbs-il-2 .cs-text,
  body.dark-mode #sbs-il-2 .cs-info-text {
    opacity: 0.8;
  }
  body.dark-mode #sbs-il-2 .cs-picture {
    border-color: var(--accent);
  }
  body.dark-mode #sbs-il-2 .cs-info {
    background-color: var(--medium);
  }
  body.dark-mode #sbs-il-2 .cs-graphic {
    opacity: 0.6;
  }
}
/*-- -------------------------- -->
<---          Why Us         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #why-us {
    padding: var(--sectionPadding);
  }
  #why-us .cs-container {
    max-width: 80rem;
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #why-us .cs-content {
    width: 100%;
    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;
  }
  #why-us .cs-card-group {
    /* changes to 1280px at desktop */
    max-width: 56.25rem;
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    justify-content: center;
    gap: 1rem;
  }
  #why-us .cs-item {
    list-style: none;
    max-width: 23rem;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    padding: 1rem;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  #why-us .cs-picture {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1.25rem;
    box-sizing: border-box;
    /* prevents border from affecting height and width */
    background-color: #f7f7f7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* prevents flexbox from squishing it */
    flex: none;
  }
  #why-us .cs-icon {
    width: 1.875rem;
    height: auto;
    display: block;
  }
  #why-us .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0;
    margin-bottom: 0.5rem;
    color: var(--headerColor);
    text-align: center;
  }
  #why-us .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    text-align: center;
  }
  #why-us .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    font-weight: 700;
    min-width: 9.375rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: #fff;
    background-color: var(--primary);
    text-decoration: none;
    display: inline-block;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  #why-us .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;
  }
  #why-us .cs-button-solid:hover:before {
    width: 100%;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #why-us .cs-card-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  #why-us .cs-item {
    margin: 0;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #why-us .cs-card-group {
    max-width: 80rem;
  }
  #why-us .cs-item {
    max-width: none;
    padding: 2rem 1.5rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #why-us .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #why-us .cs-item {
    background-color: var(--medium);
  }
  body.dark-mode #why-us .cs-text,
  body.dark-mode #why-us .cs-item-text {
    opacity: 0.8;
  }
  body.dark-mode #why-us .cs-picture {
    background-color: var(--accent);
  }
  body.dark-mode #why-us .cs-icon {
    /* turns it white */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #why-us .cs-title,
  body.dark-mode #why-us .cs-text,
  body.dark-mode #why-us .cs-h3,
  body.dark-mode #why-us .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---        Recent Posts        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #blog-featured {
    background-color: var(--backgroundWhite);
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  #blog-featured .cs-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-featured .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;
  }
  #blog-featured .cs-title {
    max-width: 20ch;
  }
  #blog-featured .cs-topper {
    color: var(--secondary);
  }
  #blog-featured .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }
  #blog-featured .cs-item {
    list-style: none;
    display: flex;
    flex-direction: column;
    grid-column: span 6;
  }
  #blog-featured .cs-item:hover .cs-h3,
  #blog-featured .cs-item:hover .cs-date,
  #blog-featured .cs-item:hover .cs-category {
    color: #fff;
  }
  #blog-featured .cs-item:hover .cs-item-text {
    background-color: var(--primary);
  }
  #blog-featured .cs-item:hover .cs-icon-wrapper {
    border-color: #fff;
  }
  #blog-featured .cs-item:hover .cs-icon,
  #blog-featured .cs-item:hover .cs-date-icon {
    filter: brightness(1000%) grayscale(1);
  }
  #blog-featured .cs-item:hover .cs-icon {
    transform: rotate(45deg);
  }
  #blog-featured .cs-item:hover .cs-category::before {
    background-color: #fff;
    opacity: 0.2;
  }
  #blog-featured .cs-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-featured .cs-picture {
    width: 100%;
    height: 20rem;
    margin: 0;
    border-radius: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  #blog-featured .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #blog-featured .cs-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-featured .cs-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-featured .cs-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-featured .cs-icon {
    width: auto;
    height: 0.75rem;
    transition: filter 0.3s, transform 0.3s;
  }
  #blog-featured .cs-info {
    margin: 1rem 0 0;
    padding: 1rem 0 0;
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #blog-featured .cs-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-featured .cs-date-icon {
    width: auto;
    height: 1.5rem;
    transition: filter 0.3s;
  }
  #blog-featured .cs-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-featured .cs-category::before {
    content: "";
    width: 100%;
    height: 100%;
    background: #e8e8e8;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #blog-featured .cs-bubbles {
    width: 20.0625rem;
    height: 26.4375rem;
    display: none;
    position: absolute;
    top: 66.4375rem;
    right: -8.75rem;
    z-index: -1;
  }
  #blog-featured .cs-bubbles:before {
    /* white border bubble */
    content: "";
    width: 16.5rem;
    height: 16.5rem;
    background: transparent;
    opacity: 1;
    border: 1px solid #1a1a1a;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    animation-name: floatAnimation;
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
  }
  #blog-featured .cs-bubbles:after {
    /* orange bubble */
    content: "";
    width: 16.5rem;
    height: 16.5rem;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    animation-name: floatAnimation2;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: forwards;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #blog-featured .cs-item {
    grid-column: span 3;
  }
  #blog-featured .cs-bubbles {
    display: block;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #blog-featured .cs-container {
    max-width: 80rem;
  }
  #blog-featured .cs-item {
    grid-column: span 2;
  }
  #blog-featured .cs-bubbles {
    top: 17.5625rem;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #blog-featured .cs-bubbles {
    margin-right: -61.875rem;
    right: 50%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #blog-featured {
    background-color: var(--dark2);
  }
  body.dark-mode #blog-featured .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #blog-featured .cs-title,
  body.dark-mode #blog-featured .cs-text,
  body.dark-mode #blog-featured .cs-h3,
  body.dark-mode #blog-featured .cs-date,
  body.dark-mode #blog-featured .cs-category {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #blog-featured .cs-text,
  body.dark-mode #blog-featured .cs-date,
  body.dark-mode #blog-featured .cs-category {
    opacity: 0.8;
  }
  body.dark-mode #blog-featured .cs-item-text {
    background-color: var(--medium);
  }
  body.dark-mode #blog-featured .cs-category::before {
    background-color: var(--accent);
  }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-clients {
    padding: var(--sectionPadding);
  }
  #reviews-clients .cs-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #reviews-clients .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;
  }
  #reviews-clients .cs-card-group {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* 16px - 20px */
    gap: clamp(1rem, 2.5vw, 1.15rem);
  }
  #reviews-clients .cs-item {
    list-style: none;
    width: 100%;
    max-width: 39.375rem;
    margin: 0;
    /* 24px - 32px top & bottom */
    /* 16px - 40px left & right */
    padding: clamp(1.5rem, 3.15vw, 2rem) clamp(1rem, 3.15vw, 2.5rem);
    background-color: #f7f7f7;
    border-radius: 1rem;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
  }
  #reviews-clients .cs-quote {
    width: 2.5rem;
    height: auto;
    margin-bottom: 2rem;
    display: block;
  }
  #reviews-clients .cs-review {
    /* 14px - 20px */
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    line-height: 1.5em;
    margin: 0;
    /* 20px - 40px */
    margin-bottom: clamp(1.25rem, 3vw, 2.5rem);
    color: var(--bodyTextColor);
  }
  #reviews-clients .cs-name {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 3vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    /* in case one card has more text than the other, this pushes up against the review text so the name and title are always at the bottom. Only works if parent is a flexbox */
    margin-top: auto;
    color: var(--headerColor);
    display: block;
  }
  #reviews-clients .cs-job {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-clients .cs-card-group {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
  }
  #reviews-clients .cs-item {
    width: clamp(31.5%, 30vw, 32.3%);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #reviews-clients .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #reviews-clients .cs-title,
  body.dark-mode #reviews-clients .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #reviews-clients .cs-item {
    background-color: var(--accent);
  }
  body.dark-mode #reviews-clients .cs-review,
  body.dark-mode #reviews-clients .cs-name {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #reviews-clients .cs-job {
    color: var(--bodyTextColorWhite);
    opacity: 0.7;
  }
}

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