/* infographic */
@media only screen and (min-width: 0rem) {
  #infographic{
    padding-top: 5rem;
    background-color: var(--backgroundOne);
    position: relative;
    z-index: 1;
    padding-bottom: 5rem;
  }
  #infographic:before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    width: 100%;
    background: url("/assets/svgs/chevron-pattern-light3.svg");
    background-position: center;
    background-size: auto;
    background-repeat: repeat;
    opacity: 0.3;
    top: 0;
    left: 0;
    z-index: -1;
}
  #infographic .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* 16px - 40px */
    padding: 0 clamp(1rem, 3.8vw, 2.5rem);
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
    gap: 1rem;
  }

  #infographic .cs-title {
    max-width: 12ch;
  }
  
  #infographic .container {
    box-sizing: content-box;
    padding: 0 12px;
    max-width: 100%;
    margin-top: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #infographic .step-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 90vw;
  }

  #infographic .step-list__item {
    counter-increment: step-counter;
    position: relative;
  }

  #infographic .step-list__item:before {
    content: counter(step-counter);
    font-weight: 300;
    color: #d8d8d8;
  }

  #infographic .step-list__item h2 {
    font-size: 1.7rem;
    line-height: 2.5rem;
    font-weight: 700;
    border-radius: 20px;
    width: 100%;
    word-break: break-word;
    display: inline-block;
    max-width: 15ch;
    text-align: center;
  }

  #infographic .step-list__item .icon {
    border-radius: 50%;
    display: block;
    flex: 0 0 auto;
  }

  #infographic .step-list__item .icon img {
    width: 100%;
    height: 100%;
  }

  #infographic .step-list__item:nth-child(even) .icon:hover{
    opacity: 0.8;
    background: var(--primaryLight);
  }
  #infographic .step-list__item:nth-child(odd) .icon:hover{
    opacity: 0.8;
    background: var(--primary);
  }

  #infographic .step-list__item .body {
    font-size: 12px;
    line-height: 18px;
    font-weight: 300;
  }
  
  #infographic .step-list__item .content {
    display: flex;
    flex-direction: row;
    padding-bottom: 18px;
  }

  #infographic .content path {
    stroke-width: 0.1;
  }

  #infographic .step-list__item:nth-child(odd) .icon {
    background: var(--primaryLight);
  }

  #infographic .step-list__item:nth-child(even) .icon {
    background: var(--primary);
  }

  #infographic .step-list__item:nth-child(odd) .content {
    justify-content: flex-start;
  }

  #infographic .step-list__item:nth-child(even) .content {
    justify-content: flex-end;
  }

  #infographic .step-list__item:first-child>.step-list__item__inner:before {
    content: none;
  }

  #infographic .step-list__item:last-child>.step-list__item__inner:after {
    content: none;
  }

  #infographic .step-list__item+li {
    margin-top: 84px;
  }

  #infographic .step-list__item+li>div {
    margin-top: -1px;
  }
  #infographic .button {
    position: relative;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    padding: 0.5rem;
  }
  #infographic .button.type1 {
    color: var(--headerColor);
  }
  #infographic .button.type1.type1::after,
  #infographic .button.type1.type1::before {
    content: "";
    display: block;
    position: absolute;
    width: 40%;
    height: 40%;
    border: 2px solid;
    transition: all 0.6s ease;
    border-radius: 3px;
  }
  #infographic .button.type1.type1::after {
    bottom: 0;
    right: 0;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: var(--primary);
    border-right-color: var(--primary);
  }
  #infographic .button.type1.type1::before {
    top: 0;
    left: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: var(--primary);
    border-left-color: var(--primary);
  }
  #infographic .button.type1.type1:hover:after,
  #infographic .button.type1.type1:hover:before {
    width: 100%;
    height: 100%;
  }
  #infographic .button.type1.type1::before,
  #infographic .button.type1.type1:after{
    margin: 0.3rem;
  }
  #infographic .button.type1.type1:hover{
    background: var(--backgroundOne);
  }
  
}
/* Dark mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #infographic .button.type1.type1:hover{
    background: var(--medium);
  }
  body.dark-mode #infographic{
    background-color: var(--medium);
  }
}

@media screen and (max-width: 600px) {
  #infographic .step-list__item {
    display: flex;
  }

  #infographic .step-list__item:before {
    position: relative;
    font-size: 36px;
    line-height: 42px;
    font-weight: 300;
    color: #000000;
    margin-right: 12px;
  }

  #infographic .step-list__item .icon {
    order: 0;
    width: 36px;
    height: 36px;
    padding: 9px;
    position: absolute;
    left: -9px;
    top: 42px;
  }

  #infographic .step-list__item .body {
    order: 1;
    margin-top: 8px;
    margin-left: 12px;
    width: calc(80vw - 1rem);
    display: flex;
    text-decoration: none;
    align-items: center;
    justify-content: center;
  }

  #infographic .step-list__item .content {
    align-items: flex-start;
  }

  #infographic .step-list__item .content:before {
    content: '';
    position: absolute;
    border-left: #d8d8d8;
    height: 100%;
    left: 9px;
    bottom: 0;
    display: block;
    width: 1px;
    background: #d8d8d8;
    top: 84px;
  }

  #infographic .step-list__item:last-child .content:before {
    content: none;
  }
}

@media screen and (min-width: 601px) {
  #infographic .step-list__item:before {
    content: counter(step-counter);
    position: absolute;
    font-size: 90px;
    line-height: 1;
    font-weight: 300;
    color: #d8d8d8;
  }

  #infographic .step-list__item .icon {
    width: 174px;
    height: 174px;
    padding: 48px;
  }

  #infographic .step-list__item .body {
    flex: 0 1 33.3333%;
    margin-top: 84px;
    text-align: center;
  }

  #infographic .step-list__item .content {
    align-items: flex-end;
  }

  #infographic .step-list__item>.step-list__item__inner {
    position: relative;
  }

  #infographic .step-list__item>.step-list__item__inner:before,
  #infographic .step-list__item>.step-list__item__inner:after {
    border: 0px solid var(--primary);
    display: block;
    content: '';
    position: absolute;
    height: 2.64rem;
    width: calc(33.3333% - 2.64rem);
  }

  #infographic .step-list__item:nth-child(odd)>.step-list__item__inner {
    text-align: right;
  }

  #infographic .step-list__item:nth-child(odd)>.step-list__item__inner:before,
  .step-list__item:nth-child(odd)>.step-list__item__inner:after {
    border-left-width: 1px;
    left: calc(33.3333% - 21px);
  }

  #infographic .step-list__item:nth-child(odd)>.step-list__item__inner:before {
    border-top-width: 1px;
    border-top-left-radius: 42px;
    margin-top: -42px;
  }

  #infographic .step-list__item:nth-child(odd)>.step-list__item__inner:after {
    border-bottom-width: 1px;
    border-bottom-left-radius: 42px;
    margin-bottom: -42px;
  }

  #infographic .step-list__item:nth-child(odd):before {
    left: 0;
    margin-left: 33.3333%;
    transform: translateX(-100%);
  }

  #infographic .step-list__item:nth-child(odd) .icon {
    margin-left: 72px;
  }

  #infographic .step-list__item:nth-child(even)>.step-list__item__inner:before,
  .step-list__item:nth-child(even)>.step-list__item__inner:after {
    border-right-width: 1px;
    right: calc(33.3333% - 21px);
  }

  #infographic .step-list__item:nth-child(even)>.step-list__item__inner:before {
    border-top-width: 1px;
    border-top-right-radius: 42px;
    margin-top: -42px;
  }

  #infographic .step-list__item:nth-child(even)>.step-list__item__inner:after {
    border-bottom-width: 1px;
    border-bottom-right-radius: 42px;
    margin-bottom: -42px;
  }

  #infographic .step-list__item:nth-child(even):before {
    right: 0;
    margin-right: 33.3333%;
    transform: translateX(100%);
  }

  #infographic .step-list__item:nth-child(even) .icon {
    margin-right: 72px;
  }

  #infographic .step-list__item:nth-child(even) .body {
    order: 1;
  }
}

@media screen and (min-width: 48rem){
  #infographic .step-list__item:before {
    margin: 0.2rem 0 0 0;
  }
  #infographic .step-list {
    width: 75vw;
  }
}

@media only screen and (min-width: 64rem) {
  #infographic .step-list__item:before {
    margin: -0.3rem 0 0 0;
  }
  #infographic .step-list {
    width: 60vw;
  }
  #infographic .step-list__item .body {
    text-align: center;
  }
  #infographic .step-list__item h2{
    margin-top: 0.3rem;
  }
}
@media only screen and (min-width: 81.25rem){
  #infographic .step-list__item .content {
    gap: 2.2rem;
  }
  #infographic .step-list {
    width: 50vw;
  }
}

/*-- -------------------------- -->
<---     Side By Side    sbs    -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0em) {
  #sbs {
    padding: var(--sectionPadding);
    margin-bottom: 5rem;
  }

  #sbs .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2.5rem;
  }

  #sbs .cs-left {
    /* scaling the font size with the view width */
    font-size: min(2.31vw, 0.7em);
    /* using ems so we can use font size to scale the whole section */
    width: 39.4375em;
    height: 39.75em;
    position: relative;
  }

  #sbs .cs-picture {
    border-radius: 1.5em;
    display: block;
    position: absolute;
    /* clips img tag corners */
    overflow: hidden;
  }

  #sbs .cs-picture img {
    width: 100%;
    height: 100%;
    /* makes image act like a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  #sbs .cs-picture1 {
    width: 32.625em;
    height: 36.3125em;
    top: 0;
    left: 0;
  }

  #sbs .cs-picture2 {
    width: 37em;
    height: 20em;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
    /* 6px - 12px */
    border: clamp(0.375em, 1.5vw, 0.75em) solid #fff;
    bottom: -5.25em;
    right: -1em;
  }
  #sbs .cs-picture2:hover {
    transform: scale(1.1);
  }
  #sbs .cs-right {
    max-width: 33.875rem;
    margin: 3rem auto auto auto;
  }

  #sbs .cs-topper {
    text-align: left;
    margin-bottom: 0.25rem;
  }

  #sbs .cs-title {
    text-align: left;
    max-width: 50rem;
  }

  #sbs .cs-text {
    text-align: left;
    max-width: 85vw;
    margin-bottom: 1rem;
  }

  #sbs .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #sbs .cs-flex-group {
    /* 16px - 32px */
    padding: clamp(1rem, 3vw, 2rem);
    background-color: #f7f7f7;
    border-radius: 1rem;
    position: relative;
  }

  #sbs .cs-flex-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0 0 1rem;
    color: #353535;
  }

  #sbs .cs-name {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2em;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
    color: var(--headerColor);
    display: block;
  }

  #sbs .cs-job {
    font-size: 0.875rem;
    line-height: 1.5em;
    color: #353535;
    display: block;
  }

  #sbs .cs-quote-icon {
    /* 60px - 136px */
    width: clamp(3.75rem, 10vw, 8.5rem);
    height: auto;
    position: absolute;
    /* 16px - 32px */
    right: clamp(1rem, 4vw, 2rem);
    bottom: 0rem;
  }

  #sbs-r .cs-button-solid {
    margin-top: 2rem;
    display: block;
    margin: auto;
    width: 18ch;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64em) {
  #sbs .cs-container {
    flex-flow: row;
    justify-content: space-between;
    gap: 3.25rem;
  }

  #sbs .cs-left {
    font-size: min(1.2vw, 1em);
    flex: none;
  }

  #sbs .cs-right {
    margin: 0;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0em) {

  body.dark-mode #sbs{
    background:var(--secondaryLight);
  }
  body.dark-mode #sbs .cs-left:before,
  body.dark-mode #sbs .cs-left:after {
    background: var(--accent);
  }

  body.dark-mode #sbs .cs-picture2 {
    background-color: var(--dark);
    /* 6px - 12px */
    border: clamp(0.375em, 1.5vw, 0.75em) solid var(--primary);
  }

  body.dark-mode #sbs .cs-topper {
    color: var(--primaryLight);
  }

  body.dark-mode #sbs .cs-title,
  body.dark-mode #sbs .cs-text,
  body.dark-mode #sbs .cs-h3,
  body.dark-mode #sbs .cs-flex-p,
  body.dark-mode #sbs .cs-name {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #sbs .cs-flex-group {
    background-color: var(--accent);
  }

  body.dark-mode #sbs .cs-job {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }

  body.dark-mode #sbs .cs-quote-icon {
    opacity: 0.2;
  }
}

/*-- -------------------------- -->
<---     Side By Side   sbs-r   -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0em) {
  #sbs-r {
    padding: var(--sectionPadding);
    background: var(--backgroundOne);
    padding-bottom: 9rem;
  }

  #sbs-r .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 2.5rem;
  }

  #sbs-r .cs-left {
    /* scaling the font size with the view width */
    font-size: min(2.31vw, 0.7em);
    /* using ems so we can use font size to scale the whole section */
    width: 39.4375em;
    height: 39.75em;
    position: relative;
  }

  #sbs-r .cs-picture {
    border-radius: 1.5em;
    display: block;
    position: absolute;
    /* clips img tag corners */
    overflow: hidden;
  }

  #sbs-r .cs-picture img {
    width: 100%;
    height: 100%;
    /* makes image act like a background image */
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }

  #sbs-r .cs-picture1 {
    width: 32.625em;
    height: 36.3125em;
    top: 0;
    right: 0;
  }

  #sbs-r .cs-picture2 {
    width: 37em;
    height: 20em;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
    /* 6px - 12px */
    border: clamp(0.375em, 1.5vw, 0.75em) solid #fff;
    bottom: -2.5em;
    left: -1em;
  }
  #sbs-r .cs-picture2:hover {
    transform: scale(1.1);
  }
  #sbs-r .cs-right {
    max-width: 33.875rem;
    margin: 3rem auto auto auto;
  }

  #sbs-r .cs-topper {
    text-align: left;
    margin-bottom: 0.25rem;
  }

  #sbs-r .cs-title {
    text-align: left;
    max-width: 50rem;
  }

  #sbs-r .cs-text {
    text-align: left;
    max-width: 85vw;
    margin-bottom: 1rem;
  }

  #sbs-r .cs-text:last-of-type {
    margin-bottom: 2rem;
  }

  #sbs-r .cs-flex-group {
    /* 16px - 32px */
    padding: clamp(1rem, 3vw, 2rem);
    background-color: #f7f7f7;
    border-radius: 1rem;
    position: relative;
  }

  #sbs-r .cs-flex-p {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    margin: 0 0 1rem;
    color: #353535;
  }

  #sbs-r .cs-name {
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.2em;
    text-transform: uppercase;
    margin: 0 0 0.25rem;
    color: var(--headerColor);
    display: block;
  }

  #sbs-r .cs-job {
    font-size: 0.875rem;
    line-height: 1.5em;
    color: #353535;
    display: block;
  }

  #sbs-r .cs-quote-icon {
    /* 60px - 136px */
    width: clamp(3.75rem, 10vw, 8.5rem);
    height: auto;
    position: absolute;
    /* 16px - 32px */
    right: clamp(1rem, 4vw, 2rem);
    bottom: 0rem;
  }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64em) {
  #sbs-r .cs-container {
    flex-flow: row;
    justify-content: space-between;
    gap: 3.25rem;
  }

  #sbs-r .cs-left {
    font-size: min(1.2vw, 1em);
    /* sends it to the right */
    order: 2;
    flex: none;
  }

  #sbs-r .cs-right {
    margin: 0;
  }
}

/* Dark Mode */
@media only screen and (min-width: 0em) {
  body.dark-mode #sbs-r{
    background-color: var(--medium);
  }
  body.dark-mode #sbs-r .cs-left:before,
  body.dark-mode #sbs-r .cs-left:after {
    background: var(--accent);
  }

  body.dark-mode #sbs-r .cs-picture2 {
    background-color: var(--dark);
    /* 6px - 12px */
    border: clamp(0.375em, 1.5vw, 0.75em) solid var(--primary);
  }

  body.dark-mode #sbs-r .cs-topper {
    color: var(--primaryLight);
  }

  body.dark-mode #sbs-r .cs-title,
  body.dark-mode #sbs-r .cs-text,
  body.dark-mode #sbs-r .cs-h3,
  body.dark-mode #sbs-r .cs-flex-p,
  body.dark-mode #sbs-r .cs-name {
    color: var(--bodyTextColorWhite);
  }

  body.dark-mode #sbs-r .cs-flex-group {
    background-color: var(--accent);
  }

  body.dark-mode #sbs-r .cs-job {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }

  body.dark-mode #sbs-r .cs-quote-icon {
    opacity: 0.2;
  }
}

/*-- -------------------------- -->
<---  Side By Side  sbs + sbs-r -->
<--- -------------------------- -*/
@media only screen and (min-width: 48em){
  #sbs .cs-text,
  #sbs-r .cs-text{
    max-width: 50ch;
  }
}
@media only screen and (min-width: 64em){
  #sbs .cs-text,
  #sbs-r .cs-text{
    max-width: 45ch;
  }
}
@media only screen and (min-width: 81.25em){
  #sbs .cs-text,
  #sbs-r .cs-text{
    max-width: 55ch;
  }
}

/*-- -------------------------- -->
<---        Projekti demo       -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-448 {
    padding: var(--sectionPadding);
  }
  #services-448 .cs-container {
      width: 100%;
      /* changes at 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-448 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: center;
      width: 100%;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: center;
  }

  #services-448 .cs-card-group {
      width: 100%;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      /* 16px - 20px */
      column-gap: clamp(1rem, 1.5vw, 1.25rem);
      /* 24px - 60px */
      row-gap: clamp(1.5rem, 5vw, 3.75rem);
  }
  #services-448 .cs-item {
      list-style: none;
      width: 100%;
      max-width: 22.5rem;
      /* changes at desktop */
      padding-top: 9rem;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
  }
  #services-448 .cs-item:hover .cs-picture img {
      transform: scale(1.2);
      opacity: 0.4;
  }
  #services-448 .cs-item:hover .cs-flex:before {
      opacity: 1;
  }
  #services-448 .cs-picture {
      width: 100%;
      /* changes at desktop */
      height: 15.625rem;
      border-radius: 0.5rem;
      background-color: var(--primary);
      /* clips the corners of the image */
      overflow: hidden;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
  }
  #services-448 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* makes it behave like a background image */
      object-fit: cover;
      /* positions top of image to the top of the container */
      object-position: top;
      transition:
          transform 0.9s,
          opacity 0.5s;
  }
  #services-448 .cs-picture2{
    zoom: 125%;
  }
  #services-448 .cs-picture2 img{
    top:-0.5rem;
  }
  #services-448 .cs-flex {
      text-align: center;
      width: 88%;
      padding: 0 1.5rem 1.5rem 1.5rem;
      /* prevents padding and border from affecting height and width */
      box-sizing: border-box;
      border: 1px solid #dad9e3;
      border-radius: 0.75rem;
      background-color: #fff;
      box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      position: relative;
      bottom: -2rem;
  }
  #services-448 .cs-flex:before {
      /* hover border box */
      content: "";
      background: transparent;
      /* prevents the mouse from interacting with it */
      pointer-events: none;
      border: 4px solid var(--primary);
      border-radius: 0.75rem;
      /* prevents border from affecting height and width */
      box-sizing: border-box;
      opacity: 0;
      position: absolute;
      display: block;
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      transition: opacity 0.5s;
  }
  #services-448 .cs-flex2 {
    bottom: -3rem;
  }
  #services-448 .cs-wrapper {
      /* 80px - 120px */
      width: clamp(5rem, 9.2vw, 7.5rem);
      height: clamp(5rem, 9.2vw, 7.5rem);
      /* 20px - 24px */
      margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
      /* we use the same clamp value for height & width, but multiple by -.5 so it will be a negative value, and be half of the height.  Negative margins pull things toward the element so they overlap them, in this case we want the .cs-wrapper to overlap .cs-flex by half its height, so we use the same clamp for height and half it for the margin top value */
      margin-top: calc(clamp(5rem, 9.2vw, 7.5rem) * -0.5);
      border-radius: 50%;
      border: 4px solid var(--primary);
      background-color: #fff;
      /* prevents border from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 10;
  }
  #services-448 .cs-icon {
      /* 48px - 64px */
      width: clamp(3rem, 4.3vw, 4rem);
      height: auto;
      display: block;
  }
  #services-448 .cs-h3 {
      /* 20px - 25px */
      font-size: clamp(1.25rem, 1.9vw, 1.5625rem);
      line-height: 1.2em;
      font-weight: 700;
      margin: 0 0 0.5rem 0;
      color: var(--headerColor);
  }
  #services-448 .cs-item-text {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      font-weight: 400;
      /* 20px - 24px */
      margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
      color: var(--bodyTextColor);
  }
  #services-448 .cs-link {
      /* 16px - 20px */
      font-size: clamp(1rem, 1.5vw, 1.25rem);
      line-height: 1.5em;
      font-weight: 700;
      text-transform: uppercase;
      text-decoration: none;
      margin: 0;
      color: var(--primary);
      display: inline-block;
      position: relative;
  }
  #services-448 .cs-link:hover:before {
      width: 100%;
  }
  #services-448 .cs-link:before {
      /* animated underline */
      content: "";
      width: 0%;
      height: 3px;
      background: currentColor;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: -0.125rem;
      left: 0;
      transition: width 0.3s;
  }
  #services-448 .cs-wrapper{
    width: 50%;  
    height: 50%; 
    border-radius: 60%; 
    overflow: hidden;   
    display: flex;      
    align-items: center;
    justify-content: center;
  }
  #services-448 .cs-wrapper img{
    width: 100%;
    height: 100%;
    transform: scale(1.3);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-448 .cs-container {
      max-width: 80rem;
  }
  #services-448 .cs-card-group {
      flex-direction: row;
  }
  #services-448 .cs-item {
      width: 47%;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-448 .cs-card-group {
      flex-wrap: nowrap;
  }
  #services-448 .cs-item {
      width: 100%;
      /* 144px - 274px */
      padding-top: clamp(9rem, 17.5vw, 17.125rem);
  }
  #services-448 .cs-picture {
      /* 224px - 428px */
      height: clamp(14rem, 28vw, 26.75rem);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #services-448 .cs-topper {
      color: var(--primaryLight);
  }
  body.dark-mode #services-448 .cs-title {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #services-448 .cs-text {
      color: var(--bodyTextColorWhite);
      opacity: 0.8;
  }
  body.dark-mode #services-448 .cs-flex,
  body.dark-mode #services-448 .cs-wrapper {
      background-color: var(--medium);
  }
  body.dark-mode #services-448 .cs-icon {
      filter: grayscale(1) brightness(2000%);
  }
  body.dark-mode #services-448 .cs-h3,
  body.dark-mode #services-448 .cs-item-text {
      color: var(--bodyTextColorWhite);
  }
  body.dark-mode #services-448 .cs-link {
      color: var(--primaryLight);
  }
}

                              


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