html {
  font-size: 14px;
}

/*@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}*/

html {
  position: relative;
  min-height: 100%;
}

body {
 
}




body {
    color: #365cb3;
}

.navbar-nav a {
    margin: 0 1.5rem;
    color: #365cb3 !important;
}

footer {
    background-color: white;
    width: 100%;
    z-index: 10000;
}

    footer .footer-color {
        background-color: #f5f8f9;
    }

    footer a {
        color: unset;
        text-decoration: none;
    }

    footer .social-media-button {
        height: 42px;
        width: 42px;

        display: inline-block;
        text-align: center;
        text-decoration: none;
        background-color: #4fa9c9;
        border-radius: 0.75rem;
        color: white;
        font-weight: bold;
        font-size: 2rem;
    }
    

        footer .social-media-button:hover {
            opacity: 0.7;
        } 

            footer .social-media-button .fa-facebook-f {
                vertical-align: bottom;
            }



.btn-primary {
    background-color: #f9456d;
    border-color: #f9456d;
    color: white !important;
}

.insurance {
    background-color: #f5f6fa;
}

.banner-container {
    position: relative;
    z-index: 1;
    /*height: 25rem;*/
    height: 30rem;
    margin-top: -3rem;
}

    .banner-container .banner-container-image {
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        height: 20rem;
        right: 0;
        background-position-y: 25%;       
        background-size: cover;
        opacity: .6;
        width: 100%;
        height: 100%;
    }

        .banner-container .banner-container-image.home-image {
            background-image: url('../img/header.jpg');
        }
        .banner-container .banner-container-image.spreekkamer-image {
            background-position-y: 60%;
            background-image: url('../img/header-spreekkamer.jpg');
        }

.video-placeholder {

    border: 0.3rem solid white;
}
    .spreekkamer-video-placeholder img {
        width: 100%;
        max-height: 100%;
    }


.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #f9456d; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.img-responsive {
    max-width: 100%;
}