/* COUNTER CSS */


/* 
Flex Counter

Algemene CSS instellingen voor de module.
Verwijder deze instellingen niet.
*/

.flex_module.counter .counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.flex_module.counter .counter-wrapper > div {
    padding: 35px;
    box-shadow: 2px 2px 20px 4px rgba(44, 2, 2, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex_module.counter .counter-wrapper > div .number-wrapper {
    font-size: clamp(24px, 5vw, 64px);
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.flex_module.counter .counter-wrapper .text {
    font-size: 20px;
    line-height: 1.2em;
    color: #BC0436;
    font-weight: 300;
}

@media screen and (max-width: 992px) {
    
    .flex_module.counter .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flex_module.counter .counter-wrapper > div {
        padding: 26px;
    }
}

@media screen and (max-width: 767px) { 
    
    .flex_module.counter .counter-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .flex_module.counter .counter-wrapper > div {
        padding: 20px;
    }
}


/* COUNTER CSS */

/* 
Flex Counter

Algemene CSS instellingen voor de module.
Verwijder deze instellingen niet.
*/

.flex_module.counter .counter-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.flex_module.counter .counter-wrapper > div {
    padding: 35px !important;
    box-shadow: 2px 2px 20px 4px rgba(44, 2, 2, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flex_module.counter .counter-wrapper > div .number-wrapper {
    font-size: clamp(32px, 5vw, 64px) !important;
    font-weight: 700;
    border-bottom: 1px solid rgba(0, 0, 0, 0.22);
}

.flex_module.counter .counter-wrapper .text {
    font-size: 20px;
    line-height: 1.2em;
    color: #911A1A;
    font-weight: 300;
}

@media screen and (max-width: 992px) {
    
    .flex_module.counter .counter-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flex_module.counter .counter-wrapper > div {
        padding: 26px;
    }
    
    .flex_module.counter .counter-wrapper .text {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) { 
    
    .flex_module.counter .counter-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .flex_module.counter .counter-wrapper > div {
        padding: 20px;
    }
    
    .flex_module.counter .counter-wrapper .text {
        font-size: 16px;
    }
}