.section-how-works .section-heading {
    margin-bottom: 50px;
}

.section-how-works .section-heading .title {
    font-size: 58px;
}

.section-how-works__wrapper {
    position: relative;
}

.section-how-works__wrapper:before {
    content: "";
    width: 140px;
    height: 220px;
    background: url(../../images/waves/wave_03.svg);
    position: absolute;
    left: -175px;
    top: 40px;
}

.section-how-works__items {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: stretch;
}

.section-how-works__item-panel {
    max-width: 385px;
    margin: 0 auto;
}

.section-how-works__item-panel p:first-of-type {
    margin-top: 0;
}

.section-how-works__item-panel__featured {
    text-align: center;
    margin-bottom: 30px;
}

.section-how-works__item-panel__header {
    border-radius: 6px 6px 0 0;
    background: #D2DCE6;
    padding: 15px 15px;
    text-align: center;
    line-height: 1;

}

.section-how-works__item-panel__header h3 {
    color: #4D4948;
    font-size: 26px;
    font-weight: 600;
}

.section-how-works__item-panel__content {
    font-size: 22px;
    font-weight: 300;
    background: #fff;
    height: 100%;
    padding: 15px 20px;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}

.section-how-works__item-panel__content ul {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.section-how-works__item-panel__content ul li {
    position: relative;
    padding-left: 20px;
}

.section-how-works__item-panel__content ul li:before {
    content: "";
    width: 10px;
    height: 10px;
    background: #AD3275;
    position: absolute;
    top: 7px;
    left: 0;
    border-radius: 50%;
}

@media (max-width: 1367px) {
    .section-how-works__item-panel__header h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .section-how-works__items {
        flex-direction: column;
        justify-content: center;
    }

    .section-how-works__item {
        padding-top: 20px;
        padding-bottom:20px;
    }
}

@media (max-width: 567px) {
    .section-how-works .section-heading {
        margin-bottom: 20px;
    }

    .section-how-works .section-heading .title {
        font-size: 32px;
    }
}