/* PAGE-SPECIFIC STYLES FOR THE PROJECTS PAGE */
/*-- -------------------------- -->
<---           Process          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #process {
    padding: var(--sectionPadding);
    background-color: var(--backgroundWhite);
  }
  #process .cs-container {
    width: 100%;
    /* changes to 1104px on tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #process .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 27.125rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #process .cs-title {
    text-align: center;
  }
  #process .cs-text {
    margin-bottom: 1rem;
  }
  #process .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #process .cs-button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #process .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #process .cs-button-solid:hover:before {
    width: 100%;
  }
  #process .cs-right-section {
    margin: 0;
    padding: 0;
    max-width: 35.125rem;
  }
  #process .cs-item {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  #process .cs-item:nth-of-type(1) .cs-item-text:before {
    height: 50%;
    top: auto;
    bottom: -1px;
  }
  #process .cs-item:nth-of-type(2), #process .cs-item:nth-of-type(4) {
    justify-content: flex-end;
    text-align: left;
  }
  #process .cs-item:nth-of-type(2) .cs-number, #process .cs-item:nth-of-type(4) .cs-number {
    /* Send number to the right */
    order: 2;
    margin: 0;
    /* 15px - 24px */
    margin-left: clamp(0.9375rem, 3vw, 1.5rem);
  }
  #process .cs-item:nth-of-type(2) .cs-item-text, #process .cs-item:nth-of-type(4) .cs-item-text {
    /* reverse padding */
    padding-left: 0;
    /* 15px - 24px */
    padding-right: clamp(0.9375rem, 3vw, 1.5rem);
    /* reset the border on the :before */
  }
  #process .cs-item:nth-of-type(2) .cs-item-text:before, #process .cs-item:nth-of-type(4) .cs-item-text:before {
    border-top: 1px solid var(--primary);
    border-left: none;
    border-right: 1px solid var(--primary);
    left: auto;
    right: 0;
    bottom: 0;
    border-radius: 0 0.5rem 0.5rem 0;
  }
  #process .cs-item:nth-of-type(2) .cs-item-text:after, #process .cs-item:nth-of-type(4) .cs-item-text:after {
    /* move dot to the right now */
    left: auto;
    right: -0.9375rem;
  }
  #process .cs-item:nth-of-type(3) .cs-item-text:before {
    height: auto;
    border-top: 1px solid var(--primary);
    border-radius: 0.5rem 0 0 0.5rem;
    top: 1px;
    bottom: 0px;
  }
  #process .cs-item:nth-of-type(4) .cs-item-text:before {
    height: auto;
    border-bottom: 1px solid var(--primary);
    top: -1px;
    bottom: -2px;
  }
  #process .cs-item:nth-of-type(5) .cs-item-text:before {
    height: 50%;
    border-top: 1px solid var(--primary);
    border-bottom: none;
    border-radius: 0.5rem 0 0 0.5rem;
    top: 1px;
    bottom: 0px;
  }
  #process .cs-number {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    /* 15px - 24px */
    margin-right: clamp(0.9375rem, 3vw, 1.5rem);
    /* 40px - 52px */
    width: clamp(2.5rem, 5.1vw, 3.25rem);
    height: clamp(2.5rem, 5.1vw, 3.25rem);
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--headerColor);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    /* prevents flexbox from squishing it */
    flex: none;
    position: relative;
  }
  #process .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.6vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    max-width: 18.75rem;
    /* 22px - 32px */
    padding: clamp(1.375rem, 3vw, 2rem) 0;
    box-sizing: content-box;
    /* 15px - 24px */
    padding-left: clamp(0.9375rem, 3vw, 1.5rem);
    position: relative;
  }
  #process .cs-item-text:before {
    /* Green line */
    content: "";
    width: 70%;
    height: 100%;
    border-radius: 0 0 0 0.5rem;
    border-left: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    box-sizing: content-box;
    opacity: 1;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }
  #process .cs-item-text:after {
    /* list circle */
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    border: 12px solid #fff;
    box-sizing: content-box;
    opacity: 1;
    position: absolute;
    display: block;
    top: 50%;
    left: -0.9375rem;
    transform: translateY(-50%);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #process .cs-container {
    max-width: 69rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    column-gap: 2.75rem;
  }
  #process .cs-content {
    width: 50%;
    /* reset margin to play nice with flexbox */
    margin: 0;
  }
  #process .cs-right-section {
    width: 57%;
    /* 20px - 25px - this pulls the section up so it's flush with the top of the left section, the padding top on the .cs-item-text is creating a gap at the top of the section. Wrapped in a calc() function to turn clamp() value into a negative number */
    margin-top: calc(clamp(1.25rem, 2vw, 1.5625rem) * -1);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #process {
    background-color: var(--dark2);
  }
  body.dark-mode #process .cs-title,
  body.dark-mode #process .cs-text,
  body.dark-mode #process .cs-number {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #process .cs-item-text:after {
    border: 12px solid var(--dark);
  }
}
/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #faq {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  #faq .cs-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 1vw, 2rem);
    margin: auto;
    max-width: 36.5rem;
    width: 100%;
  }
  #faq .cs-floater {
    bottom: 0;
    height: clamp(20.1875rem, 40vw, 28.25rem);
    mix-blend-mode: soft-light;
    position: absolute;
    width: clamp(20.125rem, 40vw, 28.1875rem);
    z-index: 1;
  }
  #faq .cs-content {
    align-items: center;
    display: flex;
    flex: none;
    flex-direction: column;
    justify-content: center;
    max-width: 40.625rem;
    text-align: left;
    width: 100%;
  }
  #faq .cs-title {
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
    text-align: center;
  }
  #faq .cs-text {
    margin: 0 0 clamp(1rem, 1.96vw, 1.5rem) 0;
  }
  #faq .cs-faq-group {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2.4vw, 1.25rem);
    justify-content: center;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  #faq .cs-faq-item {
    list-style: none;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid #bababa;
    padding: 0;
    box-sizing: border-box;
    transition: border-bottom 0.3s;
  }
  #faq .cs-faq-item.active .cs-indicator:before {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  #faq .cs-faq-item.active .cs-indicator:after {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  #faq .cs-faq-item.active .cs-item-p {
    height: auto;
    opacity: 1;
    padding-top: 1rem;
    transform: scaleY(1);
  }
  #faq .cs-faq-item:hover {
    cursor: pointer;
  }
  #faq .cs-button {
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: 700;
    width: 100%;
    padding: 1rem 1rem 0 1rem;
    border: none;
    background: rgba(255, 255, 255, 0);
    color: var(--headerColor);
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq .cs-button:hover {
    cursor: pointer;
  }
  #faq .cs-indicator {
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    z-index: 1;
  }
  #faq .cs-indicator:before {
    background-color: var(--primary);
    border-radius: 2px;
    content: "";
    display: block;
    height: 0.125rem;
    left: 50%;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.5s;
    width: 1rem;
  }
  #faq .cs-indicator:after {
    background-color: var(--primary);
    border-radius: 2px;
    content: "";
    display: block;
    height: 0.125rem;
    left: 50%;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.5s;
    width: 1rem;
  }
  #faq .cs-button-text {
    display: block;
    padding: 0;
    width: 90%;
  }
  #faq .cs-item-p {
    font-size: 0.875rem;
    line-height: 1.5em;
    width: 100%;
    max-width: none;
    height: 0;
    margin: 0;
    padding: 0 1rem 1rem 1rem;
    box-sizing: border-box;
    opacity: 0;
    color: var(--bodyTextColor);
    overflow: hidden;
    position: relative;
    transition: opacity 0.3s, padding-bottom 0.3s, padding-top 0.3s;
    text-align: justify;
  }
  #faq .cs-item-p .cs-phone {
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    margin: 0;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s, color 0.3s;
  }
  #faq .cs-item-p .cs-phone:hover {
    color: var(--dark);
  }
  #faq .cs-icon {
    display: block;
    height: 2rem;
    width: 2rem;
  }
  #faq .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    width: clamp(11.625rem, 23vw, 13.625rem);
    margin: clamp(1.75rem, 3.9vw, 2.5rem) 0 0 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: var(--bodyTextColorWhite);
    background-color: var(--primary);
    display: inline-block;
    position: relative;
    z-index: 1;
  }
  #faq .cs-button-solid:before {
    background: var(--dark);
    content: "";
    height: 100%;
    left: 0;
    opacity: 1;
    position: absolute;
    top: 0;
    transition: width 0.3s;
    width: 0%;
    z-index: -1;
  }
  #faq .cs-button-solid:hover:before {
    width: 100%;
  }
}
@media only screen and (min-width: 48rem) {
  #faq .cs-image-group {
    display: none;
  }
  #faq .cs-container {
    align-items: center;
    display: flex;
    justify-content: flex-start;
  }
}
@media only screen and (min-width: 64rem) {
  #faq .cs-container {
    align-items: center;
    display: flex;
    justify-content: flex-start;
    max-width: 80rem;
  }
  #faq .cs-content {
    width: 55%;
  }
  #faq .cs-floater {
    bottom: -6.25rem;
    right: clamp(50%, 18vw, 75%);
    width: 28.1875rem;
  }
}
@media only screen and (min-width: 0rem) {
  body.dark-mode #faq {
    background-color: var(--backgroundColor);
  }
  body.dark-mode #faq .cs-title,
  body.dark-mode #faq .cs-h3,
  body.dark-mode #faq .cs-text,
  body.dark-mode #faq .cs-button-text,
  body.dark-mode #faq .cs-item-p {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq .cs-item-text {
    opacity: 0.8;
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #gallery-45 {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
  }
  #gallery-45 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-45 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #gallery-45 .cs-image-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #gallery-45 .cs-item {
    list-style: none;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
  }
  #gallery-45 .cs-item:hover .cs-hover-box {
    opacity: 1;
  }
  #gallery-45 .cs-item:hover .cs-icon {
    transform: rotateY(0);
  }
  #gallery-45 .cs-item:hover .cs-h3 {
    opacity: 1;
    transform: translateY(0);
  }
  #gallery-45 .cs-item:hover .cs-hover-box-text {
    opacity: 1;
    transform: translateY(0);
  }
  #gallery-45 .cs-picture {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }
  #gallery-45 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  #gallery-45 .cs-button-solid {
    font-size: 1rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  }
  #gallery-45 .cs-button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    background: #000;
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 0.25rem;
    transition: width 0.3s;
  }
  #gallery-45 .cs-button-solid:hover:before {
    width: 100%;
  }
}
@media only screen and (min-width: 37.5rem) {
  #gallery-45 .cs-image-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
  }
  #gallery-45 .cs-item {
    grid-column: span 6;
  }
}
@media only screen and (min-width: 48rem) {
  #gallery-45 .cs-item {
    grid-column: span 3;
  }
}
/*-- -------------------------- -->
<---       Service Includes     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #service-includes {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: var(--backgroundWhite);
  }
  #service-includes .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 40px - 64px */
    gap: clamp(2.5rem, 3.9vw, 4rem);
  }
  #service-includes .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #service-includes .cs-title {
    margin: 0;
    max-width: 23ch;
  }
  #service-includes .cs-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    gap: clamp(1rem, 3.2vw, 2rem);
  }
  #service-includes .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
  }
  #service-includes .cs-item {
    list-style: none;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
  }
  #service-includes .cs-item-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #service-includes .cs-item-number {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #service-includes .cs-h3 {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0;
    color: var(--headerColor);
  }
  #service-includes .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #service-includes .cs-floater {
    /* 246px - 582px */
    width: clamp(15.375rem, 50vw, 36.375rem);
    height: auto;
    position: absolute;
    right: -4rem;
    top: -0.5rem;
    z-index: -1;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #service-includes .cs-wrapper {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
  }
  #service-includes .cs-card-group {
    margin-left: 4rem;
  }
}
@media only screen and (min-width: 64rem) {
  #service-includes .cs-card-group {
    margin-left: 8rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #service-includes {
    background-color: var(--backgroundColor);
  }
  body.dark-mode #service-includes .cs-title,
  body.dark-mode #service-includes .cs-h3,
  body.dark-mode #service-includes .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #service-includes .cs-item-text {
    opacity: 0.8;
  }
  body.dark-mode #service-includes .cs-floater {
    opacity: 0.1;
  }
}
/*-- -------------------------- -->
<---      Service gets you      -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #service-gets {
    padding: var(--sectionPadding);
    background-color: var(--backgroundWhite);
  }
  #service-gets .cs-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: clamp(3rem, 6vw, 4rem);
    margin: auto;
    max-width: 80em;
    width: 100%;
  }
  #service-gets .cs-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
    width: 100%;
    justify-content: center;
  }
  #service-gets .cs-flex-group {
    flex: none;
  }
  #service-gets .cs-title {
    max-width: 22ch;
  }
  #service-gets .cs-text {
    margin: 0;
    max-width: 33.8125rem;
  }
  #service-gets .cs-color {
    color: var(--primary);
  }
  #service-gets .cs-card-group {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    row-gap: 1rem;
  }
  #service-gets .cs-item {
    list-style: none;
    max-width: 28.875rem;
    width: 65vw;
    padding: clamp(1.25rem, 4vw, 2.5rem) 1.5rem;
    background-color: var(--bodyTextColorWhite);
    box-sizing: border-box;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }
  #service-gets .cs-item:hover {
    background-color: var(--backgroundWhite);
    box-shadow: rgba(149, 157, 165, 0.2) 0 8px 50px;
    transform: translateY(-0.4375rem);
  }
  #service-gets .cs-item:hover .cs-picture:before {
    height: 100%;
    opacity: 1;
    width: 100%;
  }
  #service-gets .cs-link {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
  }
  #service-gets .cs-picture {
    align-items: center;
    background-color: var(--backgroundWhite);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(26, 26, 26, 0.04);
    display: flex;
    height: 4rem;
    justify-content: center;
    margin: 0;
    margin-bottom: 1.5rem;
    position: relative;
    width: 4rem;
    z-index: 1;
  }
  #service-gets .cs-icon {
    height: 2rem;
    width: auto;
  }
  #service-gets .cs-h3 {
    color: var(--headerColor);
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 0.75rem;
    text-align: center;
    transition: color 0.3s;
  }
  #service-gets .cs-item-p {
    color: var(--bodyTextColor);
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    text-align: center;
    transition: color 0.3s;
  }
  body.dark-mode #service-gets .cs-topper {
    color: var(--primaryLight);
  }
  body.dark-mode #service-gets .cs-title {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #service-gets .cs-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  body.dark-mode #service-gets .cs-h3 {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #service-gets .cs-item-p {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  body.dark-mode #service-gets .cs-item {
    background-color: var(--medium);
  }
}
@media only screen and (min-width: 48rem) {
  #service-gets .cs-content {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }
  #service-gets .cs-card-group {
    column-gap: 1.25rem;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2.5rem;
  }
  #service-gets .cs-item {
    height: 20vh;
    max-height: 25.8125rem;
    width: 30vw;
    max-width: 25.8125rem;
  }
}
@media only screen and (min-width: 64rem) {
  #service-gets .cs-item:nth-of-type(2) {
    transform: translateY(2.5rem);
  }
  #service-gets .cs-item:nth-of-type(2):hover {
    transform: translateY(2.0625rem);
  }
  #service-gets .cs-item:nth-of-type(5) {
    transform: translateY(2.5rem);
  }
  #service-gets .cs-item:nth-of-type(5):hover {
    transform: translateY(2.0625rem);
  }
}
@media only screen and (min-width: 0rem) {
  body.dark-mode #service-gets {
    background-color: var(--dark2);
  }
  body.dark-mode #service-gets .cs-title,
  body.dark-mode #service-gets .cs-h3,
  body.dark-mode #service-gets .cs-item-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #service-gets .cs-item-text {
    opacity: 0.8;
  }
  body.dark-mode #service-gets .cs-floater {
    opacity: 0.1;
  }
}

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