section#blokken{
    position: relative;
    padding: 80px 0;
}

section#blokken .container{
    overflow: visible;
}

section#blokken .container .swiper .swiper-slide{
    display: grid;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

section#blokken .container .swiper .swiper-slide .blokimgwrapper img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    border-radius: 5px;
}

section#blokken .container .swiper .swiper-slide .blokcontent h2{
	font-weight: 800;
    font-size: 35px;
    line-height: 35px;
    margin-top: 0;
    margin-bottom: 20px;
}

section#blokken .container .swiper .swiper-slide .blokcontent .buttongroup{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

section#blokken .container .swiper .swiper-slide .blokcontent .buttongroup a.button{
    margin-right: 20px;
}

section#blokken .swiper-button-prev:after{
    content: '\f104';
    font-family: FontAwesome;
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--maincolor);
    color: var(--maincolor);
    text-align: center;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 100px;
}

section#blokken .swiper-button-next:after{
    content: '\f105';
    font-family: FontAwesome;
    width: 35px;
    height: 35px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid var(--maincolor);
    color: var(--maincolor);
    text-align: center;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 100px;
}

section#blokken .swiper-button-next, section#blokken .swiper-button-prev{
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: static!important;
    margin-top: 0;
}

section#blokken .blokkenwrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 10%;
}

section#blokken .blokkenwrapper .singleblok{
    flex: 0 0 45%;
    border-radius: 20px 20px 20px 0;
    overflow: hidden;
    box-shadow: 0px 3px 6px #00000029;
}


section#blokken .blokkenwrapper .singleblok .blokimgwrapper{
    height: 200px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

section#blokken .blokkenwrapper .singleblok .blokcontent{
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    padding: 40px 20px;
    background: #F8F8F8;
    gap: 20px;
}

section#blokken .blokkenwrapper .singleblok .blokcontent p{
    font-size: 30px;
    color: #137243;
    font-weight: bold;
    margin: 0;
    height: 23px;
}

section#blokken .blokkenwrapper .singleblok .blokcontent i{
    color: #FF8A15;
    font-size: 30px;
}

section#blokken .blokkenwrapper .singleblok .blokcontent img{
    width: 20px;
    height: auto;
}

section#blokken .blokkenwrapper .singleblok .blokimgwrapper img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@media only screen and (max-width: 1000px) {
    section#blokken .blokkenwrapper .singleblok{
        flex: 0 0 100%;
    }

    section#blokken .container .swiper .swiper-slide .blokcontent h2{
        font-size: 30px;
        line-height: 36px;
    }

    section#blokken .blokkenwrapper .singleblok:nth-child(n+2){
        margin-top: 40px;
    }

    section#blokken .blokkenwrapper .singleblok .blokcontent p{
        font-size: 26px;
    }
}

@media only screen and (max-width: 1100px) {
    section#blokken .container .swiper .swiper-slide .blokimgwrapper{
        flex: 0 0 100%;
    }

    section#blokken .container .swiper .swiper-slide .blokcontent{
        flex: 0 0 100%;
    }

    section#blokken .container .swiper .swiper-slide .blokimgwrapper img{
        height: 300px;
    }
}

@media only screen and (max-width: 800px) {
    section#blokken .container .swiper .swiper-slide .blokcontent .buttongroup a.button{
        flex: 0 0 100%;
        justify-content: center;
        margin-right: 0!important;
    }

    section#blokken .container .swiper .swiper-slide .blokcontent .buttongroup{
        justify-content: center;
    }

    section#blokken .container .swiper .swiper-slide .blokcontent{
        padding-bottom: 10px;
        text-align: center;
    }
}