html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background: #bad405;
}

*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

a {
    text-decoration: none;
    transition: all 0.1s ease-in-out;
}

.header {
    position: absolute;
    top: 0;
    background: #fff;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.header-items {
    gap: 1rem;
    justify-content: center;
    display: flex;

}

.header .logo {
    width: 100%;
    height: auto;
    max-width: 250px;
}

.container {
    display: flex;
    margin-top: 8rem;
    padding: 1rem 2rem;
}

.page-home .container,
.page-gebruikersapp .container {
    justify-content: center;
    align-items: center;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-image: url("../images/slimme-huismeester-bg.jpg");
    background-attachment: fixed;
    background-size: cover;
}

.bg-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.btn {
    display: flex;
    align-items: center;
    border: 2px solid #bad405;
    background: #bad405;
    color: #fff;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    font-size: 1.5rem;
    text-decoration: none;
    transition: 0.2s all ease-in-out;
    font-weight: 700;
}

.btn:hover {
    background: #fff;
    color: #bad405;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transform: scale(1.025);
}

.btn-wit {
    border: 2px solid #ffffff;
    background: #ffffff;
    color: #bad405;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.btn .icon {
    width: 32px;
    margin-right: 0.5rem
}

/*
    HOME
 */

.footer-home {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    bottom: 0;
    padding: 2rem;
    background: #bad405;
    gap:2rem;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.footer-home .highlight {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
}

/*
    FAQ PAGE
 */
.page-faq .container {
    gap: 1rem;
}

.page-faq .left {
    width: 55%;
    background: #ffffff;
    padding: 2.7rem;

}

.page-faq h1{
    margin-bottom: 1rem;
}

.page-faq .right {
    width: 45%;
    padding: 2rem;
    border: 5px solid white;


}

.page-faq label {
    font-weight: bold;
    display: block;
}
.page-faq .faq-item {
    border-bottom: 1px solid #bad405;
}

.page-faq .heading-icon{
    width: 23px;
}

.page-faq .faq-item a {
    color: #000;
    padding: 0.5rem 0;
    display: block;
}
.page-faq .faq-item a .faq-heading {
    display: flex;
    justify-content: space-between;
    gap:1rem;
}
.page-faq .faq-item a .faq-heading .arrow {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.page-faq .faq-item .text {
    font-size: 1.2rem;
    font-weight: normal;
    padding: 0.5rem 0 1rem 0;
}

.page-faq input,
.page-faq select,
.page-faq textarea {
    padding: 1rem;
    border: 0;
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    width: 100%;
    font-size: 1rem;
}

.page-faq input[type=submit] {
    width: auto;
    background: #000;
    color: #fff;

}

.page-faq input[type=submit]:hover {
    opacity: 0.5;
}

/*
    Gebruikersapp
 */

.hotspots {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5vw;
}

.hotspots a {
    display: block;
    background: #bad405;
    color: #fff;
    padding: 1rem;
    border-radius: 1rem;
    font-size: 1.1rem;
    width: 18vw;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);;
}

.hotspots a .top {
    display: flex;
    gap: 1.5vw;
    align-items: center;
    height: 5.5rem;
}


.hotspots a .top svg {
    width: 5vw;
    height: auto;
}

.hotspots a .top .text-center {
    width: 100%;
    text-align: center;
}

.hotspots a .bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    color: #000;
}

.hotspots a .bottom svg
{
    margin-top: 0.5rem;
    width: 50%;
    height: auto;
}


.hotspots a:hover {
    transform: scale(1.025);
}


/*
    MOBILE
 */

@media only screen and (max-width: 1024px) {

    .button-text{
        display: none;

    }

    .hotspots a .top {
        display: flex;
        gap: 8vw;
        align-items: center;
        height: 5.5rem;
    }

    .btn .icon {
        width: 40px;
        margin-left: 0.5rem;

    }

    .hotspots a .top svg {
        width: 10vw;
        height: auto;
        text-align: center;
    }

    .header {
        padding: 1rem;
    }

    .header .logo {
        max-width: 150px;
        padding-right: 1rem;
    }

    .container {
        flex-wrap: wrap;
    }

    .container .left,
    .container .right {
        width: 100%;
    }

    .btn {
        padding: 0.25rem;
        font-size: 1.25rem;
    }

    .footer {
        font-size: 1.5rem;
    }

    .page-gebruikersapp .container {
        padding: 9rem 0;
        overflow: auto;
    }

    .hotspots {
        flex-wrap: wrap;
    }

    .hotspots a {
        width: 70vw;
    }
    .btn-footer{
        width:100%;
        display: flex;
        justify-content: center;
    }
    .btn-footer .btn{
        width: fit-content;
    }
    .footer-home{
      flex-wrap: wrap;
    }

}