body, html {
    height: 100%;
    font-size: 100%;
}

/* The hero image */
.hero-image {
    /* Use "linear-gradient" to add a darken background effect to the image (photographer.jpg). This will make the text easier to read */
    background-image: /*linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), */url('/images/brug.jpg');

    /* Set a specific height */
    height: 33%;

    /* Position and center the image to scale nicely on all screens */
    background-position: 0 70%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

h1 {
    padding-top: 40px;
    color: #c35127; 
}

.introductie {
    margin-bottom: 40px;
}

.introductie p {
    text-align: justify;
}

.introductie a:link {
    color: #C35127;
}

.introductie a:visited {
    color: #C35127;
}

.introductie a:hover p {
    color: #C35127;
    text-decoration: underline;
}

.details {
    color: #C35127;
}

.linkedin {
    color: #C35127;
}

/* -- NAVBAR COLOR SETTINGS -- */ 

/* START BACKGROUND */
.navbar {
    background-color: unset;
}

/* START TEXT */
.navbar .navbar-nav .nav-item .nav-link {
    color: #C35127;
}

/* START HOVER */
.navbar .navbar-nav .nav-item .nav-link:hover {
    opacity: 0.5;
}


/* SCROLLED BACKGROUND */
.navbar.scrolled {
    background-color: white;
}

/* SCROLLED TEXT */
.navbar.scrolled .navbar-nav .nav-item .nav-link {
    color: #C35127;
}

/* SCROLLED HOVER */
.navbar.scrolled .navbar-nav .nav-item .nav-link:hover {
    opacity: 0.5;
}

/* Modified Codepen 'Contact Form' by Stefan Rusu */
textarea {
	resize: none;
}
.form-label {
	font-size: 20px;
	color: #5e9bfc;
	margin: 0;
	display: block;
	opacity: 1;
	-webkit-transition: .333s ease top, .333s ease opacity;
	transition: .333s ease top, .333s ease opacity;
}
.form-control {
	border-radius: 0;
	border-color: #ccc;
   	border-width: 0 0 2px 0;
   	border-style: none none solid none;
    box-shadow: none;
    margin-bottom: 30px;
    background-color: #f5f8fa;
}
.form-control:focus {
	box-shadow: none;
    border-color: #C35127;
    background-color: #f5f8fa;
}
.js-hide-label {
	opacity: 0; 	
}
.js-unhighlight-label {
	color: #999 
}
.btn-start-order {
	background: 0 0 #f5f8fa;
    border: 1px solid #2f323a;
    border-radius: 3px;
    color: #2f323a;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: inherit;
    margin: 30px 0;
    padding: 10px 50px;
    text-transform: uppercase;
    transition: all 0.25s ease 0s;
}
.btn-start-order:hover,.btn-start-order:active, .btn-start-order:focus {
	border-color: #C35127;
	color: #C35127;
}
/* End of codepen code */

h2 {
    margin-top: 100px;
}

hr {
    padding-top: 50px;
    border-width: 3px;
    border-color: #C35127;
}

/* Attempt at making visitekaartje */
.contactdetails {
    /*flex: 60%;*/
    width: 500px;
    text-align: center;
    height: 250px;
    color: white;
    font-size: 1.3em;
    margin-left: 50px;
    margin-right: 50px;
}

.contactrow {
    /*flex:80%;*/
    width: 400px; 
    margin-left: 50px;
    margin-right: 50px;
}

.rood {
    background-color: #C35127;
}

.grijs {
    background-color: #6d6e71;
    padding-top: 10px;
}

.grijs a {
    color: white;
}

.linkedin {
    display: flex;
    justify-content: center;
    align-items: center;
}

.groter {
    font-size: 1.5em;
}

.contactpagina {
    display: flex;
}

.form {
    width: 100%;
}

.button {
    --offset: 10px;
    --border-size: 2px;
    display: block;
    position: relative;
    /*padding: 1.5em 3em;*/
    padding: 1em 1.5em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    background: transparent;
    color: #C35127;
    text-transform: uppercase;
    /*letter-spacing: 0.25em;*/
    letter-spacing: 0.15em;
    outline: none;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.8em;
    border-radius: 0;
    box-shadow: inset 0 0 0 var(--border-size) currentcolor;
    transition: background 0.8s ease;
    margin-top: 70px;
    text-decoration: none;
}
.button:hover {
    background: rgba(100, 0, 0, 0.03);
    text-decoration: none;
}
.button__horizontal, .button__vertical {
    position: absolute;
    top: var(--horizontal-offset, 0);
    right: var(--vertical-offset, 0);
    bottom: var(--horizontal-offset, 0);
    left: var(--vertical-offset, 0);
    transition: transform 0.8s ease;
    will-change: transform;
}
.button__horizontal::before, .button__vertical::before {
    content: "";
    position: absolute;
    border: inherit;
}
.button__horizontal {
    --vertical-offset: calc(var(--offset) * -1);
    border-top: var(--border-size) solid currentcolor;
    border-bottom: var(--border-size) solid currentcolor;
}
.button__horizontal::before {
    top: calc(var(--vertical-offset) - var(--border-size));
    bottom: calc(var(--vertical-offset) - var(--border-size));
    left: calc(var(--vertical-offset) * -1);
    right: calc(var(--vertical-offset) * -1);
}
.button:hover .button__horizontal {
    transform: scaleX(0);
}
.button__vertical {
    --horizontal-offset: calc(var(--offset) * -1);
    border-left: var(--border-size) solid currentcolor;
    border-right: var(--border-size) solid currentcolor;
}
.button__vertical::before {
    top: calc(var(--horizontal-offset) * -1);
    bottom: calc(var(--horizontal-offset) * -1);
    left: calc(var(--horizontal-offset) - var(--border-size));
    right: calc(var(--horizontal-offset) - var(--border-size));
}
.button:hover .button__vertical {
    transform: scaleY(0);
}

@media screen and (max-width: 991px) {
    .contactrow {
        display: inline-block;
        width: 600px;
    }
    .contactdetails {
        display: inline-block;
    }
    .contactpagina {
        display: block;
        text-align: center;
    }
}

@media screen and (max-width: 767px) {
    .contactrow {
        width: 450px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .contactdetails {
        width: 450px;
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media screen and (max-width: 575px) {
    .contactrow {
        width: 350px;
    }
    .contactdetails {
        width: 350px;
    }
}

@media screen and (max-width: 447px) {
    .contactrow {
        width: 300px;
    }
    .contactdetails {
        width: 300px;
    }
}
/*
@media screen and (max-width: 367px) {
    .contactrow {
        width: 275px;
    }
    .contactdetails {
        width: 275px;
    }
}*/