section#blocks{
    margin: 0 auto;
    position: relative;
    padding: 80px 0;
    background: #1a1a1a;
    margin-top: -2px;
}

section#blocks .fullgearwrap{
    position: absolute;
    width: 800px;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

section#blocks .fullgearwrap img{
    width: 1200px;
    height: 1200px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.2;
    max-width: unset;
    margin-left: -600px;
}

section#blocks .container{
    overflow: visible;
    z-index: 1;
}

section#blocks .container h2{
    color: white;
    font-size: 60px;
    line-height: 60px;
    margin: 0;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

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

section#blocks .container .blokwrapper .blok .bloklink{
    background: #f57a29;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    line-height: 16px;
    padding: 15px 15px;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    color: white;
    min-width: 170px;
    width: fit-content;
    margin-top: 40px;
    z-index: 1;
}

section#blocks .container .blokwrapper .blok p{
    color: white;
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    font-weight: 500;
    margin: 0;
}

section#blocks .container .blokwrapper .blok:nth-child(1) .bloklink{
    background: #1a1a1a;
}

section#blocks .container .blokwrapper .blok:nth-child(1):before{
    background:linear-gradient(120deg, #f57a29, transparent);
}

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: 40px;
    box-sizing: border-box;
    position: relative;
}

section#blocks .container .blokwrapper .blok .content{
    z-index: 1;
}

section#blocks .container .blokwrapper .blok:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, #1a1a1a, #00000085);
    top: 0;
    left: 0;
}

section#blocks .container .blokwrapper .blok span.bloktitel{
    color: white;
    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: 1500px) {
    section#blocks .container h2{
        font-size: 45px;
        line-height: 50px;
    }
}

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

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

    section#blocks .fullgearwrap{
        max-width: 800px;
        width: 100%;
        height: 1200px;
        overflow: hidden;
    }
}

@media screen and (max-width: 700px) {
    section#blocks .container h2{
        font-size: 30px;
        line-height: 30px;
    }

    section#blocks .container p{
        font-size: 16px!important;
        line-height: 26px!important;
        font-weight: normal!important;
    }
}