/*Home diensten, kservice met icoontje volledig vak klikbaar gemaakt*/
:root {
    --primary-color: #E54F2A;
}

.kservice {
    position: relative;
}
.kservice-content-title a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.page-hero-tag {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    display: inline-block;
    padding: 20px 45px;
    line-height: 1;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(36, 38, 41, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.c-line.c-line--black {
    opacity: 0.15;
}

.page-title-area .page-title {
    font-size: 40px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 30);
}

.cta-content .cta-number,
.cta-content .cta-description {
    flex-basis: 50%;
}

.cta-content .cta-number {
    margin-bottom: 0;
}

.cta-bg .cta-description:before {
    top: 0;
    height: 100%;
}

.cta-number span {
    display: block;
    margin-bottom: 16px;
}

.cta-number-text a {
    display: block;
    position: relative;
    color: white;
    font-size: 24px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.cta-number-text a:not(:last-child) {
    margin-bottom: 8px;
}

.cta-number-text a:hover {
    color: black;
}

.cta-content p:not(:last-child) {
    margin-bottom: 16px;
}
.umb-block-list .block--button a {
    height: auto;
    line-height: 1.5;
    padding: 16px 32px;
}

.umb-block-list .block--is-intro {
    border-bottom: 0;
}

.umb-block-list .block--rte tr td:first-child {
    display: inline-flex;
    align-items: center;
    margin-right: 16px;
    font-weight: 700;
}

.umb-block-list .block--rte tr td:first-child::after {
    content: ':';
}

.umb-block-list .block--rte ol,
.umb-block-list .block--rte ul {
    padding-left: 16px;
    margin-bottom: 16px;
}

.umb-block-list .block--rte ul {
    list-style-type: square;
}

.umb-block-list .block--rte ol li::marker,
.umb-block-list .block--rte ul li::marker {
    color: var(--primary-color);
}

.umb-block-list .block--rte h2 + h3 {
    margin-top: 24px;
}

.umb-block-list .block--button-grid .button-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
}

.umb-block-list .block--button-grid .grid-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    color: white;
    background-color: black;
}

.umb-block-list .block--button-grid .grid-button:hover {
    background-color: var(--primary-color);
    transition: background-color 0.3s ease-in-out;
}

.umb-block-list .block--button-grid .grid-button.grid-button--disabled {
    pointer-events: none;
    opacity: 0.2;
}

.copyright span {
    padding-bottom: 6px;
}

.footer-made-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    
    @media only screen and (min-width: 768px) {
        justify-content: flex-start;
    }
}

a.footer-made-by__link {
    color: rgba(255, 255, 255, 0.5);
    transition: color .3s ease-in-out!important;
}

a.footer-made-by__link:hover {
    color: var(--primary-color);
}

.footer-made-by__svg {
    width: 80px;
    transform-origin: left;
    transition: transform .3s ease-in-out!important;
}

a.footer-made-by__link:hover svg {
    transform: scale(125%);
}

@media only screen and (max-width: 768px) {
    .copyright-bg {
        padding: 40px 0;    
    }
    
    .copyright-bg > .row div:first-child {
        order: 2;
    }
}