/*-- -------------------------- -->
<---            Steps           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #steps-277 {
    padding: var(--sectionPadding);
  }

  #steps-277 .cs-container {
    width: 100%;
    max-width: var(--containerMobileMax);
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--headerGap);
  }

  #steps-277 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #steps-277 .cs-title {
    max-width: 20ch;
  }

  #steps-277 .cs-card-group {
    max-width: 25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
  }

  #steps-277 .cs-card-group:before {
    content: "";
    width: 1px;
    background: var(--headerColor);
    opacity: 0.2;
    position: absolute;
    display: block;
    top: 1rem;
    bottom: 6rem;
    left: 3.5rem;
  }

  #steps-277 .cs-item {
    text-align: left;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #steps-277 .cs-number {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    margin-right: 2.75rem;
    width: clamp(2.5rem, 5.1vw, 3.25rem);
    height: clamp(2.5rem, 5.1vw, 3.25rem);
    border-radius: 50%;
    color: var(--bodyTextColorWhite);
    background-color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    flex: none;
    position: relative;
  }

  #steps-277 .cs-number:before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    background: var(--headerColor);
    border-radius: 50%;
    position: absolute;
    display: block;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
  }

  #steps-277 .cs-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2em;
    margin-bottom: 0.5rem;
  }

  #steps-277 .cs-item-text {
    font-size: clamp(0.875rem, 2vw, 1rem);
  }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #steps-277 .cs-container {
    max-width: var(--containerMaxWidth);
  }

  #steps-277 .cs-card-group {
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 2em;
  }

  #steps-277 .cs-card-group:before {
    width: auto;
    height: 1px;
    top: clamp(3.75rem, 7.5vw, 4.75rem);
    left: 6.875rem;
    right: 6.875rem;
  }

  #steps-277 .cs-item {
    text-align: center;
    width: 13.625rem;
    flex-direction: column;
    align-items: center;
  }

  #steps-277 .cs-number {
    margin: 0 0 clamp(2.5rem, 6vw, 3.75rem) 0;
  }

  #steps-277 .cs-number:before {
    top: auto;
    left: 50%;
    bottom: calc(clamp(1.5rem, 2.9vw, 1.75rem) * -1);
    transform: translateX(-50%);
  }
}