.howitwork {
    width: 100%;
    height: 100%;
    background-color: #E5EAEB;
}

.howitwork__wrapper h2 {
    font-size: 24px;
    line-height: 100%;
    font-family: 'Rubik';
    font-weight: 400;
    text-transform: uppercase;
}

.howitwork__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 3em 0;
}
.howitwork__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
}

.circle {
    width: 145px;
    height: 145px;
    background-color: #ffffff;
    border-radius: 50%;
    filter: drop-shadow(0 2px 50px #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
}
.hiw--icon {
    width: 50px;
    height: 50px;
}
.howitwork__item p {
    font-family: 'Roboto';
    line-height: 20px;
    font-size: 14px;
    font-weight: 400;
}


@media screen and (max-width: 768px) {
    .howitwork__inner {
        flex-direction: column;
    }
    .hiw--icon {
        width: 40px;
        height: 40px;
    }
}