/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-489 {
    padding: var(--sectionPadding);
    background: #fafbfc;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  #faq-489 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* 40px - 48px */
    gap: clamp(2.5rem, 5vw, 3rem);
  }
  #faq-489 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #faq-489 .cs-content .cs-title {
    /* 17 characters wide including spaces */
    max-width: 17ch;
  }
  #faq-489 .cs-content .cs-text {
    /* 32px - 48px */
    margin-bottom: clamp(2rem, 3vw, 3rem);
  }
  #faq-489 .cs-faq-group {
    max-width: 46.25rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.25rem;
  }
  #faq-489 .cs-faq-group .cs-faq-item {
    list-style: none;
    width: 100%;
    /* prevents border from affecting width and height */
    box-sizing: border-box;
    background-color: #fff;
    border: 1px solid #f1f1f4;
    transition: border 0.3s, padding 0.3s, border-color 0.3s;
  }
  #faq-489 .cs-faq-group .cs-faq-item:hover {
    border-color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item.active {
    padding-bottom: 1rem;
    border-color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button {
    /* 20px - 25px */
    font-size: 1.3rem;
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--headerColor);
    display: block;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button:hover {
    cursor: pointer;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button:before {
    /* horizontal line */
    content: "";
    width: 1rem;
    height: 0.1875rem;
    background-color: currentColor;
    opacity: 1;
    border-radius: 1px;
    position: absolute;
    display: block;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    transition: transform 0.5s, opacity 0.3s;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button:after {
    /* vertical line */
    content: "";
    width: 1rem;
    height: 0.1875rem;
    background-color: currentColor;
    opacity: 1;
    border-radius: 1px;
    position: absolute;
    display: block;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    transition: transform 0.5s;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button[aria-expanded="true"] {
    color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button[aria-expanded="true"]:before {
    transform: translateY(-50%) rotate(180deg);
    opacity: 0;
    background-color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button[aria-expanded="true"]:after {
    transform: translateY(-50%) rotate(360deg);
    background-color: var(--primary);
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button[aria-expanded="true"] + .cs-item-p {
    height: auto;
    margin-top: 0.5rem;
    opacity: 1;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-button .cs-button-text {
    width: 80%;
    display: block;
  }
  #faq-489 .cs-faq-group .cs-faq-item .cs-item-p {
    /* 14px - 16px */
    font-size: 1.1rem;
    line-height: 1.5em;
    width: 90%;
    height: 0;
    margin: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 48rem) {
  #faq-489 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.25rem;
  }
  #faq-489 .cs-content {
    margin-top: 3.125rem;
  }
  #faq-489 .cs-content .cs-title,
  #faq-489 .cs-content .cs-topper {
    text-align: left;
    margin-left: 0;
  }
  #faq-489 .cs-faq-group {
    width: clamp(56%, 58vw, 58%);
    flex: none;
  }
}
/*-- -------------------------- -->
<---         Intro           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #services-218 {
    padding: var(--sectionPadding);
  }
  #services-218 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-218 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #services-218 .cs-content .cs-topper {
    width: 100%;
    max-width: 100%;
  }
  #services-218 .cs-content .cs-title {
    max-width: 100%;
    width: 100%;
  }
  #services-218 .cs-content .cs-text {
    margin-bottom: 1rem;
    max-width: 100%;
  }
  #services-218 .cs-content .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #services-218 .cs-card-group {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
  }
  #services-218 .cs-card-group .cs-item {
    list-style: none;
    width: 100%;
    margin-right: 0.625rem;
    /* padding left and right changes on tablet */
    padding: 2.75rem 2rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    background-color: #fafbfc;
    border: 1px solid #dad9e3;
    border-radius: 0.3125rem;
    position: relative;
  }
  #services-218 .cs-card-group .cs-item:before {
    /* top right box */
    content: "";
    width: 45%;
    max-width: 11.25rem;
    height: 50%;
    max-height: 9rem;
    background: var(--primary);
    border-radius: 1rem;
    position: absolute;
    display: block;
    top: -0.625rem;
    right: -0.625rem;
    z-index: -1;
  }
  #services-218 .cs-card-group .cs-item .cs-icon {
    /* 60px - 77px */
    width: clamp(3.75rem, 7.6vw, 4.8125rem);
    height: auto;
    margin-bottom: 2.5rem;
    display: block;
    filter: var(--greenSvgFilter);
  }
  #services-218 .cs-card-group .cs-item .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 1.5vw, 1.5625rem);
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 1rem;
    color: var(--headerColor);
    font-weight: bold;
  }
  #services-218 .cs-card-group .cs-item .cs-item-text {
    font-size: 1rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColor);
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #services-218 .cs-container {
    max-width: 80rem;
    position: relative;
  }
  #services-218 .cs-content {
    text-align: center;
  }
  #services-218 .cs-card-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  #services-218 .cs-card-group .cs-item {
    grid-column: span 4;
    grid-row: span 1;
    margin: 0;
    /* makes each card the same height if you add or remove lines of text */
    align-self: stretch;
  }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .RPsbs-70,
  .RPsbsr-70 {
    padding: var(--sectionPadding);
  }
  .RPsbs-70 .cs-container,
  .RPsbsr-70 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  .RPsbs-70 .test,
  .RPsbsr-70 .test {
    border: 1px solid #f00;
    width: 100%;
    max-width: 600px;
    height: 1000px;
  }
  .RPsbs-70 .cs-content,
  .RPsbsr-70 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  .RPsbs-70 .cs-content .cs-title,
  .RPsbsr-70 .cs-content .cs-title {
    font-size: clamp(1.9375rem, 3.9vw, 2.5rem);
  }
  .RPsbs-70 .cs-content .cs-text,
  .RPsbsr-70 .cs-content .cs-text {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .RPsbs-70 .cs-content .cs-text:last-of-type,
  .RPsbsr-70 .cs-content .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  .RPsbs-70 .cs-content h3,
  .RPsbsr-70 .cs-content h3 {
    font-size: 1.2rem;
    margin-top: 2rem;
    line-height: 1.5em;
    margin-bottom: 1rem;
  }
  .RPsbs-70 .cs-content .list-1405,
  .RPsbsr-70 .cs-content .list-1405 {
    width: 100%;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .RPsbs-70 .cs-content .list-1405 .cs-li,
  .RPsbsr-70 .cs-content .list-1405 .cs-li {
    font-size: 1.2rem;
    list-style: none;
    line-height: 1.5em;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    /* push icon top the top so if the list item goes to two lines the icon stays at the top */
    align-items: center;
    gap: 0.625rem;
  }
  .RPsbs-70 .cs-content .list-1405 .cs-icon,
  .RPsbsr-70 .cs-content .list-1405 .cs-icon {
    width: 1.5rem;
    padding: 0.1rem;
    height: auto;
    /* adds extra space between the icon and top of parent so it's more centered */
    margin-top: 1px;
    display: block;
    background-color: var(--primary);
    border-radius: 50%;
  }
  .RPsbs-70 .cs-content .cs-button-solid,
  .RPsbsr-70 .cs-content .cs-button-solid {
    margin-top: 1.3rem;
  }
  .RPsbs-70 .youtube-player-wrapper,
  .RPsbsr-70 .youtube-player-wrapper {
    width: 100%;
    aspect-ratio: 312/250;
    position: relative;
  }
  .RPsbs-70 .youtube-player-wrapper .youtube-player,
  .RPsbsr-70 .youtube-player-wrapper .youtube-player {
    cursor: pointer;
  }
  .RPsbs-70 .youtube-player-wrapper .youtube-player .play,
  .RPsbsr-70 .youtube-player-wrapper .youtube-player .play {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    padding: 0.7rem 1.5rem;
    background-color: #ff3d00;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  }
  .RPsbs-70 .youtube-player-wrapper .youtube-player picture img,
  .RPsbsr-70 .youtube-player-wrapper .youtube-player picture img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%;
    width: 100%;
    object-position: top;
    object-fit: cover;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    transition: 0.4s all;
  }
  .RPsbs-70 .youtube-player-wrapper .youtube-player:hover .play,
  .RPsbsr-70 .youtube-player-wrapper .youtube-player:hover .play {
    background-color: #ff6636;
  }
  .RPsbs-70 .youtube-player-wrapper .youtube-player:hover picture img,
  .RPsbsr-70 .youtube-player-wrapper .youtube-player:hover picture img {
    -webkit-filter: brightness(75%);
  }
  .RPsbs-70 .cs-picture,
  .RPsbsr-70 .cs-picture {
    width: 95%;
    max-width: 18.75rem;
    margin: 0;
    position: relative;
    display: block;
    /* width divided by height */
    aspect-ratio: 312/335;
    border-radius: 1rem;
    z-index: 1;
  }
  .RPsbs-70 .cs-picture:before,
  .RPsbsr-70 .cs-picture:before {
    /* Top right box */
    content: "";
    width: 10rem;
    /* 202px - 248px */
    height: clamp(12.625rem, 25vw, 15.5rem);
    background: var(--primaryDark);
    opacity: 1;
    border-radius: 1rem;
    position: absolute;
    display: block;
    /* 16px -20px */
    /* wrapped in a calc funtion to get a negative clamp value */
    top: calc(clamp(.5rem, 2.09vw, 1.25rem) * -1);
    right: calc(clamp(.5rem, 2.09vw, 1.25rem) * -1);
  }
  .RPsbs-70 .cs-picture:after,
  .RPsbsr-70 .cs-picture:after {
    /* Bottom left box */
    content: "";
    width: 10rem;
    /* 202px - 248px */
    height: clamp(12.625rem, 25vw, 15.5rem);
    background: var(--primaryDark);
    opacity: 1;
    border-radius: 1rem;
    position: absolute;
    display: block;
    /* 16px -20px */
    /* wrapped in a calc funtion to get a negative clamp value */
    bottom: calc(clamp(.5rem, 2.09vw, 1.25rem) * -1);
    left: calc(clamp(.5rem, 2.09vw, 1.25rem) * -1);
    z-index: -1;
  }
  .RPsbs-70 .cs-picture img,
  .RPsbsr-70 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
  }
  .RPsbs-70 .cs-picture.gas-detector img,
  .RPsbsr-70 .cs-picture.gas-detector img {
    object-position: right;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .RPsbs-70 .cs-container,
  .RPsbsr-70 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    /* 60px - 128px */
    gap: clamp(3.75rem, 9.5vw, 8rem);
  }
  .RPsbs-70 .cs-picture,
  .RPsbsr-70 .cs-picture,
  .RPsbs-70 .youtube-player-wrapper,
  .RPsbsr-70 .youtube-player-wrapper {
    /* 328px - 502px */
    width: clamp(20.5rem, 37.5vw, 31.375rem);
    /* 440px - 520px */
    height: clamp(27.5rem, 40vw, 32.5rem);
    flex: none;
    max-width: 34.375rem;
  }
  .RPsbs-70 .cs-content,
  .RPsbsr-70 .cs-content {
    width: 45%;
    margin: 0;
  }
}
/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .RPsbsr-70 {
    background-color: #f7f7f7;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48em) {
  .RPsbsr-70 .cs-container {
    justify-content: flex-end;
  }
  .RPsbsr-70 .cs-picture {
    /* 16px - 20px */
    margin-right: clamp(1rem, 5vw, 1.25rem);
    /* forces it to the left */
    order: 2;
  }
}
/*-- -------------------------- -->
<---        FAQ        -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #faq-489 {
    margin-bottom: 3rem;
  }
}
