@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;600;800&display=swap');


:root {    
    /*--=================== COLOR ===================--*/
    --accent-color: #fba100;
    --accent-color-alt: #479acc;
    --body-color: #f0eeed;
    --container-color: #202023;
    --text-color: #202023;
    --button-color: rgb(60, 160, 243);

    /*--=================== FONT ===================--*/
    --h1-font-size: 2rem;
    --h2-font-size: 1rem;
    --text-font-size: .8rem;
    --basic-font: 'Montserrat', sans-serif;
    --italic-font: 'Playfair', serif;
}


/*--=================== BASE ===================--*/
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html{
    scroll-behavior: smooth;
    background-color: var(--body-color);
    font-family: 'Poppins', sans-serif;
}

ul {
    list-style: none;
}

a{
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, p, a{
    color: var(--text-color);
}

h1, h2{
    font-weight: 600;
}

p{
    font-size: .8rem;
    letter-spacing: 1px;
}
/*--============================================================--*/




/*--=================== REUSABLE CSS CLASSES ===================--*/
.section{
    height: fit-content;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5rem 1.3rem;
}


.section_title{
    color: var(--accent-color);
    margin-bottom: 1.1rem;
    font-size: 1.7rem;
    text-align: center;
}

.section_title_blauw{
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.7rem;
}

.title_margin{
    margin-top: -2.2rem;
}
/*--============================================================--*/




/*--=================== COOKIE ===================--*/
.cookie_container{
    position: fixed;
    width: 100%;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 200;
    backdrop-filter: blur(10px);
    transition: backdrop-filter .5s;
}

.cookie_container_weg{
    backdrop-filter: blur(0px);
}

.cookie_container_weg2{
    display: none;
}

.cookie{
    background-color: #fff;
    border-radius: 10px;
    width: 80%;
    height: fit-content;
    padding: 1rem;
    box-shadow: 0px 0px 20px #00000051;
    transition: transform .5s, opacity .5s;
    max-width: 600px;
    opacity: 1;
}

.cookie_weg{
    transform: translateY(200%);
    opacity: 0;
}

.cookie p{
    color: var(--container-color);
    text-align: center;
}

.cookie_btn_container{
    display: flex;
    justify-content: space-around;
}

.btn_cookie{
    margin-top: 1rem;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.btn1{
    background-color: #88e12f;
}
/*--==============================================--*/




/*--=================== HEADER ===================--*/
header{
    background-color: #fff;
    height: 5rem;
    width: 100%;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color .3s;
    z-index: 100;
    box-shadow: 0px 0px 20px #00000026;
    transition: top .2s;
    top: 0;
}

.hide_header{
    top: -5rem;
}

.header_content{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1150px;
}

.logo_box{
    margin-left: 1rem;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.logo_icon{
    background-color: #fba100;
    border-radius: 50% 50% 50% 5%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .4rem;
    transition: background-color .3s;
}

.logo_icon span{
    color: #fff;
    font-weight: 600;
    font-size: 1.5rem;
    margin-right: .1rem;
    transition: color .3s;
}

.logo_box h1{
    font-weight: 800;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: color .3s;
}

.logo_box h1 span{
    font-weight: 300;
    color: var(--accent-color);
    margin-top: -1rem;
    transition: color .3s;
}

.menu{
    margin-right: 1rem;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 100vh;
    left: 0;
    transition: top .0s;
    z-index: -10;
    transition-delay: .4s;
}

.nav_list{
    background-color: #fba100;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    transition: opacity .5s;
}

.nav_list li{
    transition: transform .5s;
}

.nav_list a{
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav_list p{
    color: #fff;
    font-size: 1.5rem;
    user-select: none;
    letter-spacing: 0;
}

.active{
    text-decoration: underline 2px;
    text-underline-offset: 5px;
}

.maakafspraak{
    padding: 1rem 2rem;
    background-color: var(--accent-color-alt);
    color: #fff;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    position: fixed;
    bottom: -4rem;
    opacity: 0;
    transition: bottom .5s, opacity .5s;
}



/*--=================== MENU BURGER BUTTON ===================--*/
.menu_button{
    width: 1.5rem;
    height: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-right: 2rem;
    -webkit-tap-highlight-color: transparent;
}

.menu_button span{
    background-color: var(--accent-color);
    width: 1.7rem;
    height: 3px;
    display: block;
    transition: .2s;
    position: absolute;
}

.menu_button .line-1{
    transform: translate(0, -8px);
}

.menu_button .line-2{
    height: 3px;
}

.menu_button .line-3{
    transform: translate(0, 8px);
}




/*--=================== OPEN MENU ===================--*/
@media screen and (max-width: 1022px) {
    .menu_button_open span{
        background-color: #fff;
    }
    
    .menu_button_open .line-1{
        transform: translate(0, 0) rotate(135deg);
    }
    
    .menu_button_open .line-2{
        width: 0;
    }
    
    .menu_button_open .line-3{
        transform: translate(0, 0) rotate(-135deg);
    }
    
    .header_open{
        background-color: var(--accent-color);
    }
    
    .open_menu{
        top: 0;
        transition-delay: .0s;
    }
    
    .open_nav_list{
        opacity: 1;
        transition: opacity .6s;
    }
    
    .open_nav_list li{
        transform: translateY(-5rem);
    }
    
    .logo_open h1{
        color: #fff;
    }
    
    .logo_open h1 span{
        color: #fff;
    }
    
    .logo_icon_open{
        background-color: #fff;
    }
    
    .logo_icon_open span{
        color: var(--accent-color);
    }

    .open_afspraakmenuknop{
        opacity: 1;
        bottom: 7rem;
    }
}
/*--======================== END OF HEADER ========================--*/




/*--======================== FRONT PAGE ========================--*/
.front_page{
    padding: 0;
    background-image: url(background_img_2.webp);
    background-position: center;
    background-size: cover;
    justify-content: end;
}

.dark{
    padding: 8rem 1rem 4rem;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
}

.front_page_content{
    width: 100%;
    max-width: 1115px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.front_page_1{
    flex: 1;
}

.front_page_2{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark h1, h2{
    justify-self: end;
    width: 100%;
    color: #fff;
    z-index: 10;
}

.dark h1{
    font-size: 4.5rem;
    font-weight: 600;
    line-height: 4.5rem;
}

.dark h2{
    font-weight: 300;
}

.dark p{
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.front_page_btn_container{
    width: 100%;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.front_page_btn{
    font-weight: 600;
    padding: .4rem 1.1rem;
    color: var(--accent-color);
    background-color: #fff;
    border-radius: 500px;
    display: flex;
    align-items: center;
    transition: background-color .2s, color.2s;
}

.front_page_btn i{
    font-size: 1.5rem;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 200px;
    margin-left: .5rem;
    transition: transform .2s, background-color .2s, color.2s;
}

.desktop{
    display: none;
}
/*--============================================================--*/



/*--======================== TARIEVEN ========================--*/
.prijs_content{
    width: 100%;
    max-width: 1120px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5rem;
    margin-top: 5rem;
}

.prijs_box{
    flex: 1;
    background-image: linear-gradient(170deg, #f2faff, #cae2f1 );
    height: fit-content;
    border-radius: 10px;
    border: 2px solid var(--accent-color-alt);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 350px;
}

.section_title_prijs{
    padding-top: 1rem;
    color: var(--text-color);
    font-size: 1.8rem;
    text-align: center;
}

.prijzen{
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.prijzen div{
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.prijzen p{
    text-align: center;
    margin: -.5rem;
}

.prijzen span{
    height: 2px;
    background-color: var(--accent-color-alt);
    width: 100%;
}

.prijzen h2{
    color: var(--accent-color-alt);
    font-size: 3rem;
    text-align: center;
}

.prijzen small{
    padding-right: .2rem;
}

.prijs_afspraak{
    height: 5rem;
    width: 80%;
    background-color: var(--accent-color-alt);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 500px;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 0 1.3rem;
    transition: background-color .3s;
}

.prijs_text{
    width: 80%;
    margin-bottom: 1rem;
}

.prijs_text div{
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.prijs_text i{
    font-size: 1.5rem;
    color: var(--accent-color-alt);
}

.prijs_text p{
    font-size: 1rem;
}

.prijs_text h2{
    font-size: 1.3rem;
    margin-top: 2rem;
    color: var(--text-color);
}


/*--============================================================--*/



/*--======================== WELKOM ========================--*/
.welkom{
    padding-bottom: 5;
}

.welkom_container{
    width: 100%;
    max-width: 1120px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #fff;
    border-radius: 10px;
}

.welkom_links{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.welkom_links p{
    font-size: .9rem;
}

.welkom_title{
    text-align: start;
    width: 100%;
}

.welkom_btn{
    background-color: var(--accent-color);
    border-radius: 200px;
    height: 2.5rem;
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    margin-top: .5rem;
    transition: transform .2s;
}

.welkom_btn i{
    font-size: 1.5rem;
    background-color: #fff;
    color: var(--accent-color);
    border-radius: 200px;
    margin-left: .5rem;
    transition: transform .2s;
}

.welkom_rechts2{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.welkom_rechts2 img{
    border-radius: 0 80px 0 80px;
    width: 100%;
    max-width: 500px;
    margin-top: 1rem;
}






.welkom_rechts{
    flex: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;    
    display: none;
    transform: translateX(1rem);
}

.welkom_rechts h1{
    font-size: 1.5rem;
    padding-bottom: -2rem;
    color: #fff;
}

.welkom_rechts p{
    font-size: 1rem;
    color: #fff;
}

.welkom_rechts p i{
    font-size: 1.5rem;
    transform: translateY(.3rem);
}

.welkom_container p{
    padding-bottom: .8rem;
}

.rechts_content{
    z-index: 10;
    scale: 1.15;
    transform: translateX(.5rem);
}

.welkom_rechts svg{
    position: absolute;
    scale: .45;
    transform: translateX(0rem) translateY(2rem);
    width: 1050px;
    margin: -5rem;
    opacity: .8;
}
/*--========================================================--*/




/*--======================== DIENSTEN ========================--*/
.diensten{
    padding-top: 2rem;
}

.diensten_content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.3rem;
    max-width: 1250px;
}

.dienst_box{
    background-color: #fff;
    padding: 1rem 1rem 1.4rem 1rem;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.dienst_box:hover .foto_box{
    background-size: 140%;
}

.dienst_box h2{
    color: var(--container-color);
    font-size: 1.2rem;
    padding-top: 1rem;
}

.dienst_box p{
    margin-bottom: 2rem;
    font-size: .9rem
}

.btn_diensten{
    align-self: baseline;
    color: #fff;
    font-weight: 600;
    padding: .4rem 1.1rem;
    background-color: var(--accent-color-alt);
    border-radius: 500px;
    transition: background-color .2s;
}

.foto_box{
    height: 15rem;
    margin-bottom: .6rem;
    background-position: center;
    background-size: 120%;
    border-radius: 8px;
    transition: background-size 1s;
}

.foto1{
    background-image: url("hardware.webp");
}

.foto2{
    background-image: url("software.webp");
}

.foto3{
    background-image: url("netwerk.webp");
}

.foto4{
    background-image: url("website.webp");
}

.foto5{
    background-image: url("Computer\ apk.webp");
}

.foto6{
    background-image: url("printers.webp");
}

.diensten_gap{
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.diensten2{
    padding-top: 0;
}
/*--============================================================--*/




/*--======================== IDEAAL VOOR ========================--*/
.ideaal_voor{
    background-color: var(--accent-color-alt);
    text-align: center;
}

.ideaal_content{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.3rem;
}

.ideaal_box{
    color: #fff;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 3rem;
}

.ideaal_box h2{
    color: #fff;
    font-size: 1.2rem;
}

.ideaal_box p{
    color: #fff;
    margin-bottom: 2rem;
    font-size: .9rem;
}

.checklist{
    width: fit-content;
    text-align: start;
}

.checklist i{
    font-size: 2rem;
    transform: translateY(.3rem);
    color: #88e12f;
}

.icon_mobiel{
    transform: scale(.9) translateY(-.8rem);
}

.maakafspraak2{
    margin-top: 2rem;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}
/*--=============================================================--*/




/*--======================== MERKEN ========================--*/
.merken{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.3rem 1.3rem 5rem 1.3rem;
}

.merken i{
    width: 50px;
    height: 50px;
    background-color: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    box-shadow: 0px 0px 10px #00000022;
    display: none;
    -webkit-tap-highlight-color: transparent;
}

.merken i:first-child{
    transform: translateY(5rem) translateX(-570px);
}

.merken i:last-child{
    transform: translateY(5rem) translateX(570px);
}

.merken_lijst{
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem 0;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% / 1);
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.merken_lijst::-webkit-scrollbar{
    display: none;
}

.no_transition{
    scroll-behavior: auto;
}

.item{
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    height: 6rem;
}

.dragging{
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.dragging .item{
    cursor: grab;
    user-select: none;
}

.item a{
    display: flex;
    align-items: center;
    justify-content: center;
}

.item img{
    width: 90%;
    max-width: 300px;
}

/*--=========================================================--*/




/*--======================== REVIEWS ========================--*/
.section_reviews{
    padding-bottom: 0;
}

.reviews{
    width: 100%;
    max-width: 1120px;
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
    z-index: 0;
    min-height: 450px;
}
/*--=========================================================--*/




/*--======================== CONTACT ========================--*/
.contact_container{
    width: 100%;
    max-width: 1120px;
    background-color: #fff;
    padding: 1rem;
    border-radius: 10px;
}

.contact_container h2{
    color: var(--container-color);
    font-size: 1.2rem;
}

.contact_container p{
    margin-bottom: 2rem;
    font-size: .9rem;
}

.contact_container a{
    color: var(--accent-color-alt);
}

.contacth2{
    margin-bottom: 1rem;
}

.contact_form{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.contact_group{
    gap: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.contact__input{
    font-family: 'Poppins', sans-serif;
    font-size: .8rem;
    line-height: 1.8rem;
    letter-spacing: .08rem;
    width: 100%;
    background-color: transparent;
    padding: .5rem;
    border: 1px solid var(--container-color);
    border-radius: 4px;
    background-color: #fff;
}

.contact_form textarea{
    height: 15rem;
    resize: none;
    font-size: .8rem;
}

.contact_message{
    height: 1rem;
}

.contact_button{
    align-self: flex-start;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform .2s;
    margin-bottom: 5rem;
}

.locatie{
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: column;
}

.flex{
    padding-right: 1rem;
}

.locatie_frame{
    margin-top: 2rem;
    border-radius: 10px;
    width: 100%;
    height: 25rem;
    margin-bottom: -.4rem;
}
/*--=========================================================--*/




/*--======================== FOOTER ========================--*/
.footer{
    background-color: var(--accent-color);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer_content{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo_box_footer{
    width: min-content;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.logo_icon_footer{
    background-color: #fff;
    border-radius: 50% 50% 50% 5%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: .4rem;
    transition: background-color .3s;
}

.logo_icon_footer span{
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-right: .1rem;
    transition: color .3s;
}

.logo_box_footer h1{
    font-weight: 800;
    color: #fff;
    font-size: 1.5rem;
    transition: color .3s;
}

.logo_box_footer h1 span{
    font-weight: 300;
    color: #fff;
    margin-top: -1rem;
    transition: color .3s;
}

.footer_1 p, .footer_2 p, .footer_3 p{
    text-align: center;
    color: #fff;
    padding: .3rem;
    font-size: 1rem;
}

.footer_1 h1, .footer_2 h1, .footer_3 h1{
    text-align: center;
    color: #fff;
    padding: .3rem;
}

.footer_1, .footer_2, .footer_3{
    max-width: 350px;
    flex: 1;
}

.lijn{
    height: 1px;
    width: 100%;
    background-color: #fff;
    margin: 2rem 0;
}

.copyright{
    color: #fff;
    margin-top: 4rem;
    text-align: center;
}


/*--======================== HULP OP AFSTAND ========================--*/
.hulp-op-afstand_h1{
    margin-bottom: 2rem;
}

.download{
    height: 7rem;
    width: 20rem;
    background-image: linear-gradient(#ffd182, #fba100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    font-weight: 600;
    font-size: 2rem;
    border-radius: 20px;
    transition: .2s;
}

.download i{
    padding-left: .4rem;
}

.download_text{
    font-size: 1rem;
}

.download:hover{
    transform: translateY(-.25rem);
}
/*--=========================================================--*/


/*--======================== PLASJE ========================--*/
.plasje{
    background-color: var(--accent-color);
    transition: background-color .5s;
    width: 100%;
    font-size: .9rem;
    padding: 1rem;
    border-top: 1px solid #fff ;
    cursor: pointer;
}

.plasje:hover{
    background-color: var(--container-color);
}

.plasje p{
    color: #fff;
    text-align: center;
}

.fat{
    font-weight: 600;
}
/*--=========================================================--*/




/*--======================== BEL NU ========================--*/
.bel_nu{
    position: fixed;
    display: block;
    bottom: 2rem;
    right: 2rem;
}

.bel_nu a{
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 2rem;
    border-radius: 500px;
    box-shadow: 0px 0px 10px #00000068;
    transition: scale .2s;
}

.telefoon{
    display: flex;
}

.koptelefoon{
    display: none;
}
/*--========================================================--*/




/*--=================== MEDIA QUERIES ===================--*/
@media screen and (max-width: 1023px) {
    .front_page_btn i{
        display: none;
    }

    .telefoon{
        scale: 1.2;
        animation-name: telefoon;
        animation-duration: 10s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }

    .telefoon::before{
        content: '';
        position: absolute;
        background-color: #fff;
        width: 2rem;
        height: 2rem;
        border-radius: 200px;
        z-index: -2;
        animation-name: grow;
        animation-duration: 4s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-out;
    }
    .telefoon::after{
        content: '';
        position: absolute;
        background-color: var(--accent-color);
        width: 3rem;
        height: 3rem;
        border-radius: 200px;
        z-index: -1;
    }
}

@keyframes grow{
    0%{transform: scale(1); opacity: 1;}
    70%{transform: scale(2.5); opacity: 0;}

    100%{opacity: 0;}
}

@keyframes telefoon{
    0%{transform: rotate(-2deg);}
    0.5%{transform: rotate(2deg);}
    1%{transform: rotate(-5deg);}
    1.5%{transform: rotate(5deg);}
    2%{transform: rotate(-7deg);}
    2.5%{transform: rotate(7deg);}
    3%{transform: rotate(-10deg);}
    3.5%{transform: rotate(10deg);}
    4%{transform: rotate(-15deg);}
    4.5%{transform: rotate(15deg);}
    5%{transform: rotate(-10deg);}
    5.5%{transform: rotate(10deg);}
    6%{transform: rotate(-10deg);}
    6.5%{transform: rotate(15deg);}
    7%{transform: rotate(-15deg);}
    7.5%{transform: rotate(10deg);}
    8%{transform: rotate(-10deg);}
    8.5%{transform: rotate(15deg);}
    9%{transform: rotate(-20deg);}
    9.5%{transform: rotate(10deg);}
    10%{transform: rotate(-10deg);}
    10.5%{transform: rotate(10deg);}
    11%{transform: rotate(-15deg);}
    11.5%{transform: rotate(10deg);}
    12%{transform: rotate(-10deg);}
    12.5%{transform: rotate(10deg);}
    13%{transform: rotate(-10deg);}
    13.5%{transform: rotate(15deg);}
    14%{transform: rotate(-10deg);}
    14.5%{transform: rotate(10deg);}
    15%{transform: rotate(-5deg);}
    15.5%{transform: rotate(5deg);}
    16%{transform: rotate(-2deg);}
    16.5%{transform: rotate(2deg);}
    17%{transform: rotate(0deg);}
}

@media screen and (min-width: 700px) {
    .merken_lijst{
        grid-auto-columns: calc(100% / 2);
    }

    .dienst_box{
        max-width: 300px;
    }

    .contact_container{
        padding: 1.5rem;
    }

    .welkom_container{
        padding: 1.5rem;
    }

    .reviews{
        padding: 1.5rem;
    }
}

@media screen and (min-width: 800px) {
    .prijs_content{
        flex-direction: row;
        gap: 2rem;
        align-items: flex-start;
    }

    .locatie{
        flex-direction: row;
        gap: 1.5rem;
    }

    .flex{
        max-width: 300px;
    }
}

@media screen and (min-width: 1023px) {

    /*--======================== HEADER ========================--*/
    header{
        height: 7rem;
    }

    .hide_header{
        top: -7rem;
    }

    .logo_icon{
        width: 3.2rem;
        height: 3.2rem;
    }
    
    .logo_icon span{
        font-size: 1.8rem;
    }
    
    .logo_box h1{
        font-size: 1.8rem;
    }

    .menu_button{
        display: none;
    }

    .menu{
        position: relative;
        width: fit-content;
        height: fit-content;
        top: 0;
        z-index: 1;
    }
    
    .nav_list{
        background-color: transparent;
        width: fit-content;
        height: fit-content;
        flex-direction: row;
        opacity: 1;
        gap: 3rem;
    }

    .link_line{
        width: 0%;
        height: 4px;
        background-color: var(--accent-color);
        transition: width .2s;
        transform: translateY(-2px);
    }
    
    .nav_list a{
        color: var(--accent-color);
        font-size: 1rem;
        font-weight: 600;
        display: grid;
    }

    .nav_list p{
        color: var(--accent-color);
        font-size: 1rem;
        font-weight: 600;
        display: grid;
    }

    .nav_list a:hover .link_line{
        width: 100%;
    }

    .active{
        text-decoration: underline 4px;
    }

    .maakafspraak{
        display: none;
    }

    /*--======================== FRONT PAGE ========================--*/
    .dark{
        padding: 12rem 1rem 6rem;
        height: 100%;
    }

    .front_page{
        box-shadow: 0px 0px 30px #0000008c;
    }

    .front_page_1{
        transform: translateX(2.5rem);
    }

    .front_page_content{
        max-width: 1200px;
    }

    .front_page_btn:hover{
        background-color: var(--accent-color);
        color: #fff;
    }

    .front_page_btn:hover i{
        transform: translateX(.65rem);
        background-color: #fff;
        color: var(--accent-color);
    }



    /*--======================== WELKOM ========================--*/
    .prijs_afspraak:hover{
        background-color: var(--accent-color);
    }

    .welkom_rechts{
        display: flex;
    }

    .welkom_container{
        flex-direction: row;
    }

    .welkom_rechts2 img{
        padding: 1rem 0rem 1rem 0;
        margin-top: 0;
    }
    
    .welkom_links p{
        padding-right: 2rem;
    }

    .welkom_btn:hover i{
        transform: translateX(.45rem);
    }

    /*--======================== DIENSTEN ========================--*/
    .ideaal_box{
        max-width: 360px;
        padding: 1rem;
        padding-bottom: 1rem;
    }

    .btn_diensten:hover{
        background-color: var(--button-color);
    }

    .merken_lijst{
        grid-auto-columns: calc(100% / 3);
        max-width: 1120px;
    }

    /*--======================== IDEAAL VOOR ========================--*/
    .dienst_box{
        max-width: 360px;
    }

    .maakafspraak2:hover{
        animation-name: bounce;
        animation-duration: 1s;
        animation-iteration-count: infinite;
    }

    .switch{
        order: 1;
        padding-left: 2rem;
    }
    /*--======================== CONTACT ========================--*/
    .contact_group{
        flex-direction: row;
    }

    .contact_button:hover{
        transform: translateY(-.5rem);
    }

    /*--======================== FOOTER ========================--*/
    .footer_content{
        width: 100%;
        max-width: 1100px;
        justify-content: space-around;
        flex-direction: row;
    }

    .lijn{
        display: none;
    }

    /*--======================== BEL NU ========================--*/
    .bel_nu a:hover{
        scale: 1.15;
    }

    .telefoon{
        display: none;
    }
    
    .koptelefoon{
        display: flex;
    }
}

@media screen and (min-width: 1194px) {
    .mobile{
        display: none;
    }

    .desktop{
        display: inline;
    }
}

@media screen and (min-width: 1240px) {
    .merken i{
        display: block;
    }
}

@keyframes bounce{
    0%{transform: translateY(0rem);}
    20%{transform: translateY(-.5rem);}
    100%{transform: translateY(0rem);}
}