section#contactsection{
    padding-top: 80px;
}

section#contactsection .container{
    background: #F8F8F8;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    padding: 40px 100px;
    box-sizing: border-box;
    position: relative;
    align-items: center;
}

section#contactsection .leftside{
    flex: 0 0 50%;
}

section#contactsection .leftside p{
    font-size: 20px;
}

section#contactsection .leftside h2{
    color: #137243;
    font-size: 60px;
    line-height: 65px;
    font-weight: 400;
    margin-bottom: 30px;
    margin-top: 0;
}

section#contactsection .leftside .puntjesentrust{
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

section#contactsection .leftside .puntjesentrust .puntjeslijst .puntje{
    display: flex;
    align-items: center;
}

section#contactsection .leftside .puntjesentrust .puntjeslijst .puntje:nth-child(n+2){
    margin-top: 20px;
}

section#contactsection .leftside .puntjesentrust .puntjeslijst .puntje i{
    color: #FF8A15;
    margin-right: 10px;
    font-size: 22px;
}

section#contactsection .leftside .puntjesentrust .trustlogos{
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 20px;
}

section#contactsection .leftside .puntjesentrust .trustlogos img{
    max-height: 70px;
}

section#contactsection .rightside{
    border-radius: 100%;
    border: 25px solid white;
    right: 100px;
    max-height: 100%;
    max-width: 40%;
    position: absolute;
    overflow: hidden;
    box-sizing: border-box;
}

section#contactsection .rightside img{
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1400px) {
    section#contactsection .leftside{
        flex: 0 0 100%;
    }

    section#contactsection .rightside{
        max-width: 80%;
        margin: 0 auto;
        position: static;
        margin-top: 40px;
    }
}

@media screen and (max-width: 1000px) {
    section#contactsection .leftside h2{
        font-size: 30px;
        line-height: 43px;
    }

    section#contactsection .leftside p{
        font-size: 16px;
        line-height: 26px;
    }

    section#contactsection .container{
        padding: 40px;
    }
}

@media screen and (max-width: 700px) {
    section#contactsection .rightside{
        max-width: 100%;
    }
}