:root {
    /* base colors */
    --color--base: white;
    --color--01: #EF7D00;
    --color--02: #6B869F;
    --color--03: #221E1F;
    --color--04: #F0F3F5;
    --color--05: #F0F3F5;
    --transition: all .40s ease-in-out;
    --transitions: all .25s ease-in-out
}

body {
    font-family: Poppins, Arial, Helvetica, sans-serif;
}

.\-mg-1 {
    margin: calc((1rem * .25) * -1);
}
.\-mg-2 {
    margin: calc((1rem * .5) * -1);
}
.\-mg-3 {
    margin: calc((1rem * .75) * -1);
}
.\-mg-4 {
    margin: calc((1rem * 1) * -1);
}
.\-mg-5 {
    margin: calc((1rem * 1.5) * -1);
}
.\-mg-6 {
    margin: calc((1rem * 3) * -1);
}
.\-mt-1 {
    margin-top: calc((1rem * .25) * -1);
}
.\-mt-2 {
    margin-top: calc((1rem * .5) * -1);
}
.\-mt-3 {
    margin-top: calc((1rem * .75) * -1);
}
.\-mt-4 {
    margin-top: calc((1rem * 1) * -1);
}
.\-mt-5 {
    margin-top: calc((1rem * 1.5) * -1);
}
.\-mt-6 {
    margin-top: calc((1rem * 3) * -1);
}
.\-mr-1 {
    margin-right: calc((1rem * .25) * -1);
}
.\-mr-2 {
    margin-right: calc((1rem * .5) * -1);
}
.\-mr-3 {
    margin-right: calc((1rem * .75) * -1);
}
.\-mr-4 {
    margin-right: calc((1rem * 1) * -1);
}
.\-mr-5 {
    margin-right: calc((1rem * 1.5) * -1);
}
.\-mr-6 {
    margin-right: calc((1rem * 3) * -1);
}
.\-mb-1 {
    margin-bottom: calc((1rem * .25) * -1);
}
.\-mb-2 {
    margin-bottom: calc((1rem * .5) * -1);
}
.\-mb-3 {
    margin-bottom: calc((1rem * .75) * -1);
}
.\-mb-4 {
    margin-bottom: calc((1rem * 1) * -1);
}
.\-mb-5 {
    margin-bottom: calc((1rem * 1.5) * -1);
}
.\-mb-6 {
    margin-bottom: calc((1rem * 3) * -1);
}
.\-ml-1 {
    margin-left: calc((1rem * .25) * -1);
}
.\-ml-2 {
    margin-left: calc((1rem * .5) * -1);
}
.\-ml-3 {
    margin-left: calc((1rem * .75) * -1);
}
.\-ml-4 {
    margin-left: calc((1rem * 1) * -1);
}
.\-ml-5 {
    margin-left: calc((1rem * 1.5) * -1);
}
.\-ml-6 {
    margin-left: calc((1rem * 3) * -1);
}
.mt-8{
    margin-top: 8rem;
}


.block {
    background-color: var(--color--01);
    width: 100%;

}

.nav1 {
    color: var(--color--base);
    font: normal normal bold 20px/30px Poppins;
    padding-top: 0;
    margin-top: -1.25rem;

}
ol{
    margin-left: 1rem;
}
.main-nav a {
    position: relative;
    padding-top: 10px;
    display: block;
    
}
.image{
    -webkit-clip-path: polygon(87% 0, 100% 19%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(87% 0, 100% 19%, 100% 100%, 0 100%, 0 0);
}
.main-nav ul li a::before {
    content: '';
    transition: var(--transition);
    background: var(--color--base);
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transform: translateY(200%);
}

.main-nav li{
    padding-right: 0px;

}
.main-nav ul li a:hover::before {
    opacity: 1;
    transform: translateY(0);
}

.main-nav .dropdown .actief {
    border-radius: 0;
    color: var(--color--05);
}

.main-nav .actief {
    background-color: var(--color--02);
    border-radius: 3px;
    transition: none;
    padding: 1rem;
}

.main-nav .actief:hover::before {
    display: none;
}

.main-nav ul li a.current::before {
    display: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    text-align: left;
    color: var(--color--01);
    letter-spacing: 0px;
    font-weight: 700;
    line-height: 1.25;
    opacity: 1;
}

header h1,
header h2,
header h3,
header h4,
header h5,
header h6,
header .h1,
header .h2,
header .h3,
header .h4,
header .h5,
header .h6 {
    color: var(--color--base);
}

header h1,
header .h1 {
    font-size: 60px;
    padding-right: 20px;
}

header h3,
header .h3 {
    font-size: 40px;
}

h1,
.h1 {
    font-size: 36px;
}

h2,
.h2 {
    font-size: 32px;
}

h3,
.h3 {
    font-size: 28px;
}

h4,
.h4 {
    font-size: 24px;
}

h5,
.h5 {
    font-size: 20px;
}

h6,
.h6 {
    font-size: 16px;
}

.pr-7 {
    padding-right: 175px;
}

.button.is-primary {
    background-color: var(--color--01);
    color: var(--color--base);
    font-weight: 700;
}

.button.is-primary:hover {
    background-color: var(--color--02);
    color: var(--color--base);
    transition: 1s;
}

.button {
    background-color: var(--color--02);
    color: var(--color--base);
    font-weight: 700;
}

.button:hover {
    background-color: var(--color--03);
    color: var(--color--base);
    transition: 1s;
}

.block1 {
    background-color: var(--color--04);
    width: 100%;
    border-radius: 10px;
    padding: 2rem;
}

p, li, .text1 {
    font-size: 20px;
    line-height: 2;
}

footer{
    margin-top: 40px;
}

#errorMessage{
    color: red;
}

.-ml-1 {
    margin-left: -40px;
}

ul.checkmark li {
    position: relative;
    padding-left: 40px;
  
}
ul.nav1 li{
    padding-top: 0;
    line-height: 1.5;
}
ol li,ul li {
    line-height: 1.5;
    padding-top: 0.5rem;
    margin-bottom: 0.75rem;
}
.fotos {
    display: block;
    position: relative;
}

ul.checkmark li::before {
    content: '';
    background: url(images/icon__checkmark.svg) no-repeat center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    display: block;
    position: absolute;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 2rem;
    height: 2rem;
    left: 0px;
    top: 5px;
}

.table {
    background-color: var(--color--05);
    border: 2px solid var(--color--05);
    width: 100%;
    border-radius: 0px 0px 0px 6px;
    table-layout: fixed;


}

.table tr:nth-child(even) {
    background-color: var(--color--base);
}

.td {
    font-size: 20px;
    max-width: 33%;
    min-width: 250px;
}

.th {
    font-size: 20px;
    max-width: 33%;
    min-width: 250px;
}

footer {
    background-color: var(--color--01);
    color: var(--color--base);

}

li.phone::before {
    content: '';
    background: url(images/icon__phone.svg) no-repeat center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    display: block;
    position: absolute;
    -webkit-mask-size: contain;
    mask-size: contain;
    width: 0.75rem;
    height: auto;
    top: 0;
    bottom: 0;
}
li.phone {
    position: relative;
}
.phone a{
    padding-left: 1.25rem;
}


.text2 {
    font-size: 16px;
    font-weight: 700;
}

.ml-10 {
    margin-left: 494px;
}

.m-7 {
    margin-left: 75px;
    margin-bottom: 120px;
}

.mb-7 {
    margin-bottom: 100px;
}

a {
    color: var(--color--base);
}

a:hover {
    color: var(--color--base);
}

.-mt-2 {
    margin-top: -105px;
}

.text4 {
    color: var(--color--base);
    text-shadow: 0px 5px 25px #221E1F;
    display: block;
    position: relative;
}

.-mt-3 {
    margin-top: -75px;
}

.pictures {
    -webkit-clip-path: polygon(87% 0, 100% 19%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(87% 0, 100% 19%, 100% 100%, 0 100%, 0 0);
}

.pictures1 {
    -webkit-clip-path: polygon(90% 0, 100% 16%, 100% 100%, 0 100%, 0 0);
    clip-path: polygon(90% 0, 100% 16%, 100% 100%, 0 100%, 0 0);
    opacity: 1;

}

.smaller {
    font-size: small;
    line-height: 1.5;
    width: 100%;
}

.mb-10 {
    margin-bottom: 8px;
}

.columns1 {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    page-break-inside: avoid;
    break-inside: avoid-column;
}

.-ml-2 {
    margin-left: -142px;
}

.menu-toggle {
    display: none;
}

.openmenu {
    display: none;
}

.closemenu {
    display: none;
}


.mb-9 {
    margin-bottom: 40px;
}

.header-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--color--02);
}

.gap-1 {
    gap: 1rem;
}

.label-dealer {
    font-size: 18px;
    font-weight: 600;
    color: var(--color--02);
    padding-right: 20px;
    white-space: nowrap;

}

.admin-text {
    color: var(--color--01);
    font: normal normal bold 40px/80px Poppins;
    margin-top: 20px;
}

.filebutton {
    margin-top: 50px;
}

.file-label {
    background-color: var(--color--01);
    color: var(--color--base);
    padding: 0.5rem;
    border-radius: 0.3rem;
    cursor: pointer;
    margin-top: 1rem;
}

.file-span {
    margin-left: 0.3rem;
    font-family: sans-serif;
}

.tabledealer {
    background-color: var(--color--base);
    border: 2px solid var(--color--05);
    font-size: 10px;
    width: 100%;
    max-width: 50%;
    border-radius: 0px 0px 0px 6px;
    text-align: center;
}

.thead {
    width: 100%;
    background-color: var(--color--01);
}

.td-name {
    font-size: 10px;
    max-width: 100%;
    margin-left: 2px;

}

.tabledealer tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.05);

}

.tabledealer tr:hover {
    background-color: #EF7D0022;
}

.th-name {
    font-size: 10px;
    width: 100%;
    color: var(--color--base);
    padding-right: 1rem;
}

.a-google {
    color: var(--color--03);
}

.a-google:hover {
    color: var(--color--03);
}

.map {
    display: flex;
    justify-content: center;
    align-items: center;

}

.form-mt {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
}

.map {
    width: 100%;
    height: 500px;
}

.block2 {
    background-color: var(--color--04);
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, .1), 0 0 0 1px rgba(10, 10, 10, .02);
}

.zipcode-city {
    width: 100%;
    border: 2px solid #EDEDED;
    opacity: 1;
    padding: 15px;
    font-size: 20px;
}

.container:not(.is-max-desktop):not(.is-max-widescreen) {
    max-width: 1600px;
}

.pictures .text4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-bottom: 0;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
    line-height: 1.25;
    padding: 1.5rem 1rem;
    z-index: 2;
    background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}

.wp {
    white-space: nowrap;
}

.contactform {
    display: flex;
    justify-content: center;
    align-items: center;
}

.formulier {
    width: 100%;
    height: 50px;
    border: 1px solid #EDEDED;
    margin-left: auto;
    margin-right: auto;
}

.pb-3 {
    padding-bottom: 200px;
}

.pr-8 {
    padding-right: 40px;
}

.block3 {
    background-color: var(--color--04);
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
}
.message{
    padding: 1rem;
    text-align: center;
    display: block;
}

.cf {
    margin-left: auto;
    margin-right: auto;
    color: var(--color--01);
    font-size: 30px;
    font-weight: 700;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    overflow: hidden;
    width: 200px;
}

.dropdown-content a {
    display: block;
    color: var(--color--01);
    padding: 5px;
    text-decoration: none;
    padding: 1rem;
}

li.dropdown:hover .dropdown-content {
    display: block;
    z-index: 2;
}

.dropdown-content a:hover {
    color: #FFFFFF;
    background-color: var(--color--01);
    padding: 1rem;
}

footer li{
    font-size: 1rem;
    
}

footer li strong, a{
    color: var(--color--base);
}
footer a:hover {
    text-decoration: underline;
}

.main-nav ul li.dropdown .dropdown-content a::before {
    transition: none;
    display: none;
}

.form-post {
    width: 100%;
}

.form-column {
    width: 100%;
}

.form-columns {
    width: 100%;
}

.table-form {
    width: 100%;
}

.label-form {
    padding-bottom: 10px;
    color: var(--color--01);
    font-weight: bold;
}

.text_error {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color--03);
    padding-bottom: 80px;
    padding-top: 20px;
}
.listtext{
    padding-left: 10px;
    padding-top: 2px;
    margin: 0 auto;
    max-width: 1000px;
    padding: 1rem;
    border: 4px solid var(--color--base);
    position: relative;
    margin-bottom: 1rem;
    color: var(--color--02);
}
.listtext ul{
    columns: 2;
}
.listtext h3{
    padding-bottom: 4px;
}
.tr-name{
    padding: 1rem;
    padding: 1rem;
}
.column--logo img{
        display: block;
        position: relative;
        width: 80vw;
        height: auto;
        max-width: 200px;
        overflow: unset;
        clip: unset;
}


/* media query tablet liggend */
@media screen and (max-width:1400px) {
    .tl.column{
        padding-left: 0px;
    }
    .block1{
        padding: 2rem;
        padding-bottom: 1rem;
    }
    header h1, header .h1 {
        font-size: 40px;
        padding-right: 40px;
        padding-top: 20px;
    }

    header h3, header .h3 {
        font-size: 30px;
    }

    .mt-12 {
        margin-top: 155px;
    }

    .nav1 {
        margin-left: 5px;
    }

    .footer1 {
        padding-left: 5px;
        padding-right: 20px;
    }
    .mt-11{
        margin-top: 132px;
    }
    .mt-10{
        margin-top: 2rem;
    }
    .pl-4{
        padding-left: 2rem !important;
    }
    .td {
        font-size: 20px;
        max-width: unset;
        width: 100%;
        min-width: 250px;
    }
    .th {
        font-size: 20px;
        max-width: unset;
        width: 100%;
        min-width: 250px;
    }
    .columns{
        margin-left: 0rem;
        margin-right: 0rem;
    }
    .mt-8{
        margin-top: 2rem;
    }

}

/* media query tablet staand */
@media screen and (max-width:900px) {
    .mt-8{
        margin-top: 0rem;
    }

    .main-nav a {
        color: var(--color--01);
    }

    .main-nav ul li a::before {
        background: var(--color--01);
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
    }
    .dropdown{
        width: 100%;
    }

    .nav1 {
        margin-left: 5px;
    }

    li {
        margin-top: 4px;
        margin-left: 10px;
    }

    .columns:not(.is-desktop) {
        display: block;
    }
    
    .dropdown-content a:hover {
         padding: 0rem;
    }

    .column.is-6, .column.is-6-tablet {
        width: 100%;
    }

    .span-close {
        margin-top: -20px;
        font-size: 20px;
        font-weight: bold;
    }

    .span-open{
        color: var(--color--base);
        font-size: 15px;
        font-weight: bold;
    }
    .image{
        padding-bottom: 2rem;
    }
    .table-mt{
        margin-top: -0.5rem;
    }

    .footer1 {
        margin-left: 12px;

    }

    td,
    tr,
    th {
        display: block;
        width: 100%;
        max-width: unset;
    }

    .columns {
        margin-left: 0;
        margin-right: 0;
    }



    header h1, header .h1 {
        font-size: 30px;
        padding-right: 0px;
    }

    header h3, header .h3 {
        font-size: 20px;

    }


    .menu-toggle {
        height: 100px;
        width: 100px;
        display: block;
        background: transparent;
        border: 0;

    }

    .main-nav.sidebar-right {
        right: 0;
        top: 0;
        bottom: 0;
        position: fixed;
        z-index: 3;
        height: auto;
        transform: translateY(-100vh);
        transition: var(--transitions);
        background: var(--color--base);
        margin-top: 0;
        bottom: 0;
        left: auto;
        width: 100%;
        max-width: 100vw;
        padding: 0;
        opacity: 0;

    }

    .main-nav.sidebar-right.toggled {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav a {
        color: var(--color--01);
    }

    .main-nav ul li a::before {
        background: var(--color--01);
    }

    button.menuopen {
        position: relative;
        padding-left: 40px;
    }

    button.menuopen::before {
        content: '';
        -webkit-mask: url(images/more.svg) no-repeat center;
        mask: url(images/more.svg) no-repeat center;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        display: block;
        position: relative;
        -webkit-mask-size: contain;
        mask-size: contain;
        width: 100%;
        height: 40px;
        left: 0px;
        top: 2px;
        background-color: var(--color--base);
    }

    button.menuclose {
        position: relative;
        padding-left: 40px;

    }
    .dropdown-content a{
        line-height: 2;
        padding: 0rem;
    }

    button.menuclose::before {
        content: '';
        -webkit-mask: url(images/close.svg) no-repeat center;
        mask: url(images/close.svg) no-repeat center;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        display: block;
        position: absolute;
        -webkit-mask-size: contain;
        mask-size: contain;
        width: 20px;
        height: 20px;
        left: 17px;
        top: 17px;
        color: var(--color--01);
        background-color: var(--color--01);
    }

    .columns1 {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }

    .lh {
        line-height: 50px;
        margin-top: 30px;
    }

    .zipcode-city {
        margin-bottom: 10px;
    }


    .form-mt {
        flex-direction: column;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .listitem {
        flex-direction: column;
    }
    .gap-1{
        gap: 0rem;
    }

    .dropdown-content {
        margin-top: 10px;
        position: relative;
        display: block;
        width: 100%;
        padding: 0.5rem 1rem;
        background-color: var(--color--01);
        box-shadow: none;
    }

    .span-spec {
        color: var(--color--01);
    }

    .pt-6 {
        padding-top: 0px !important;
    }

    .dropdown-content a {
        color: var(--color--base);
    }

    .close {
        color: var(--color--01);
        padding: 2rem;
        display: flex;
    }

    .span-close {
        margin-top: -18px;
        font-size: 20px;
        font-weight: bold;
    }

    .main-nav li{
        width: 100%;
    }
    .main-nav .actief {
        background-color: var(--color--02);
        color: var(--color--base);
        border-radius: 3px;
        transition: none;
        padding: 0.5rem 0rem 0rem 0.5rem;
        width: 100%;
    }

    .main-nav .dropdown .actief{
        padding: 0.5rem 0rem 0.5rem 0.5rem;
    }

    .main-nav .actief a {
        color: var(--color--base);
    }
    
    .mt-10{
        margin-top: 1rem;
    }
    .container.mt-8 {
        margin-top: 5rem;
    }
    .mt-8{
        margin-top: 1rem;
    }
    .table td{
        border:none;
        padding-top: 0px;
    } 
    
    .table th{
        border: none;
        padding-bottom: 0px;
    }
    .pt-7{
        padding-top: 4rem;
    }
    .pl-4{
        padding-left: 0rem !important;
    }
    .tl.column{
        padding: 0px;
    }
    .pr-4{
        padding-right: 0rem;
    }
    
}

@media screen and (max-width: 480px) {
    p, li, .text1 {
        font-size: 18px;
    }
}