/*
 * Inhoud
 *
 * -Page settings
 * -Form
 */

/* Page settings */
html {
    color: #1f1e21;
}

html body {
    font-family: 'Teko', sans-serif;
    font-style: normal;
    font-size: 15px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    margin: 0;
    font-family: 'TekoBold', sans-serif;
}

h4 {
    font-size: 35px;
}

.main-container p,
.main-container li {
    font-size: 18px;
    line-height: 35px;
    font-family: 'Roboto', sans-serif;
}

.no-padding {
    padding: 0;
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    font-weight: bold;
}
.btn-primary {
    background-color: #ff0d00;
    color: #fff;
    border-color: #ff0d00;
}
.btn-primary:hover {
    background-color: #1F1E21;
}
.text-primary {
    color: #ff0d00 !important;
    text-decoration: none;
}

.text-secondary {
    color: #c7c7c7 !important;
    text-decoration: none;
}

.collapsing {
    transition: 0s;
}

.text-white {
    color: #fff;
}

/* Form */
.form-check input:checked[type=checkbox]::after {
    content: "";
    position: absolute;
    width: 3px;
    height: 18px;
    background-color: #fff;
    right: 9px;
    top: 5px;
    z-index: 1;
    transform: rotate(45deg);
}
.form-check input:checked[type=checkbox]::before {
    content: "";
    position: absolute;
    width: 9px;
    height: 3px;
    background-color: #ffffff;
    left: 4px;
    top: 14px;
    transform: rotate(45deg);
    z-index: 1;
    display: block;
}


@media (max-width: 1600px) {
    .container {
        max-width: 1050px;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 950px;
    }
}
@media (max-width: 1260px) {
    .main-container p,
    .main-container li {
        font-size: 14px;
        line-height: 25px;
    }
}