.stepper-accordion-wrapper {
    position: relative;
}

.stepper-accordion-wrapper__title {
    text-align: center;
    margin-bottom: 40px;
}

.stepper-accordion-wrapper__stepper__single-row {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
}

.stepper-accordion-wrapper__stepper__single-row:nth-child(even) .stepper-accordion-wrapper__stepper__single-row__image {
    order: 2;
}

.stepper-accordion-wrapper__stepper__single-row:nth-child(even) .stepper-accordion-wrapper__stepper__single-row__content {
    order: 1;
}

.stepper-accordion-wrapper__stepper__single-row__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.stepper-accordion-wrapper__stepper__single-row__content__row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.stepper-accordion-wrapper__stepper__single-row__content span {
    display: block;
}

.stepper-accordion-wrapper__stepper__single-row__content__number {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 40px;
    font-weight: 700;
}

.stepper-accordion-wrapper__stepper__single-row__content__content__title {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 20px;
}

.stepper-accordion-wrapper__graphic-element__one,
.stepper-accordion-wrapper__graphic-element__two {
    position: absolute;
    z-index: 2;
    opacity: 0.8;
}

.stepper-accordion-wrapper__graphic-element__one {
    left: -10px;
    width: 70px;
    bottom: 20%;
}

.stepper-accordion-wrapper__graphic-element__two {
    left: 93%;
    top: 25%;
    width: 60px;
}

.stepper-accordion-wrapper__accordion .card {
    background: transparent;
    border: none;
    /* padding: 0 18px; */
}

.stepper-accordion-wrapper__accordion .card:last-child {
    /* padding-bottom: 32px; */
}

.stepper-accordion-wrapper__accordion .card-header {
    background: transparent;
    border: none;
    padding-top: 32px;
}

.stepper-accordion-wrapper__accordion .card-header h2 button {
    font-weight: bold !important;
    font-size: 24px !important;
    line-height: 30px !important;
    font-family: "Open Sans", sans-serif !important;
    display: flex !important;
    min-height: 62px !important;
    align-items: center !important;
    padding: 0 !important;
    position: relative !important;
}

.stepper-accordion-wrapper__accordion .card:not(:last-child) .card-header h2 button {
    border-bottom: 1px solid #333;
    border-radius: 0 !important;
}

.stepper-accordion-wrapper__accordion .card-header h2 button:active,
.stepper-accordion-wrapper__accordion .card-header h2 button:hover,
.stepper-accordion-wrapper__accordion .card-header h2 button:focus {
    outline: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.stepper-accordion-wrapper__accordion .card-header h2 button .accordion-title {
    line-height: 20px;
    font-size: 18px;
    width: 75%;
    margin-bottom: 5px;
}

.stepper-accordion-wrapper__accordion .card-header h2 button .accordion-number {
    font-family: 'Playfair Display', serif;
    font-size: 70px;
    margin-bottom: 30px;
    margin-right: 20px;
}

.stepper-accordion-wrapper__accordion .card-header h2 button::after {
    width: 14px;
    height: 14px;
    content: "";
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

.stepper-accordion-wrapper__accordion .card-header h2 button.collapsed::after {
    transform: translateY(-50%) rotate(135deg);
}

@media screen and (min-width: 768px) {
    .stepper-accordion-wrapper__graphic-element__one,
    .stepper-accordion-wrapper__graphic-element__two {
        opacity: 1;
    }
    .stepper-accordion-wrapper__graphic-element__one {
        left: 48%;
        width: 130px;
        top: 50%;
    }
    .stepper-accordion-wrapper {
        margin-bottom: 40px;
    }
    .stepper-accordion-wrapper__stepper__single-row {
        display: grid;
    }
    .stepper-accordion-wrapper__accordion {
        display: none;
    }
    .stepper-accordion-wrapper__graphic-element__two {
        left: 50%;
        top: 25%;
        width: 100px;
    }
}