section#content{
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

section#content img.bigmcontent{
    height: 160%;
    position: absolute;
    top: -5px;
    object-position: left;
    z-index: 0;
    opacity: 0.2;
    object-fit: cover;
}

section#content .container{
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: 80px;
    align-items: center;
}

section#content .container:before{
    position: absolute;
    width: 80%;
    background: #F1F5FF;
    height: 100%;
    content: '';
    border-radius: 20px;
    z-index: -1;
    right: 0;
}

section#content .container .tekst{
    padding: 100px 60px;
    box-sizing: border-box;
    color: #011A36;
    position: relative;
    bottom: -10px;
    opacity: 0;
}

section#content .container .tekst a.button{
    color: #011A36;
    border-color: #011A36;
    margin-top: 30px;
    transition: 0.2s ease-in-out all;
}

section#content .container .tekst a.button:hover{
    background: #011A36;
    color: white;
}

section#content h3{
    color: #011A36;
    margin-top: 0;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-size: 22px;
    line-height: 26px;
    font-weight: 700;
}

section#content h2{
    margin: 0;
    color: #011A36;
    font-size: 45px;
    line-height: 50px;
    margin-bottom: 40px;
    font-weight: 700;
}

section#content h2 strong{
    color: #be1622;
}

section#content .container .afbeelding{
    position: absolute;
    left: 0;
    height: calc(100% - 160px);
    width: 45%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: -10px;
    opacity: 0;
}

section#content .container .afbeelding img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#content .container .video video{
    display: block;
    width: 100%;
}


section#content .container .video{
    position: relative;
    width: 100%;
    margin-top: 40px;
}

section#content .container .video .playbutton{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #00000042;
}

section#content .container .video .playbutton i{
    color: white;
    border-radius: 100%;
    height: 100px;
    width: 100px;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

@media screen and (max-width: 1000px) {

    section#content{
        padding-bottom: 280px;
    }

    section#content .container:before{
        width: 100%;
    }

    section#content .container{
        grid-template-columns: 1fr;
        overflow: visible;
        display: flex;
        justify-content: center;
        gap: unset;
    }

    section#content .container .afbeelding{
        height: 300px;
        width: 80%;
        bottom: -280px;
        right: unset;
        left: unset;
    }

    section#content .container .tekst{
        order: 2;
        padding: 40px;
    }

    section#content .container .tekst h3{
        margin-bottom: 20px;
    }

    section#content .container .tekst h2{
        font-size: 45px;
        line-height: 50px;
        margin-bottom: 40px;
    }
}

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

    section#content .container .tekst h3{
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 10px;
    }
}