body.page .dienstwrapper .container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 80px 0;
}

body.page .dienstwrapper{
    background: #F9F7F3;
    border-radius: 10px;
}

body.page .dienstwrapper .container .leftsection > h3{
    font-size: 30px;
    color: #FF6C6C;
    line-height: 30px;
    font-weight: 100;
}

body.page .dienstwrapper .container .leftsection > h2{
    color: #262626;
    font-size: 70px;
    line-height: 70px;
}

body.page .dienstwrapper .container .rightsection{
    position: relative;
}

body.page .dienstwrapper .container .leftsection .button:before{
    content: '\f086';
}

body.page .dienstwrapper .container .rightsection img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: cover;
    border-radius: 10px;
}

@media only screen and (max-width: 1200px) {
    body.page .dienstwrapper .container{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    body.page .dienstwrapper .container .rightsection{
        height: 300px;
    }

    body.page .dienstwrapper .container .leftsection > h3{
        font-size: 22px;
        line-height: 22px;
    }

    body.page .dienstwrapper .container .leftsection > h2{
        font-size: 40px;
        line-height: 40px;
    }

    body.page .dienstwrapper .container{
        padding: 30px 0;
    }
}