/* .layer--ways-to-help */

.ways {
    display: flex;
    flex-direction: column;
}
@media screen and (max-width: 900px) {
    .ways {
        gap: 20px;
    } 
    .way {
        gap: 15px !important;
    }
} 
.way {
    align-items: center;
}
.way .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    
    min-height: 360px;
    position: relative;
    padding: 30px;
    overflow: hidden;
}
.way .card h2,
.way .card p  {
    position: relative;
}
.way .card:before {
    content: '';
    background-image: url('img/a-overlay.svg') !important;
    background-repeat: no-repeat;
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 30px;
    width: 372px;
    height: 361px;
    opacity: 0.15;
    mix-blend-mode: overlay;
}

.number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: scandia-stencil;
}
.way h3 {
    padding-right: 20%;
}

