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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-2153 {
    padding: var(--sectionPadding);
    padding: clamp(9.375rem, 16.95vw, 12.5rem) 0 clamp(2.5rem, 4.82vw, 5.625rem) 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-2153::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
      background: linear-gradient(
      to top right,
      var(--secondary) 20%,
      var(--primary) 70%
    );
    z-index: -1;
  }
  #hero-2153 .cs-container {
    width: 100%;
    max-width: 44rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 5vw, 4rem);
    position: relative;
    z-index: 1;
    padding: 0 1rem;
  }
  #hero-2153 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  #hero-2153 .cs-topper {
    color: var(--bodyTextColorWhite);
  }
  #hero-2153 .cs-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    text-transform: none;
    line-height: 1.2;
    color: var(--bodyTextColorWhite);
  }
  #hero-2153 .cs-text {
    color: var(--bodyTextColorWhite);
    font-size: clamp(0.95rem, 2vw, 1rem);
    line-height: 1.6;
  }
  #hero-2153 .cs-image-group {
    width: 100%;
    height: clamp(18rem, 70vw, 18rem);
    margin-top: clamp(1.5rem, 4vw, 3rem);
    position: relative;
  }
  #hero-2153 .cs-picture {
    width: 100%;
    height: 100%;
    display: block;
  }
  #hero-2153 .cs-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #hero-2153::before {
    height: 80%;
  }
  #hero-2153 .cs-container {
    max-width: 59rem;
  }
  #hero-2153 .cs-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  #hero-2153 .cs-flex {
    width: 60%;
  }
  #hero-2153 .cs-title {
    margin: 0;
  }
  #hero-2153 .cs-text {
    max-width: 35rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 65rem) {
  #hero-2153 .cs-container {
    max-width: 80rem;
  }
  #hero-2153 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
    text-align: left;
    max-width: 90%;
  }
  #hero-2153 .cs-image-group {
    width: 100%;
    height: clamp(16rem, 45vw, 26rem);
    margin-top: clamp(3rem, 6vw, 5rem);
    position: relative;
  }
}
/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
  #hero-2153 .cs-container {
    max-width: 107.5rem;
  }
  #hero-2153 .cs-image-group {
    width: 100%;
    height: max(26rem, 30vw);
  }
  #hero-2153 .cs-text {
    max-width: 35rem;
  }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-942 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #services-942 .cs-container {
    width: 100%;
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-942 .cs-content {
    text-align: center;
    width: 100%;
    max-width: 50rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #services-942 .cs-title,
  #services-942 .cs-text {
    max-width: 100%;
  }
  #services-942 .cs-card-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: clamp(1rem, 2vw, 1.25rem);
  }
  #services-942 .cs-item {
    width: 100%;
    text-align: center;
    list-style: none;
    margin: 2.75rem 0 0 0;
    padding: 0 clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 6vw, 4rem);
    background: linear-gradient(
      to top right,
      var(--secondary) 20%,
      var(--primary) 70%
    );
    color: var(--bodyTextColorWhite);
    box-sizing: border-box;
    grid-column: span 12;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 18rem;
    position: relative;
    z-index: 1;
    border: 1px solid #fff;
    border-radius: 1.5rem;
    transition: transform 0.25s ease;
  }
  #services-942 .cs-item:hover {
    transform: translateY(-6px);
  }
  #services-942 .cs-icon {
    width: 2.5rem;
    height: auto;
  }
  #services-942 .cs-h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: bold;
    margin: 0 0 0.75rem 0;
    color: var(--bodyTextColorWhite);
  }
  #services-942 .cs-item-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    max-width: 18.75rem;
    margin: 0;
    padding: 0;
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #services-942 .cs-background {
    width: 100%;
    height: 100%;
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: opacity 0.3s;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-942 .cs-container {
    max-width: 80rem;
  }
  #services-942 .cs-item {
    grid-column: span 4;
  }
}

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-697 {
    padding: var(--sectionPadding);
    background: linear-gradient(
      to top right,
      var(--secondary) 20%,
      var(--primary) 70%
    );
    position: relative;
    z-index: 1;
  }
  #cta-697 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-697 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #cta-697 .cs-text-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
  }
  #cta-697 .cs-title {
    color: var(--bodyTextColorWhite);
    margin: 0;
  }
  #cta-697 .cs-text {
    margin: 0;
    max-width: 52ch;
    line-height: 1.6;
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
  #cta-697 .cs-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  #cta-697 .cs-button-solid {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.25rem;
    padding: 0 2rem;
    border: 1px solid transparent;
    box-sizing: border-box;
    border-radius: 1.875rem;
    background: var(--bodyTextColorWhite);
    color: var(--secondary);
    text-decoration: none;
    display: inline-block;
  }
  #cta-697 .cs-button-outline {
    font-size: 1rem;
    font-weight: 700;
    line-height: 3.25rem;
    padding: 0 2rem;
    border-radius: 1.875rem;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--bodyTextColorWhite);
    text-decoration: none;
    display: inline-block;
  }
  #cta-697 .cs-button-solid,
  #cta-697 .cs-button-outline {
    transition: background-color 0.25s, color 0.25s, border-color 0.25s;
    line-height: 3rem;
    padding: 0 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
  }
  #cta-697 .cs-button-solid:hover,
  #cta-697 .cs-button-outline:hover {
    background-color: var(--accentcolor);
    border-color: var(--accentcolor);
    color: var(--bodyTextColor);
  }
  #cta-697 .cs-wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    width: 100%;
    height: auto;
    opacity: 0.35;
    pointer-events: none;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 65rem) {
  #cta-697 .cs-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    gap: 2rem;
  }
  #cta-697 .cs-text-group {
    flex: 1;
    max-width: 60ch;
    align-items: flex-start;
  }
  #cta-697 .cs-actions {
    flex-shrink: 0;
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
  }
  #cta-697 .cs-button-solid,
  #cta-697 .cs-button-outline {
    font-size: 1rem;
    line-height: 3.75rem;
    padding: 0 2.25rem;
    font-weight: 700;
  }
}                      