
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1204 {
      /* 150px - 350px */
      padding: clamp(9rem, 25.95vw, 21.875rem) 1rem;
      padding-bottom: 0;
      background-color: #f7f7f7;
      position: relative;
      z-index: 1;
      /* prevents overflow from the arrow graphic */
      overflow: hidden;
  }
  #hero-1204:before {
      /* black bar */
      content: "";
      width: 100%;
      /* 100px - 200px */
      height: clamp(6.25rem, 29vw, 12.5rem);
      background: #1a1a1a;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 0;
  }
  #hero-1204 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* 48px - 64px */
      gap: clamp(3rem, 7vw, 4rem);
  }
  #hero-1204 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: center;
      width: 100%;
      max-width: 39.375rem;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
  }
  #hero-1204 .cs-topper {
      font-size: var(--topperFontSize);
      line-height: 1.2em;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 0.1em;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 0.25rem;
      display: block;
  }
  #hero-1204 .cs-title {
      /* 39px - 61px */
      font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
      font-weight: 900;
      line-height: 1.2em;
      width: 100%;
      max-width: 17ch;
      margin: 0 0 1rem;
      color: var(--headerColor);
      position: relative;
  }
  #hero-1204 .cs-text {
      font-size: 1.25rem;
      line-height: 1.5em;
      width: 100%;
      max-width: 43.75rem;
      /* 28px - 40px */
      margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
      color: var(--bodyTextColor);
  }
  #hero-1204 .cs-button-solid {
      font-size: 1rem;
      text-align: center;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      width: 11.25rem;
      text-decoration: none;
      font-weight: 700;
      /* clips corners of the before element */
      overflow: hidden;
      margin: 0;
      color: #1a1a1a;
      padding: 0;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
  }
  #hero-1204 .cs-button-solid:before {
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 0%;
      background: #000;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
  }
  #hero-1204 .cs-button-solid:hover {
      color: #fff;
  }
  #hero-1204 .cs-button-solid:hover:before {
      width: 100%;
  }
  #hero-1204 .cs-picture {
      width: 100%;
      /* changes to 866px at desktop */
      max-width: 34.0625rem;
      height: auto;
      display: flex;
      align-items: flex-end;
      position: relative;
  }
  #hero-1204 .cs-picture img {
      width: 100%;
      height: auto;
  }
  #hero-1204 .cs-floater {
      /* changes to 1465px at desktop */
      width: 59.6875rem;
      height: auto;
      opacity: 0.08;
      display: block;
      position: absolute;
      right: 0;
      top: 40%;
      z-index: -1;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #hero-1204:before {
      height: 16.125rem;
  }
  #hero-1204 .cs-picture {
      width: 70%;
      max-width: 54.125rem;
  }
  #hero-1204 .cs-floater {
      width: 91.5625rem;
      top: 30%;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-1204 {
      padding-bottom: 15.625rem;
  }
  #hero-1204:before {
      height: 100%;
      width: 40vw;
      margin-left: 20.8125rem;
      left: 50%;
  }
  #hero-1204 .cs-container {
      flex-direction: row;
      justify-content: flex-start;
      /* remove the positioning so the cs-picture is now absolutely positioned to the next parent with a declared position - the #hero section container. Now we can position it off the bottom edge of the parent container */
      position: initial;
  }
  #hero-1204 .cs-content {
      text-align: left;
      align-items: flex-start;
  }
  #hero-1204 .cs-picture {
      width: 54.125rem;
      height: 52.625rem;
      margin-left: 0.625rem;
      position: absolute;
      left: 50%;
      bottom: 0;
  }
  #hero-1204 .cs-picture img {
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      position: absolute;
      object-fit: contain;
  }
  #hero-1204 .cs-floater {
      margin-right: -20.8125rem;
      top: 8.75rem;
      right: 50%;
  }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-1204 {
      padding: var(--sectionPadding);
      padding-top: 0;
      padding-bottom: 0;
      position: relative;
      z-index: 10;
  }
  #services-1204 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      margin-top: calc(clamp(3.125rem, 7vw, 6.25rem) * -1);
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(3rem, 6vw, 4rem);
  }
  #services-1204 .cs-card-group {
      width: 100%;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      flex-direction: column;
      /* 16px - 20px */
      gap: clamp(1rem, 2.5vw, 1.25rem);
  }
  #services-1204 .cs-item {
      text-align: center;
      list-style: none;
      width: 100%;
      max-width: 31.25rem;
      /* 16px - 32px */
      padding: clamp(1rem, 3vw, 2rem);
      background-color: #fff;
      border: 1px solid #e8e8e8;
      box-sizing: border-box;
      transition:
          background-color 0.3s,
          transform 0.3s,
          box-shadow 0.3s;
  }
  #services-1204 .cs-item:hover {
      background-color: #fff;
      box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 50px;
      transform: translateY(-0.4375rem);
  }
  #services-1204 .cs-item:hover .cs-picture:before {
      width: 100%;
      height: 100%;
      opacity: 1;
  }
  #services-1204 .cs-link {
      text-decoration: none;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
  }
  #services-1204 .cs-picture {
      /* 60px - 80px */
      width: clamp(3.75rem, 10vw, 5rem);
      height: clamp(3.75rem, 10vw, 5rem);
      /* 16px - 24px */
      margin: 0 0 clamp(1rem, 3vw, 1.5rem);
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background-color: #fff5e6;
      position: relative;
      z-index: 1;
  }
  #services-1204 .cs-icon {
      /* 32px - 40px */
      height: clamp(2rem, 4vw, 2.5rem);
      width: auto;
  }
  #services-1204 .cs-h3 {
      /* 20px - 25px */
      font-size: clamp(1.25rem, 2vw, 1.5625rem);
      font-weight: 700;
      text-align: inherit;
      line-height: 1.2em;
      /* 8px - 12px */
      margin: 0 0 clamp(0.5rem, 2vw, 0.75rem);
      color: var(--headerColor);
      transition: color 0.3s;
  }
  #services-1204 .cs-item-text {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      text-align: inherit;
      line-height: 1.5em;
      margin: 0;
      color: var(--bodyTextColor);
      transition: color 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-1204 .cs-card-group {
      flex-direction: row;
      justify-content: space-between;
      flex-wrap: nowrap;
  }
}

                              
/*-- -------------------------- -->
<---           Blog             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #blog-1701 {
    overflow: hidden;
    position: relative;
    z-index: 1;
    margin-top: 3em;
    margin-bottom: 3em;
  }
  #blog-1701 .cs-container {
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  #blog-1701 .cs-news {
    /* changes to 740px on tablet */
    max-width: 31.25rem;
    margin: auto;
    padding: var(--sectionPadding);
    display: flex;
    flex-direction: column;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #blog-1701 .cs-content {
    /* set text align to center if content needs to be centrally aligned */
    text-align: left;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* aligns content to the left, set to center to centrally align */
    align-items: flex-start;
  }
  #blog-1701 .cs-title {
    margin: 0;
  }
  #blog-1701 .cs-card-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  #blog-1701 .cs-item {
    display: flex;
    flex-direction: column;
    /* 20px - 32px */
    gap: clamp(1.25rem, 3vw, 2rem);
  }
  #blog-1701 .cs-picture {
    width: auto;
    height: 11.4375rem;
    display: block;
  }
  #blog-1701 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  #blog-1701 .cs-item-text {
    flex: 1 0 0;
  }
  #blog-1701 .cs-h3 {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    text-overflow: ellipsis;
    margin: 0;
    margin-bottom: 1rem;
    color: var(--headerColor);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  #blog-1701 .cs-desc {
    font-size: 1rem;
    line-height: 1.5em;
    text-overflow: ellipsis;
    margin: 0;
    color: var(--bodyTextColor);
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }
  #blog-1701 .cs-link {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    text-decoration: none;
    margin-top: 1.5rem;
    color: var(--primary);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.625rem;
    transition: color 0.3s;
  }
  #blog-1701 .cs-link:hover .cs-arrow {
    transform: translateX(0.25rem);
  }
  #blog-1701 .cs-link-text {
    width: fit-content;
    display: block;
  }
  #blog-1701 .cs-arrow {
    width: 1.25rem;
    height: auto;
    display: block;
    transition: filter 0.3s, transform 0.3s;
  }
  #blog-1701 .cs-background {
    width: 100%;
    height: 22.5rem;
    display: block;
  }
  #blog-1701 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #blog-1701 {
    padding: var(--sectionPadding);
  }
  #blog-1701 .cs-container {
    padding: 0;
    flex-direction: row;
    justify-content: flex-end;
  }
  #blog-1701 .cs-title {
    margin: 0;
  }
  #blog-1701 .cs-news {
    width: 60vw;
    max-width: 46.25rem;
    margin: 0;
    padding: 0;
  }
  #blog-1701 .cs-card-group {
    /* 16px - 32px */
    gap: clamp(1rem, 3vw, 2rem);
  }
  #blog-1701 .cs-item {
    flex-direction: row;
  }
  #blog-1701 .cs-picture {
    width: 11.25rem;
    height: 11.25rem;
  }
  #blog-1701 .cs-background {
    width: 30%;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
  #blog-1701 .cs-background {
    width: 50vw;
    right: 50%;
    left: auto;
    margin-right: 13.75rem;
  }
}
                                

                                                             

                              
                                
                                