@charset "UTF-8";
/*	General	*/
html, body {
  min-height: 100vh;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  background-color: #F5FEFF;
  line-height: 1.6rem;
  color: #424242;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}

main {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.font-weight-medium {
  font-weight: 500;
}

/*	Buttons	*/
.btn {
  border-radius: 0.25rem;
  border: 0;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn.btn-primary:not(:disabled):not(.disabled), .btn.btn-primary:not(:disabled):not(.disabled):active {
  background: linear-gradient(135deg, #f6921e, #d87809);
  backface-visibility: hidden;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
}
.btn.btn-primary:not(:disabled):not(.disabled) i, .btn.btn-primary:not(:disabled):not(.disabled):active i {
  font-size: 1.4rem;
}
.btn.btn-primary:not(:disabled):not(.disabled):hover, .btn.btn-primary:not(:disabled):not(.disabled):active:hover {
  transform: scale(1.025);
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
}
.btn.btn-secondary:not(:disabled):not(.disabled), .btn.btn-secondary:not(:disabled):not(.disabled):active {
  background: #FFF;
  backface-visibility: hidden;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  color: #424242;
}
.btn.btn-secondary:not(:disabled):not(.disabled) i, .btn.btn-secondary:not(:disabled):not(.disabled):active i {
  color: #F6921E;
  font-size: 1.4rem;
}
.btn.btn-secondary:not(:disabled):not(.disabled):hover, .btn.btn-secondary:not(:disabled):not(.disabled):active:hover {
  background: #F6921E;
  color: #FFFFFF;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.25);
}
.btn.btn-secondary:not(:disabled):not(.disabled):hover i, .btn.btn-secondary:not(:disabled):not(.disabled):active:hover i {
  color: #FFFFff;
}
.btn.btn-link::after {
  display: inline-block;
  content: "";
  font-family: "Font Awesome 5 Pro";
  font-weight: 500;
  margin-left: 0.5rem;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn.btn-link:hover {
  text-decoration: none;
  color: inherit !important;
}
.btn.btn-link:hover::after {
  transform: translateX(3px);
}

/*	Header	*/
header {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 150px;
  background: linear-gradient(-40deg, rgba(0, 147, 211, 0.9), rgba(0, 104, 168, 0.9)), url("../img/header-background.jpg");
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  overflow: hidden;
}
header.header-lg {
  height: 750px;
}
header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1rem;
  background-image: url("../img/marker.svg");
  background-size: cover;
  width: 425px;
  height: 550px;
  opacity: 0.1;
  transform: rotate(12deg);
}
header .container {
  display: flex;
  align-items: center;
  flex: 1 1 100%;
  z-index: 2;
}
header h1 {
  font-weight: 700;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
header p {
  margin-bottom: 2.5rem;
}
header .btn.btn-link {
  color: #FFFFff !important;
}

.navbar .navbar-toggler {
  width: 50px;
  height: 50px;
  color: #FFFFff;
  background: linear-gradient(135deg, #f6921e, #d87809);
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  outline: 0 !important;
}
@media screen and (max-width: 768px) {
  .navbar .navbar-brand {
    max-width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .navbar .navbar-collapse {
    margin-top: 1.5rem;
  }
}
.navbar .navbar-nav .nav-item .nav-link {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  color: #FFFFff;
  font-weight: 600;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  text-align: center;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  color: #F6921E;
}

/*	Content	*/
.content {
  padding: 5rem 15px 7.5rem 15px;
}
.content h2 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

a {
  color: #0093D3;
}
a:hover {
  color: #F6921E;
}

.cta-bar {
  padding: 1rem 0;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
}
.cta-bar .btn.btn-primary {
  box-shadow: none !important;
}
.cta-bar .btn.btn-primary:hover {
  background-color: #F5FEFF !important;
  transform: none !important;
  box-shadow: none !important;
  filter: brightness(95%);
}

/*	Uitleg	*/
.uitleg {
  padding: 2rem;
  background: linear-gradient(135deg, #f6921e, #d87809);
  transform: translateY(2rem);
  color: #FFFFff;
}
.uitleg h2 {
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}
.uitleg h4 {
  display: inline;
  font-size: 1.15rem;
  font-weight: 500;
}
.uitleg p {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}
.uitleg a {
  color: #FFFFff;
  text-decoration: underline;
}
.uitleg span.uitleg-nummer {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 0.25rem;
  background: #FFFFff;
  color: #424242;
  font-weight: 600;
  -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.15);
  margin-right: 0.5rem;
}

/*	CTA	*/
section.cta {
  padding: 7rem 0 5rem 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1)), url("../img/cta-background.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}
section.cta h1, section.cta h2, section.cta h3, section.cta h4, section.cta h5, section.cta h6 {
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.25);
}

/*	Footer	*/
footer {
  background: linear-gradient(-40deg, rgba(0, 147, 211, 0.9), rgba(0, 104, 168, 0.9));
  padding: 5rem 0 1rem 0;
  color: #ffffff;
  font-size: 0.9rem;
}
footer a {
  color: #ffffff !important;
}

/*	Gemeente picker	*/
.gemeente-letter-selector {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 0.25rem;
  background: #FFFFff;
  color: #424242;
  font-weight: 600;
  margin-right: 0.5rem;
  border: 1px solid #eee;
  text-decoration: none !important;
}
.gemeente-letter-selector.active {
  background: linear-gradient(135deg, #f6921e, #d87809);
  color: #FFF;
}

.gemeente-card .gemeente-item {
  background-color: #FFF;
  padding: 1rem;
  margin: 1rem 0;
  border: 1px solid #eee;
  border-radius: 0.25rem;
}
.gemeente-card .gemeente-item .gemeente-link {
  color: #424242;
  font-weight: 500;
  font-size: 1.25rem;
}

/*# sourceMappingURL=site-overall.css.map */
