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

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

section#blocks .container .contenttopper .image{
    position: relative;
}

section#blocks .container .contenttopper img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
}

section#blocks .container .blokwrapper{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 40px;
    justify-content: center;
}

section#blocks .container .blokwrapper .blok{
    aspect-ratio: 1 / 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
}

section#blocks .container .blokwrapper .blok:hover:before{
    opacity: 1;
}

section#blocks .container .blokwrapper .blok span{
    z-index: 1;
    position: relative;
    margin: 0;
    text-align: center;
    color: black;
    font-weight: 900;
    font-size: 20px;
    padding: 0 10px;
}

section#blocks .container .blokwrapper .blok:before{
    position: absolute;
    background: white;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: '';
    z-index: 0;
    transition: 0.2s ease-in-out all;
}