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: 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;
}

/* -- 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;
}

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

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

body {
  font-family: "Raleway", sans-serif;
  background: #f6f9fa;
}

h1 {
  color: #C35127;
  text-align: center;
}

a {
  color: #ccc;
  text-decoration: none;
  outline: none;
}

/*Fun begins*/

.tab_container {
  width: 100%;
  margin: 0 auto;
  padding-top: 20px;
  position: relative;
}

input,
section {
  clear: both;
  padding-top: 10px;
  display: none;
}

label {
  font-weight: 700;
  font-size: 1.5em;
  display: block;
  float: left;
  width: 50%;
  padding: 1em;
  color: black;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  background: #f0f0f0;
}

#tab1:checked ~ #content1,
#tab2:checked ~ #content2 {
  display: block;
  padding: 20px;
  background: #f6f9fa;
  color: black;
  width: 90%;
  margin-left: 5%;
  margin-right: 5%;
}

.tab_container .tab-content p,
.tab_container .tab-content h3 {
  -webkit-animation: fadeInScale 0.3s ease-in-out;
  animation: fadeInScale 0.3s ease-in-out;
  line-height: 2em;
}

.tab_container .tab-content h3 {
  text-align: center;
  margin-top: 40px;
  margin-top: 20px;
  font-size: 2em;
  font-family: "Raleway", sans-serif;
  color: #C35127;
}

.tab_container [id^="tab"]:checked + label {
  background: white;
  -webkit-box-shadow: inset 0 3px #C35127;
          box-shadow: inset 0 3px #C35127;
}

.tab_container [id^="tab"]:checked + label .fa {
  color: #C35127;
}

label .fa {
  font-size: 1.3em;
  margin: 0 0.4em 0 0;
}

/*Media query*/

@media only screen and (max-width: 900px) {
  /*label span {
    display: none;
  }*/

  .tab_container {
    width: 98%;
  }
}

/*Content Animation*/

@-webkit-keyframes fadeInScale {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInScale {
  0% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    opacity: 0;
  }

  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.no_wrap {
  text-align: center;
  color: #f5f8fa;
}

.link {
  text-align: center;
}

strong {
  color: #C35127;
}

.tab-image {
  background-image: url("/images/flat.jpg");
  width: 90%;
  height: 320px;
  /*height: 320px;*/
  margin-right: 5%;
  margin-left: 5%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

.tab-image2 {
  background-image: url("/images/trap.jpg");
}

.kolommen {
  -webkit-column-count: 2;
          column-count: 2;
  -webkit-column-width: 300px;
          column-width: 300px;
  -webkit-column-gap: 50px;
          column-gap: 50px;
}

.quote {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 1.5em;
  line-height: 1.5em;
  padding-bottom: 40px;
  padding-top: 40px;
  color: #C35127;
  margin-left: 10%;
  margin-right: 10%;
}

.quote footer {
  font-family: "Raleway", sans-serif;
  font-size: 0.7em;
  font-weight: 400;
  color: #C35127;
  float: right;
  width: 100%;
  text-align: right;
}

.quote footer:before {
  content: '\2015';
}

.quote:before {
  content: '\201C';
  font-size: 2em;
}

.quote:after {
  content: '\201D';
  /*
        position: absolute;
        top: 2em;
        right: 0;*/
  font-size: 2em;
  /*
        font-style: italic;
        color: black;
        z-index: -1;*/
}

@media screen and (max-width: 400px) {
  .quote {
    margin-left: 0%;
    margin-right: 0%;
  }
}

@media screen and (max-width: 991px) {
  label {
    font-size: 1.2em;
  }
}

@media screen and (max-width: 767px) {
  label {
    font-size: 1em;
  }
}

@media screen and (max-width: 550px) {
  .tab_container .tab-content h3 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 534px) {
  label {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 437px) {
  label {
    font-size: 0.6em;
  }

  .tab_container .tab-content h3 {
    font-size: 1.2em;
  }
}

