:root {
  --primary: #ff6a3e;
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fff9e8;
  /* 13px - 16px */
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  /* 31px - 49px */
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  /* 60px - 100px top and bottom */
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}

.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--bs-danger);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--bs-primary);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-709 {
    position: relative;
    overflow: hidden;
  }
  #faq-709 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 40px - 48px */
    gap: clamp(2.5rem, 5vw, 3rem);
  }
  #faq-709 .cs-content {
    text-align: left;
    max-width: 33.8125rem;
    /* move section padding to the cs-content so we can make the cs-picture full width */
    padding: var(--sectionPadding);
    padding-top: 0;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
  }
  #faq-709 .cs-title {
    /* 20 characters wide including spaces */
    max-width: 20ch;
    margin: 0 0 1.5rem 0;
  }
  #faq-709 .cs-faq-group {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #faq-709 .cs-faq-item {
    list-style: none;
    width: 100%;
    border-bottom: 1px solid #e8e8e8;
    transition: border-bottom 0.3s;
  }
  #faq-709 .cs-faq-item.active {
    border-color: var(--primaryLight);
  }
  #faq-709 .cs-faq-item.active .cs-button {
    color: var(--bs-secondary);
  }
  #faq-709 .cs-faq-item.active .cs-button:before {
    background-color: var(--primaryLight);
    transform: rotate(315deg);
  }
  #faq-709 .cs-faq-item.active .cs-button:after {
    background-color: var(--primaryLight);
    transform: rotate(-315deg);
  }
  #faq-709 .cs-faq-item.active .cs-item-p {
    height: auto;
    /* 20px - 24px bottom */
    padding: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
    opacity: 1;
  }
  #faq-709 .cs-button {
    /* 16px - 20px */
    font-size: clamp(1rem, 2vw, 1.25rem);
    line-height: 1.2em;
    text-align: left;
    font-weight: bold;
    /* 16px - 24px */
    padding: clamp(1rem, 2.3vw, 1.5rem) 0;
    border: none;
    background: transparent;
    color: var(--headerColor);
    display: block;
    width: 100%;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
  }
  #faq-709 .cs-button:hover {
    cursor: pointer;
  }
  #faq-709 .cs-button:before {
    /* left line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 45%;
    right: 0.25rem;
    transform: rotate(45deg);
    /* animate the transform from the left side of the x axis, and the center of the y */
    transform-origin: left center;
    transition: transform 0.5s;
  }
  #faq-709 .cs-button:after {
    /* right line */
    content: "";
    width: 0.5rem;
    height: 0.125rem;
    background-color: var(--headerColor);
    opacity: 1;
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 45%;
    right: 0.0625rem;
    transform: rotate(-45deg);
    /* animate the transform from the right side of the x axis, and the center of the y */
    transform-origin: right center;
    transition: transform 0.5s;
  }
  #faq-709 .cs-button-text {
    width: 90%;
    display: block;
  }
  #faq-709 .cs-item-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    width: 90%;
    max-width: 33.8125rem;
    height: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    color: var(--bodyTextColor);
    /* clips the text so it doesn't show up */
    overflow: hidden;
    transition: opacity 0.3s, padding-bottom 0.3s;
  }
  #faq-709 .cs-graphic {
    width: 22.5625rem;
    height: auto;
    opacity: 0.5;
    display: none;
    position: absolute;
    left: -8.125rem;
    bottom: -1.875rem;
    /* flips it horizontally */
    transform: scaleX(-1);
  }
  #faq-709 .cs-picture {
    display: block;
    position: relative;
    width: 100%;
    height: 16rem;
    z-index: 1;
  }
  #faq-709 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 0px;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #faq-709 {
    /* moved seciton padding back to the section */
    padding: var(--sectionPadding);
  }
  #faq-709 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  #faq-709 .cs-picture {
    width: 50%;
    max-width: 40.625rem;
    /* 500px - 750px */
    height: clamp(31.25rem, 68vw, 46.875rem);
    /* sends it to the right in the 2nd position */
    order: 2;
  }
  #faq-709 .cs-picture img {
    border-radius: 0px;
  }
  #faq-709 .cs-content {
    width: 55%;
    padding: 0;
  }
}
/* Desktop - 1600px */
@media only screen and (min-width: 100rem) {
  #faq-709 .cs-graphic {
    display: block;
  }
}
/*-- -------------------------- -->
<---         FAQ Quote          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #quote-2185 {
    padding: var(--sectionPadding);
    /* 120px - 300px */
    padding-top: clamp(7.5rem, 25vw, 18.75rem);
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }
  #quote-2185 .cs-container {
    width: 100%;
    max-width: 82rem;
    margin: auto;
    padding-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  #quote-2185 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 90%;
    max-width: 46.125rem;
    /* 32px - 48px top & bottom */
    padding: clamp(2rem, 6vw, 2.5rem);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  #quote-2185 .cs-content:before {
    content: "";
    width: 100%;
    height: 100%;
    background: #0b3540;
    opacity: 0.84;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 25px 25px 0 0;
    z-index: -1;
  }
  #quote-2185 .cs-quote {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    max-width: 62.5rem;
    /* 32px - 48px */
    margin: 0 0 clamp(2rem, 6vw, 3rem);
    color: #fff9e8;
  }
  #quote-2185 .cs-name {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--bs-secondary);
    display: block;
  }
  #quote-2185 .cs-job {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0;
    color: #bababa;
    display: block;
  }
  #quote-2185 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #quote-2185 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #quote-2185 .cs-content {
    width: 80%;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
.services, .rates {
  background: #151515 url("../images/ed-robertson-eeSdJfLfx1A-unsplash.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
}

.services .text-container {
  z-index: 10;
}

.hr-heading {
  display: inline-block;
  width: 5rem;
  height: 0.25rem;
  margin-top: 0.625rem;
  border: none;
  background-color: var(--bs-secondary);
  opacity: 1;
  border-radius: 3px;
}

.btn-services:hover {
  transform: scale(1.125);
  transition: all 0.5s ease-in-out;
  opacity: 0.85;
}

/*-- -------------------------- -->
<---      Services Quote        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #quote-services {
    padding: var(--sectionPadding);
    /* 120px - 300px */
    padding-top: clamp(7.5rem, 25vw, 18.75rem);
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }
  #quote-services .cs-container {
    width: 100%;
    max-width: 82rem;
    margin: auto;
    padding-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  #quote-services .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 90%;
    max-width: 46.125rem;
    /* 32px - 48px top & bottom */
    padding: clamp(2rem, 6vw, 2.5rem);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  #quote-services .cs-content:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--bs-light);
    opacity: 0.84;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 25px 25px 0 0;
    z-index: -1;
  }
  #quote-services .cs-quote {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    max-width: 62.5rem;
    /* 32px - 48px */
    margin: 0 0 clamp(2rem, 6vw, 3rem);
    color: var(--bs-primary);
  }
  #quote-services .cs-name {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--bs-danger);
    display: block;
  }
  #quote-services .cs-job {
    /* 14px - 16px */
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bs-dark);
    display: block;
  }
  #quote-services .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #quote-services .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #quote-2185 .cs-content {
    width: 80%;
  }
}
/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-964 {
    padding: var(--sectionPadding);
    background-size: auto;
    background-position: center;
    background-repeat: repeat;
    background-color: var(--bs-light);
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  #services-964 .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-964 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services-964 .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #services-964 .cs-title,
  #services-964 .cs-text {
    max-width: 100%;
  }
  #services-964 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    row-gap: 1.875rem;
  }
  #services-964 .cs-item {
    width: 100%;
    text-align: left;
    list-style: none;
    /* margin top value to match the negative margin value of the .cs-icon-wrapper */
    margin: 2.75rem 0 0 0;
    /* 24px - 64px bottom */
    /* 24px - 40px left & right */
    padding: 0 clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 6vw, 4rem);
    background-color: var(--bs-white);
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: start;
    position: relative;
    z-index: 1;
  }
  #services-964 .cs-item:hover .cs-h3 {
    color: var(--bodyTextColorWhite);
  }
  #services-964 .cs-item:hover .cs-h4 {
    color: var(--bodyTextColorWhite);
  }
  #services-964 .cs-item:hover .cs-item-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #services-964 .cs-item:hover .cs-background {
    opacity: 1;
  }
  #services-964 .cs-icon-wrapper {
    width: 5.5rem;
    height: 5.5rem;
    margin: -2.75rem auto 2rem 0;
    background-color: var(--bs-secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: calc(clamp(1.5rem, 4vw, 2.5rem) * -1);
  }
  #services-964 .cs-icon {
    width: 2.5rem;
    height: auto;
  }
  #services-964 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #services-964 .cs-h4 {
    font-size: clamp(1.1rem, 2.3vw, 1.4rem);
    line-height: 1.2em;
    font-weight: normal;
    text-align: inherit;
    margin: 0 0 0.75rem 0;
    color: var(--headerColor);
  }
  #services-964 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 18.75rem;
    margin: 0 0 1.125rem 0;
    padding: 0;
    color: var(--bodyTextColor);
  }
  #services-964 .cs-link {
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.2em;
    font-weight: bold;
    margin: 0;
    padding: 0.5rem 1rem;
    color: var(--bs-primary);
    position: relative;
    transition: color 0.3s;
  }
  #services-964 .cs-link:hover {
    color: #fff;
  }
  #services-964 .cs-background {
    width: 100%;
    height: 100%;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
  #services-964 .cs-background:before {
    /* background color overlay */
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: #1a1a1a;
    opacity: 0.84;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #services-964 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* Makes img tag act as a background image */
    object-fit: cover;
  }
  #services-964 .cs-waves {
    width: 100%;
    height: 13.875rem;
    background-color: var(--bs-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
  #services-964 .cs-waves img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
  #services-964 .cs-graphic {
    width: 22.5625rem;
    height: auto;
    opacity: 0.5;
    display: none;
    position: absolute;
    right: -5rem;
    bottom: 12.5rem;
    /* flips it horizontally */
    z-index: 0;
    overflow: hidden;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-964 .cs-container {
    max-width: 80rem;
  }
  #services-964 .cs-card-group {
    column-gap: 1.875rem;
  }
  #services-964 .cs-item {
    grid-column: span 6;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-964 .cs-item {
    grid-column: span 4;
  }
  #services-964 .cs-graphic {
    display: block;
    overflow: hidden;
  }
}
/*-- -------------------------- -->
<---         Home Page          -->
<--- -------------------------- -*/
.landing .landing-logo {
  width: clamp(300px, 50%, 916px);
}

.typing-text {
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
}

.typing-content {
  margin-top: auto;
  padding: 1rem;
  text-align: center;
}

.blob-motion {
  position: absolute;
  transform: translateY(-20%);
}

.navbar-hidden {
  opacity: 0;
  pointer-events: none;
}

.navbar-show {
  opacity: 0.9;
  pointer-events: auto;
}

.navbar-sticky {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  transition: all 0.5s ease-in-out;
}

.paper-background {
  background-image: url(/images/vintage-concrete.webp);
  overflow: hidden;
}

.amanda {
  position: relative;
  z-index: 2;
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .map-pin {
    position: relative;
    z-index: 2;
  }
  .mtn-graphic {
    opacity: 0.18;
    display: inline;
    position: relative;
    z-index: 0;
    top: -137.5rem;
    left: 7.5rem;
  }
  .mtn-l-graphic {
    opacity: 0.18;
    display: inline;
    position: relative;
    z-index: 0;
    left: -2.5rem;
    top: -187.5rem;
  }
  .mtn-b-graphic {
    opacity: 0.18;
    display: none;
    position: relative;
    z-index: 0;
    left: -20rem;
    top: -15.625rem;
    /* flips it horizontally */
    transform: scaleX(-1);
  }
  .dtree-graphic {
    opacity: 0.18;
    display: none;
    position: relative;
    z-index: 0;
    left: 0.625rem;
    bottom: -1.875rem;
    /* flips it horizontally */
    transform: scaleX(-1);
  }
  .tree-graphic {
    opacity: 0.18;
    display: inline;
    position: relative;
    z-index: 0;
    right: 3.125rem;
    top: -75rem;
  }
  .fir-graphic {
    opacity: 0.18;
    display: none;
    position: relative;
    z-index: 0;
    /* flips it horizontally */
    transform: scaleX(-1);
  }
  .castle-graphic {
    opacity: 0.18;
    display: inline;
    position: relative;
    z-index: 0;
    top: -101.875rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .mtn-graphic {
    top: -92.5rem;
    left: -10.625rem;
  }
  .mtn-l-graphic {
    display: inline;
    left: -10.625rem;
    top: -137.5rem;
  }
  .mtn-b-graphic {
    display: inline;
    left: 23.125rem;
    top: -75rem;
  }
  .tree-graphic {
    right: 15.625rem;
    top: -75rem;
  }
  .dtree-graphic {
    display: inline;
    left: -8.125rem;
    top: -103.125rem;
  }
  .fir-graphic {
    display: inline;
    right: 23.125rem;
    top: -64.375rem;
  }
  .castle-graphic {
    display: inline;
    right: 35.625rem;
    top: -56.25rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .mtn-graphic {
    display: inline;
    right: 40.625rem;
    top: -31.25rem;
    left: auto;
    /* flips it horizontally */
    transform: scaleX(-1);
  }
  .mtn-l-graphic {
    display: inline;
    left: -20rem;
    top: -93.75rem;
  }
  .mtn-b-graphic {
    display: inline;
    right: -75rem;
    top: -87.5rem;
    left: auto;
  }
  .tree-graphic {
    display: inline;
    right: 3.75rem;
    top: -22.5rem;
  }
  .dtree-graphic {
    display: inline;
    left: 0.625rem;
    top: -81.25rem;
  }
  .fir-graphic {
    display: inline;
    right: -16.875rem;
    top: -107.5rem;
  }
}
/*-- -------------------------- -->
<---      About Quote        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #quote-about {
    padding: var(--sectionPadding);
    /* 120px - 300px */
    padding-top: clamp(7.5rem, 25vw, 18.75rem);
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }
  #quote-about .cs-container {
    width: 100%;
    max-width: 82rem;
    margin: auto;
    padding-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  #quote-about .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 90%;
    max-width: 46.125rem;
    /* 32px - 48px top & bottom */
    padding: clamp(2rem, 6vw, 2.5rem);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  #quote-about .cs-content:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--bs-secondary);
    opacity: 0.84;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 25px 25px 0 0;
    z-index: -1;
  }
  #quote-about .cs-quote {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    max-width: 62.5rem;
    /* 32px - 48px */
    margin: 0 0 clamp(2rem, 6vw, 3rem);
    color: var(--bs-dark);
  }
  #quote-about .cs-name {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--bs-primary);
    display: block;
  }
  #quote-about .cs-job {
    /* 14px - 16px */
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bs-dark);
    display: block;
  }
  #quote-about .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #quote-about .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #quote-2185 .cs-content {
    width: 80%;
  }
}
/*-- -------------------------- -->
<---      Contact  Quote        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #quote-contact {
    padding: var(--sectionPadding);
    /* 120px - 300px */
    padding-top: clamp(7.5rem, 25vw, 18.75rem);
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }
  #quote-contact .cs-container {
    width: 100%;
    max-width: 82rem;
    margin: auto;
    padding-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  #quote-contact .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 90%;
    max-width: 46.125rem;
    /* 32px - 48px top & bottom */
    padding: clamp(2rem, 6vw, 2.5rem);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  #quote-contact .cs-content:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--bs-info);
    opacity: 0.84;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 25px 25px 0 0;
    z-index: -1;
  }
  #quote-contact .cs-quote {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    max-width: 62.5rem;
    /* 32px - 48px */
    margin: 0 0 clamp(2rem, 6vw, 3rem);
    color: var(--bs-dark);
  }
  #quote-contact .cs-name {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--bs-primary);
    display: block;
  }
  #quote-contact .cs-job {
    /* 14px - 16px */
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bs-dark);
    display: block;
  }
  #quote-contact .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #quote-contact .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #quote-2185 .cs-content {
    width: 80%;
  }
}
/*-- -------------------------- -->
<---      Home  Quote        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #quote-home {
    padding: var(--sectionPadding);
    /* 120px - 300px */
    padding-top: clamp(7.5rem, 25vw, 18.75rem);
    padding-bottom: 0;
    position: relative;
    z-index: 1;
  }
  #quote-home .cs-container {
    width: 100%;
    max-width: 82rem;
    margin: auto;
    padding-bottom: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
  }
  #quote-home .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 90%;
    max-width: 46.125rem;
    /* 32px - 48px top & bottom */
    padding: clamp(2rem, 6vw, 2.5rem);
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
    position: relative;
    z-index: 10;
  }
  #quote-home .cs-content:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--bs-white);
    opacity: 0.84;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    border-radius: 25px 25px 0 0;
    z-index: -1;
  }
  #quote-home .cs-quote {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    font-weight: 700;
    line-height: 1.2em;
    max-width: 62.5rem;
    /* 32px - 48px */
    margin: 0 0 clamp(2rem, 6vw, 3rem);
    color: var(--bs-dark);
  }
  #quote-home .cs-name {
    font-size: 1.25rem;
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem;
    color: var(--bs-primary);
    display: block;
  }
  #quote-home .cs-job {
    /* 14px - 16px */
    font-size: 1.25rem;
    line-height: 1.5em;
    margin: 0;
    color: var(--bs-dark);
    display: block;
  }
  #quote-home .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #quote-home .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #quote-2185 .cs-content {
    width: 80%;
  }
}
