.steps {
    background: transparent;
    padding: 80px 0px;
}
.steps.dark {
    background: #262626;
}

/* DARK MODE TEXT */
.steps.dark .steps__title,
.steps.dark .steps__content,
.steps.dark .rsg-heading-text-title,
.steps.dark .body,
.steps.dark .steps__footer p {
    color: #ffffff;
}
.steps.dark .steps__item {
    border-bottom: 1px solid #fff;
}

.steps.dark .eyebrow {
    color: #1FFFC3;
}

.steps__container {
    max-width: 1160px;
    margin: 0 auto;
}

.steps__header {
    text-align: center;
    margin-bottom: 20px;
}

.steps__eyebrow {
    display: inline-block;
    color: #a8663b;
    font-family: "JetBrains Mono", monospace;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 0.04em;
    margin-bottom: 18px;
}

.steps__title {
    margin: 0;
    color: #262626;
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
}

.steps__list {
    margin-top: 20px;
}

.steps__item{
    display: grid;
    align-items: center;
    gap: 35px;
    padding: 38px 10px;
    border-bottom: 1px solid #262626;
}

.steps__item.has-label{
    grid-template-columns: 190px 1fr;
}

.steps__item.no-label{
    grid-template-columns: 1fr;
}

.steps__label {
    position: relative;
}

.steps__number {
    position: relative;
    color: #1FFFC3;
    font-size: 102px;
    line-height: 77px;
    font-weight: 900;
    z-index: 1;
}

.steps__heading {    
    position: relative;
    z-index: 2;
    margin: -27px 0 0;
    color: #262626;
    font-size: 32px;
    line-height: 1.05;
    font-weight: 600;
}

.steps__content {
    color: #262626;
    font-size: 20px;
    line-height: 1.28;
}

.steps__content p {
    margin-bottom: 16px;
}

.steps__content p{
    font-size: 20px;
    line-height: 1.28;
}

.steps__content p:last-child {
    margin-bottom:0;
}

.steps__content-heading {
    cursor: default;
}

.steps__accordion .steps__accordion-heading {
    cursor: pointer;
}

.steps__footer {
    text-align: center;
    margin-top: 34px;
}

.steps__footer p {
    color: #262626;
    font-size: 20px;
    margin: 0 0 28px;
}

.steps__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #70f0c2;
    color: #262626;
    min-height: 46px;
    padding: 13px 34px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    transition: 0.3s ease;
}

.steps__button:hover {
    background: #1fffc3;
    color: #262626;
}

@media (max-width: 991px) {
    .steps__title {
        font-size: 34px;
    }

    .steps__item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .steps__content {
        font-size: 18px;
    }
    .steps__accordion-content {
    font-size: 18px;
    }
}



.steps__item.is-accordion .steps__accordion-heading {
    margin: 0 0 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #262626;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}

.steps__accordion-title {
    display: inline-block;
}

.steps__accordion-icon {
    flex: 0 0 auto;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
}

.steps__accordion-content {
    display: none;
    margin-top: 16px;
    color: #262626;
    font-size: 18px;
    line-height: 1.28;
}

.steps__accordion.is-open .steps__accordion-content {
    display: block;
}

.steps__accordion.is-open .steps__accordion-icon {
    font-size: 0;
}
.steps__item.is-accordion .steps__accordion-icon {
    display: block;
}

.steps__accordion.is-open .steps__accordion-icon::before {
    content: "-";
    font-size: 34px;
    line-height: 1;
}
.steps__accordion-icon {
    display: none;
}

.steps__item .accordion-button{
    color: #955f3a;
    text-transform: capitalize;
}

@media only screen and (max-width:991px) {
.steps__item {
    grid-auto-flow: row;
    grid-template-columns: 1fr !important;
        padding: 15px 0;
}
	.steps__number {
    font-size: 70px;
        margin-bottom: -47px;
        z-index: 0;
}
}

@media (max-width: 767px) {
    .free-guide__image {
        display: none;
    }
  .steps__label::after {
    display: none !important;
  }

  .steps__content-heading {
    position: relative;
    cursor: pointer;
    padding-right: 35px;
  }

  .steps__item.is-accordion .steps__content-heading::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: #70f0c2;
    font-size: 34px;
    line-height: 1;
    font-weight: 700;
  }

 /* .steps__item.is-open .steps__content-heading::after {
    content: "−";
  }*/

  .steps__content {
    display: block !important;
  }

  .steps__content-body {
    display: none;
  }

  .steps__item.is-open .steps__content-body {
    display: block;
  }
  
  .steps__content p {
        font-size: 16px;
        line-height: 1.28;
    }
  
}