/* 
Algemene flex instellingen.

Verwijder deze instellingen niet.
*/

.flex_row {
    max-width: 1280px;
    margin-inline: auto;
}

.flex_row:not(:first-child) {
    margin-block: 80px;
}

.flex_row .flex_module{
    z-index: 5; position: relative;
}
.flex_module .pk-button-group {
    display: flex; flex-direction: row;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}


.flex_module .pk-button-group a.fl-button{
    border-radius: 8px;
    background-color: #306d43;
    color: #fff;
    padding: 16px 20px;
    transition: background-color 150ms ease-in-out;
}
.flex_module .pk-button-group a.fl-button:hover{
    background-color: #43985e;
}

.flex_module:not(:first-child) {
    margin-block: 80px;
}

.flex_row {
    padding-left: 20px ; padding-right: 20px;
}

@media screen and (max-width: 767px) {
    .flex_module .pk-button-group .fl-button{
        flex: 1;
        min-width: fit-content;
        flex-shrink: 1;
    }
    .flex_module .pk-button-group{
        display: flex; flex-direction: row; flex-wrap: wrap;
        width: 100%;
    }
}