section#blocks{
    margin: 0 auto;
    position: relative;
    padding: 80px 0;
    background: #fff4f5;
}

section#blocks .container h2{
    color: #000;
    font-size: 45px;
    line-height: 50px;
    margin: 0;
    margin-bottom: 40px;
    text-align: center;
}

section#blocks .container h2 strong{
    color: #be1622;
}

section#blocks .container .blokwrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

section#blocks .container .blokwrapper .blok .bloklink{
    background: #ededed;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    line-height: 16px;
    padding: 15px 15px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    color: #000;
}

section#blocks .container .blokwrapper .blok:nth-child(1) .bloklink{
    color: white;
    background: #4e9b9c;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    line-height: 16px;
    padding: 15px 15px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
}

section#blocks .container .blokwrapper .blok img{
    margin-bottom: 15px;
}

section#blocks .container .blokwrapper .blok .stap{
    padding: 5px 15px;
    background: #ededed;
    color: #000;
    display: block;
    width: fit-content;
    font-weight: bold;
    font-size: 16px;
}

section#blocks .container .blokwrapper .blok{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: white;
    padding: 20px;
    box-sizing: border-box;
}

section#blocks .container .blokwrapper .blok span.bloktitel{
    color: #000;
    font-weight: normal;
    font-size: 22px;
    line-height: 28px;
    display: block;
    padding: 15px 0;
}

section#blocks .container .blokwrapper .blok strong{
    font-weight: 900;
}

@media screen and (max-width: 1000px) {
    section#blocks{
        padding: 40px 0;
    }

    section#blocks .container .blokwrapper{
        grid-template-columns: 1fr 1fr;
    }

    section#blocks .container h2{
        font-size: 30px;
        line-height: 30px;
    }

    section#blocks .container .blokwrapper .blok span.bloktitel{
        font-size: 18px;
        line-height: 22px;
    }
}

@media screen and (max-width: 700px) {
    section#blocks .container .blokwrapper{
        grid-template-columns: 1fr;
    }
}