/* -- Font family -----------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Enriqueta:wght@400;700&family=Fira+Sans:wght@300;400;700;900&display=swap');

/* -- Font weights ----------------------------*/
.text-300i { font-family: 'Enriqueta', serif; font-weight: 300; }
.text-900i { font-family: 'Enriqueta', serif; font-weight: 700; }

.text-300 { font-weight: 300; }
.text-400 { font-weight: 400; }
.text-700 { font-weight: 700; }
.text-900 { font-weight: 800; }

.letter-spacing {
  letter-spacing: .05em;
}

/* -- Font modifiers --------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  display: block;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: 'Fira Sans', sans-serif;
  font-weight: 300;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #114256;
}

html, body {
  font-size: 14px;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media all and (min-width: 992px) {
  html, body {
    font-size: 15px;
  }
}
@media all and (min-width: 1320px) {
  html, body {
    font-size: 16px;
  }
}
@media all and (min-width: 1700px) {
  html, body {
    font-size: 18px;
  }
  .container {
    max-width: 1520px;
  }
}

/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* -- Buttons -------------------------------*/
.btn {
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.6rem 1.6rem;
  border-radius: 3rem;
  border: none;
}

.btn--primary {
  background: #114256;
  color: #fff;
}

.btn--primary i {
  margin-left: 0.25rem;
  color: #8BC9AC;
}

.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
  background: #15526b !important;;
  color: #fff !important;;
}

.btn--secondary {
  background: #8BC9AC;
  color: #fff;
}

.btn--secondary i {
  margin-left: 0.25rem;
  color: #114256;
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active {
  background: #9cd1b8 !important;;
  color: #fff !important;;
}

.btn--tertiary {
  background: #05252F;
  color: #fff;
}

.btn--tertiary i {
  margin-left: 0.25rem;
  color: #8BC9AC;
}

.btn--tertiary:hover,
.btn--tertiary:focus,
.btn--tertiary:active {
  background: #083240 !important;;
  color: #fff !important;;
}

/* -- Links ---------------------------------*/
.link--white {
  color: #fff;
}

.link--primary {
  color: #114256;
}
.link--primary:hover {
  color: #8BC9AC;
}

.link--secondary {
  color: #8BC9AC;
}

/* -- Backgrounds ---------------------------*/
.bcg--white {
  background: #fff;
}

.bcg--light {
  background: #EDF6F1;
}

.bcg--primary {
  background: #114256;
}

.bcg--secondary {
  background: #8BC9AC;
}

/* -- Colors --------------------------------*/
.clr--white {
  color: #fff;
}

.clr--primary {
  color: #114256;
}

.clr--secondary {
  color: #8BC9AC;
}

/* -- Images --------------------------------*/
.img-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

/* -- Images --------------------------------*/
.img-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

/* -- Lists ---------------------------------*/
.usps-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 1.5rem;
  grid-row-gap: 1rem;
}

.usp {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}
.usp__visual {
  flex-shrink: 0;
}
.usp__text {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  line-height: 1.3;
}

@media all and (min-width: 768px) {
  .usps-list {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media all and (min-width: 1500px) {
  .usps-list {
    display: flex;
    justify-content: space-between;
  }
}

/* -- Corners -------------------------------*/
.corner--top-right { border-radius: 0 5rem 0 0; }
.corner--bottom-right { border-radius: 0 0 5rem 0; }
.corner--bottom-left { border-radius: 0 0 0 5rem; }
.corner--top-left {  border-radius: 5rem 0 0 0; }

@media all and (min-width: 992px) {
  .corner--top-right { border-radius: 0 8rem 0 0; }
  .corner--bottom-right { border-radius: 0 0 8rem 0; }
  .corner--bottom-left { border-radius: 0 0 0 8rem; }
  .corner--top-left {  border-radius: 8rem 0 0 0; }
}

@media all and (min-width: 1700px) {
  .corner--top-right { border-radius: 0 12rem 0 0; }
  .corner--bottom-right { border-radius: 0 0 12rem 0; }
  .corner--bottom-left { border-radius: 0 0 0 12rem; }
  .corner--top-left {  border-radius: 12rem 0 0 0; }
}

/* -- Lists ---------------------------------*/
.list-usp {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-usp li + li {
  margin-top: 1rem;
}

.list-usp li {
  position: relative;
  font-size: 1.25rem;
  color: #fff;
  padding-left: 60px;
  min-height: 48px;
}

.list-usp li i {
  position: absolute;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  left: 0;
  font-size: 1.25rem;
  width: 48px;
  height: 48px;
  line-height: 48px; 
  text-align: center;
  border-radius: 100%;
  background: #474775;
  margin-right: .5rem;
  -webkit-transition: all .5s;
  transition: all .5s;
}

/* -- Carousel ------------------------------*/
.owl-carousel .owl-dots {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.owl-slider .owl-dots {
  position: absolute;
  bottom: 7%;
}

.owl-carousel .owl-dots .owl-dot {
  display: block;
  width: 34px;
  height: 8px;
  background: #114256;
  border: 2px solid #114256;
  float: left;
  border-radius: .5rem;
}

.owl-slider .owl-dots .owl-dot {
  background: #fff;
  border: 2px solid #fff;
}

.owl-carousel .owl-dots .owl-dot:hover {
  border-color: #8BC9AC;
  background: #8BC9AC;
}

.owl-carousel .owl-dots .owl-dot + .owl-dot {
  margin-left: 6px;
}

.owl-carousel .owl-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot.active:hover {
  background: #8BC9AC;
  border-color: #8BC9AC;
}

.animated  {
  -webkit-animation-duration : 1000 ms  ;
  animation-duration : 1000 ms  ;
  -webkit-animation-fill-mode : both  ;
  animation-fill-mode : both  ;
}  

.owl-animated-out {
  z-index : 1 
}

.owl-animated-in {
  z-index : 0 
}

.fadeOut  {
  -webkit-animation-name : fadeOut  ;
  animation-name : fadeOut  ;
}  
@-webkit-keyframes  fadeOut  {
  0% {
    opacity : 1   ;
  }  
  100% {
    opacity : 0   ;
  }  
}
@keyframes  fadeOut  {
  0% {
    opacity : 1   ;
  }  
  100% {
    opacity : 0   ;
  }  
}

/* -- Navigation ------------------------------*/
#navigation {
  padding: 1.25rem 0;
  background: #fff;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  max-width: 160px;
}

.navbar-toggler, 
.navbar-toggler:active, 
.navbar-toggler:focus {
  width: 44px;
  text-align: center;
  outline: 0;
  background: #114256;
  border: none;
  box-shadow: none;
}

.navbar-toggler i {
  color: #fff;
}

.navbar-toggler[aria-expanded="true"] i:before {
  content: "\f00d";
}

.navbar-collapse {
  padding: 2rem 0;
}

@media (min-width: 1200px){
  .navbar-brand img {
    max-width: 200px;
  }
  
  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
    align-items: flex-end;
    flex-direction: column;
  }
  
  .navbar-expand-xl .navbar-collapse div {
    display: flex;
  }
  
  .navbar-collapse {
    padding: 0;
  }
}

#navigation .nav-link {
  font-weight: 700;
  text-transform: uppercase;
  color: #114256;
  font-size: 16px;
}

#navigation .nav-link:hover {
  color: #8BC9AC;
}

#navigation .active .nav-link {
  color: #8BC9AC;
}

/* -- Hero --------------------*/
#hero {
  position: relative;
  background-image: url("../images/hero-bcg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

#hero.frontpage {
  padding: 2.5rem 0;
}
#hero.frontpage .element {
  position: absolute;
}
#hero.frontpage .element--left {
  display: none;
}
#hero.frontpage .element--right {
  bottom: -2rem;
  right: 0;
  width: 36vw;
  height: 80%;
}
#hero.frontpage .element--right img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
  width: 100%;
  height: 100%;
}

#hero.subpage {
  height: 160px;
}
#hero.subpage .element {
  position: absolute;
}
#hero.subpage .element--left {
  top: 0;
  left: 0;
  width: 60vw;
  height: 120%;
}
#hero.subpage .element--left img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom left;
     object-position: bottom left;
  width: 100%;
  height: 100%;
}
#hero.subpage .element--right {
  bottom: -2rem;
  right: 0;
  width: 25vw;
  height: 100%;
}
#hero.subpage .element--right img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom right;
     object-position: bottom right;
  width: 100%;
  height: 100%;
}

.hero-logo {
  padding: 0 0 2.5rem 0;
}

.hero-content {
  padding: 2rem 0 3rem 0;
}
.hero-content__title {
  display: block;
  font-family: 'Enriqueta', serif;
  font-weight: 300;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #8BC9AC;
  margin-bottom: 1.5rem;
}
.hero-content__title strong {
  font-family: 'Enriqueta', serif;
  font-weight: 700;
  display: block;
  color: #ffffff;
}
.hero-content__subtitle {
  font-weight: 300;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
}

.ontwikkeling {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ontwikkeling__text {
  font-size: 0.8rem;
  text-align: right;
  line-height: 1.1;
}
.ontwikkeling__text strong {
  display: none;
}

.hero-content__label {
  position: absolute;
  right: 1rem;
  bottom: -40px;
}

.hero-content__label img {
  max-width: 140px;
}

@media all and (min-width: 768px) {
  .ontwikkeling__text {
    font-size: 0.7rem;
  }
  .ontwikkeling__text strong {
    display: block;
  }
  #hero.frontpage .element--left {
    display: block;
    top: 1rem;
    left: 0;
    width: 30vw;
    height: 100%;
  }
  #hero.frontpage .element--left img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center left;
       object-position: center left;
    width: 100%;
    height: 100%;
  }
  #hero.frontpage .element--right {
    display: none;
  }
  .hero-content {
    padding: 4rem 0;
  }
  .hero-content__title {
    font-size: 3rem;
  }
  .hero-content__subtitle {
    font-size: 1.5rem;
  }
  
  .hero-content__label {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
  }
  
  .hero-content__label img {
    max-width: 160px;
  }
  
}

@media all and (min-width: 992px) {
  .hero-content__label {
    right: 5rem;
  }

  .hero-content__label img {
    max-width: 180px;
  }
}

@media all and (min-width: 1200px) {
  #hero.subpage {
    height: 200px;
  }

  .hero__brand img {
    width: 260px;
  }
  #hero.frontpage .element--left {
    top: 2rem;
    height: 100%;
  }
  .hero-content {
    padding: 5rem 0;
  }
  .hero-content__title {
    font-size: 3.5rem;
  }
  
  .hero-content__label {
    right: 22%;
  }

  .hero-content__label img {
    max-width: 220px;
  }
}


@media all and (min-width: 1500px) {  
  .hero-content__label {
    right: 25%;
  }
}

/* -- Masthead ----------------------*/
#masthead-slider {
  position: relative;
  background: #114256;
  overflow: hidden;
}

#masthead-slider:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: #fff;
  z-index: 1;
}

.woningtype-template-default #masthead-slider:before {
  background: #EDF6F1;
}

#masthead-slider .container {
  position: relative;
  z-index: 5;
}

.masthead-slider-bcg {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 85%;
  background-image: url("../images/hero-bcg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.masthead-slider-bcg .element {
  position: absolute;
}
.masthead-slider-bcg .element--right {
  bottom: -6rem;
  right: -23rem;
  width: 50vw;
  height: 80%;
  z-index: 3;
}
.masthead-slider-bcg .element--right img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom left;
     object-position: bottom left;
  -webkit-transform: rotate(109deg);
  transform: rotate(109deg);
  width: 100%;
  height: 100%;
}


/* -- Extra woningtype ----------------------*/
.module-extratype {
  background: #8BC9AC;
  padding: 4.5rem 0;
}

/* -- Introductie ---------------------------*/
.module-introductie {
  position: relative;
  padding: 6rem 0;
}

.module-introductie.frontpage:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  max-width: 626px;
  height: 100%;
  pointer-events: none;
  background-image: url('../images/introductie-bcg.png');
  background-position: top right;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

@media all and (min-width: 768px) {
  .module-introductie.frontpage:after {
    width: 40%;
    max-width: 626px;
  }
}


/* -- Blokken -------------------------------*/
.module-blokken {
  position: relative;
}

.card {
  border: none;
  border-radius: 0;
}

.card .card-img {
  border-radius: 0;
}

.card .card-img-overlay {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 0;
}

.card .card-img-overlay a {
  margin-bottom: 1rem;
}

/* -- Plangebied ---------------------------*/
.module-plangebied {
  position: relative;
  padding: 4rem 0 0 0;
}

.kavel-grid {
  margin-top: 3rem;
  display: grid;
  grid-column-gap: .5rem; 
  grid-row-gap: 1.5rem; 
  grid-template-columns: repeat(2, 1fr);
}

.kavel__kleurlabel {
  margin-bottom: 1rem;
}

.kavel__woningtype {
  font-weight: 700;
  margin: 0;
}

.kavel__description {
  line-height: 1.4;
  display: block;
  font-weight: 700;
  font-size: .75rem;
  margin: 0;
}

.kavel__numbers {
  display: block;
  font-size: .75rem;
}

@media all and (min-width: 1400px) {
  .kavel-grid {
    grid-column-gap: 1.5rem; 
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -- Kavels --------------------------------*/
.module-kavels {
  position: relative;
  padding: 4rem 0;
  background: #ffffff;
}

.mapplic-tooltip-title {
  text-transform: uppercase;
  color: #114256 !important;
}

.mapplic-tooltip-content{
  overflow: hidden;
}

/* -- Beschikbaarheid ----------------------*/
.module-beschikbaarheid {
  position: relative;
  margin-top: -3.5rem;
}

/* -- iframe --------------------------------*/
.module-iframe {
  padding-top: 4rem;
  position: relative;
  background: rgb(237,246,241);
  background: -webkit-linear-gradient(bottom, rgba(237,246,241,1) 25%, rgba(255,255,255,1) 25%);
  background: -o-linear-gradient(bottom, rgba(237,246,241,1) 25%, rgba(255,255,255,1) 25%);
  background: linear-gradient(to top, rgba(237,246,241,1) 25%, rgba(255,255,255,1) 25%);
  overflow: hidden;
}

.home .module-iframe {
  background: rgb(237,246,241);
}

/* -- Downloads -----------------------------*/
.module-downloads {
  padding: 0 0 4rem 0;
}

.accordion-item {
  border-color: #EDF6F1;
}

.accordion-button {
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='114256'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.accordion-button:not(.collapsed) {
  color: #114256;
  background-color: #EDF6F1;
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='114256'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.list-downloads {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-downloads .download-clear {
  height: 16px;
}

  .list-downloads .download-item + .download-item {
    margin-top: .5rem;
  }

  .list-downloads .download-item .download-link {
    display: flex;
    justify-content: space-between;
    color: #114256;
  }

  .list-downloads .download-item .download-link:hover {
    color: #8BC9AC;
  }

  .list-downloads .download-item .download-link span {
    text-transform: uppercase;
  }

/* -- Woningtypes ---------------------------*/
.module-woningtypes {
  margin-top: 3rem;
  position: relative;
  background: rgb(237,246,241);
  background: -webkit-linear-gradient(bottom, rgba(237,246,241,1) 50%, rgba(255,255,255,1) 50%);
  background: -o-linear-gradient(bottom, rgba(237,246,241,1) 50%, rgba(255,255,255,1) 50%);
  background: linear-gradient(to top, rgba(237,246,241,1) 50%, rgba(255,255,255,1) 50%);
  overflow: hidden;
}

.offset-md-50vw {
  padding: 0 15px;
}

.owl-woningtypes-inner {
  padding: 2rem 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  background: #114256;
}

@media all and (min-width: 768px) {
  .offset-md-50vw {
    margin-left: calc((100vw - 696px) / 2);
    max-width: 696px;
    padding: 0;
  }
  .owl-woningtypes .owl-stage-outer {
    overflow: visible;
  }
  .owl-woningtypes-inner {
    padding: 2rem 8.333333%;
  }
}

@media all and (min-width: 992px) {
  .offset-md-50vw {
    margin-left: calc((100vw - 936px) / 2);
    max-width: 936px;
  }
}

@media all and (min-width: 1200px) {
  .offset-md-50vw {
    margin-left: calc((100vw - 1116px) / 2);
    max-width: 1116px;
  }
}

@media all and (min-width: 1400px) {
  .offset-md-50vw {
    margin-left: calc((100vw - 1296px) / 2);
    max-width: 1296px;
  }
}

/* -- Omgeving ------------------------------*/
.module-omgeving {
  position: relative;
  padding: 5rem 0;
  background: #EDF6F1;
}

/* -- omgeving feature ----------------------*/
.module-omgeving-feature {
  position: relative;
  background: #fff;
}

.module-omgeving-feature:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 7rem;
  width: 100%;
  background: #EDF6F1;
  z-index: 0;
}

.module-omgeving-feature .container {
  position: relative;
  z-index: 1;
}

.omgeving-feature-inner {
  position: relative;
  padding: 3rem 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  color: #114256;
  background: #8BC9AC;
}

@media all and (min-width: 768px) {
  .omgeving-feature-inner {
    padding: 4rem 16.333333% 4rem 0;
  }
  .omgeving-feature-inner:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    right: 100%;
    background: #8BC9AC;
  }
}

/* -- Woningtypes list ----------------------*/
.module-woningtypes-list {
  padding: 4rem 0;
  background: #EDF6F1;
}

/* -- Usps --------------------------------*/
.module-usps {
  padding: 3rem 0;
  background: #114256;
}

/* -- Woningtype -----------------------------*/
.woningtype-introductie {
  background: rgb(237,246,241);
  background: -webkit-linear-gradient(top, rgba(237,246,241,1) 80%, rgba(255,255,255,1) 20%);
  background: -o-linear-gradient(top, rgba(237,246,241,1) 80%, rgba(255,255,255,1) 20%);
  background: linear-gradient(to bottom, rgba(237,246,241,1) 80%, rgba(255,255,255,1) 20%);
}

.woningtype-introductie-wrapper {
  background: #114256;
  padding: 4rem 1.5rem 6rem 1.5rem;
}

.woningtype-introductie-wrapper h3,
.woningtype-introductie-wrapper h4,
.woningtype-introductie-wrapper h5 {
  font-weight: 700;
  color: #8BC9AC;
}

.woningtype-introductie-wrapper p + h3,
.woningtype-introductie-wrapper p + h4,
.woningtype-introductie-wrapper p + h5 {
  margin-top: 1.5rem;
}

.woningtype-introductie-wrapper p a {
  color: inherit;
  text-decoration: underline;
}

.woningtype-introductie-wrapper p a:hover {
  color: inherit;
  text-decoration: none;
}

.woningtype-indeling {
  padding: 4rem 0;
}

.img-lightbox {
  cursor: zoom-in;
}


/* -- Introductie ----------------------------*/
.page-introductie {
  position: relative;
  padding: 4.5rem 0;
}

/* -- Page -----------------------------------*/
#page {
  padding: 4.5rem 0;
  background: #fff;
}

.page-template-default #page {
  background: #EDF6F1;
}

#page h3,
#page h4,
#page h5 {
  font-weight: 700;
  color: #114256;
}

#page p + h3,
#page p + h4,
#page p + h5 {
  margin-top: 1.5rem;
}

#page p a:not([class]) { 
  color: inherit;
  text-decoration: underline;
}

#page p a:not([class]):hover { 
  color: #8BC9AC;
  text-decoration: none;
}

/* -- Inschrijven ----------------------------*/
#inschrijven-introductie {
  padding: 5rem 0;
  color: #fff;
  background: #114256;
}

#inschrijven-contact {
  padding: 5rem 0 3rem 0;
  background: #fff;
}

.formulier-wrapper {
  position: relative;
  margin-top: -8rem;
  padding: 8.33333%;
  background: #EDF6F1;
}

@media all and (min-width: 768px) {
  .formulier-wrapper {
    margin-top: -45%;
  }
}

/* -- Footer upper --------------------------*/
#footer-upper {
  padding: 5rem 0;
  background: #fff;
}

.contact__title {
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.contact__address a {
  color: #114256;
}

.contact__address a:hover {
  color: #8BC9AC;
}

/* -- Footer base ---------------------------*/
#footer-base {
  padding: 1.5rem 0 2.5rem 0;
  background: #EDF6F1;
}

#footer-base span {
  font-size: .9rem;
}

#footer-base span a {
  color: #114256;
}

#footer-base span a:hover {
  color: #8BC9AC;
}
/*# sourceMappingURL=stylesheet.css.map */