.sec-4-container{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0px;
    row-gap: 0px;
    margin-bottom: 10px;
}

.sec-4-gridemlement-1{
    background: #001d3de8;
    border-radius: 15px;
    padding-top: 110px;
    padding-left: 50px;
    padding-bottom: 60px;
    padding-right: 20px;
    color: white;
}

.sec-4-gridemlement-2{
    display: grid;
    grid-auto-rows: auto;
}

.sec-4-untergridemlement-1{
    background-color: #1e1e1e;
    color: white;
    border-radius: 15px;
    padding-top: 20px;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-right: 20px;
}

.sec-4-untergridemlement-2{
    background-color: white;
    border-radius: 15px;
    padding-top: 20px;
    padding-left: 50px;
    padding-bottom: 50px;
    padding-right: 20px;
}

.sec-4-h2{
    font-size: 40px;
    font-weight: 500;
}

.sec-4-p{
    margin-top: -25px;
    margin-bottom: 30px;
    font-size: 18px;
}

.button-2 {
    background-color: #E34E5A;
    border-radius: 15px;
    border-width: 0;
    color: #333333;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    line-height: 14px;
    list-style: none;
    margin: 0;
    padding: 0px 15px;
    text-align: center;
    transition: all 200ms;
    vertical-align: baseline;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    -webkit-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.29);
    -moz-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.29);
    box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.29);
    transition: box-shadow 200ms ease-in-out;
}


:hover.button-2{
    -webkit-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.54);
    -moz-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.54);
    box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.54);
}

:hover.button-4{
    -webkit-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.54);
    -moz-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.54);
    box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.54);
}




.button-4 {
    background-color: #E34E5A;
    border-radius: 15px;
    border-width: 0;
    color: #333333;
    cursor: pointer;
    display: inline-block;
    font-size: 20px;
    font-weight: 400;
    line-height: 14px;
    list-style: none;
    margin: 0;
    margin-top: -10px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    transition: all 200ms;
    vertical-align: baseline;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    -webkit-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.29);
    -moz-box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.29);
    box-shadow: 0px 10px 20px -8px rgba(0,0,0,0.29);
    transition: box-shadow 200ms ease-in-out;
}

@media (max-width: 768px) {
    
    .sec-4-container{
        grid-template-columns: repeat(1, 1fr);
    }

    .sec-4-gridemlement-1{
        padding-top: 30px;
        padding-left: 25px;
        padding-bottom: 50px;
        padding-right: 20px;
        
    }

    .sec-4-h2{
        font-size: 32px;
        font-weight: 500;
    }
    
    .sec-4-p{
        margin-top: -15px;
        margin-bottom: 30px;
        font-size: 14px;
    }

    .sec-4-untergridemlement-2{
        padding-left: 25px;
        padding-right: 25px;
    }

    .sec-4-untergridemlement-1{
        padding-left: 25px;
        padding-right: 25px;
    }

}

