@font-face {
  font-family: "Blair";
  src: url("/blairmditc-tt-medium.0590d9ee.ttf");
  font-display: swap;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html,
body {
  position: relative;
  overflow-x: hidden;
}

body,
html,
h1,
h2,
h3,
h4,
a {
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  color: #28282a;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.03em;
  font-weight: 200;
  font-kerning: normal;
}

.uppercase {
  text-transform: uppercase;
}

.orange {
  color: #DF572B;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

h2 {
  font-weight: 400;
}

.text-wrap {
  max-width: 700px;
}

.skip {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.skip-link {
  left: -999px;
  color: white;
  top: auto;
  width: 1px;
  height: 0px;
  overflow: hidden;
  z-index: -999;
}

a.skip-link:focus,
a.skip-link:active {
  background: white;
  text-align: center;
  border-bottom: 1px solid black;
  padding: 15px 0;
  text-decoration: underline;
  color: #1b60db;
  width: auto;
  height: auto;
  z-index: 999;
}
a.skip-link:focus:hover,
a.skip-link:active:hover {
  background-color: #eae9ee;
  border-bottom: 1px solid white;
}

nav.container-wrap {
  transition: all 300ms ease-in-out;
  position: fixed;
  z-index: 4;
  width: 100%;
  background-color: white;
}

.nav-content {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 8vh;
  background-color: rgb(255, 255, 255);
  transition: all 300ms ease-in-out;
}

.logo-style {
  line-height: 1;
  color: #28282a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-family: "Blair", sans-serif;
  font-weight: 800;
}
.logo-style.nav {
  display: none;
}
.logo-style.show {
  display: inline;
}
.logo-style.header {
  display: inline;
  font-size: 20px;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .logo-style.header {
    font-size: 27px;
  }
}
.logo-style.spacing {
  margin: 24px 0;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .logo-style {
    font-size: 16px;
  }
}

.nav-links {
  position: absolute;
  right: 0px;
  height: 35vh;
  top: 8vh;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  transform: translateX(140%);
  transition: transform 0.5s ease-in;
  flex: 1 1 auto;
}
.nav-links:focus {
  outline: #DF572B;
}
@media screen and (min-width: 930px) {
  .nav-links {
    transform: translateX(0%);
    width: 40%;
    justify-content: flex-end;
    flex-direction: row;
    height: 8vh;
    top: 0;
  }
}
.nav-links li {
  opacity: 0;
  list-style: none;
}
@media screen and (min-width: 930px) {
  .nav-links li {
    opacity: 1;
    padding: 0 10px;
  }
}
@media (hover: hover) {
  .nav-links li:hover {
    border-bottom: 1px solid #000;
  }
}
.nav-links a {
  color: #28282a;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 16px;
  padding-bottom: 5px;
}

.nav-active {
  transform: translateX(0%);
}

.burger {
  display: block;
  cursor: pointer;
  border: none;
}
@media screen and (min-width: 930px) {
  .burger {
    display: none;
  }
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #cad1d6;
  margin: 5px;
  transition: all 0.3s ease;
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0px);
  }
}
.animateIn {
  transform: translateY(0px);
}

.animateOut {
  transform: translateY(-100%);
}

.toggle .line1 {
  transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2 {
  opacity: 0;
}
.toggle .line3 {
  transform: rotate(45deg) translate(-5px, -6px);
}

.big-title {
  font-size: 21px;
  font-weight: 200;
  letter-spacing: 1px;
  margin: 15px 0px;
  line-height: 1.5;
}
.big-title .hero {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .big-title {
    font-size: 27px;
  }
}

.about {
  display: flex;
}

.heroImage {
  line-height: 34px;
  background-image: url("/pand_midden.8ac1e885.jpg");
  background-size: auto 100%;
  background-position: 61% 80%;
  min-height: 470px;
  width: 100%;
  background-repeat: no-repeat;
  display: flex;
}
@media screen and (min-width: 680px) {
  .heroImage {
    background-position: center;
    min-height: 600px;
  }
}
@media screen and (min-width: 1100px) {
  .heroImage {
    background-position: center left;
    background-size: 100% auto;
  }
}

.container-wrap {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.container {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  max-width: 1400px;
}
@media screen and (min-width: 768px) {
  .container.nav {
    margin: 20px 0;
  }
}
.container.hero {
  padding-top: 114px;
}
.container.hero .logo-style {
  display: inline;
}
@media screen and (min-width: 768px) {
  .container.hero {
    margin: 20px 0;
    padding-top: 116px;
  }
}
.container.team {
  padding: 25px 0;
}
@media screen and (min-width: 768px) {
  .container.team {
    padding: 0 78px;
    margin: 0px 0;
  }
}
.container.contact {
  max-width: 1400px;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 24px;
}
.container.contact .contact-info h3 {
  margin-bottom: 25px;
}
.container.contact a {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .container.contact a {
    width: 50%;
  }
}
@media screen and (min-width: 1100px) {
  .container.contact a {
    width: 60%;
  }
}
.container.contact .contact-image {
  min-height: 200px;
  background-image: url(/maps.bf0cf70d.jpg);
  background-size: 120% auto;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .container.contact .contact-image {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .container.contact {
    padding-bottom: 0;
    flex-direction: row;
    width: 50%;
  }
}
@media screen and (min-width: 1100px) {
  .container.contact {
    padding: 0 175px;
  }
}
@media screen and (min-width: 768px) {
  .container {
    padding: 0 88px;
    margin: 80px 0;
  }
}
@media screen and (min-width: 1100px) {
  .container {
    padding: 0 175px;
  }
}

.grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.grid-item {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 1 auto;
  margin-right: 0px;
}
@media screen and (min-width: 768px) {
  .grid-item {
    max-width: 49%;
  }
}
@media screen and (min-width: 1024px) {
  .grid-item {
    max-width: 32%;
  }
}
.grid-item:nth-child(3n) {
  margin-right: 0px;
}
@media screen and (min-width: 768px) {
  .grid-item:nth-child(odd) {
    margin-right: 10px;
  }
}
@media screen and (min-width: 1008px) {
  .grid-item {
    margin-right: 10px;
  }
}
.grid-item:last-child {
  margin-right: 0px;
}

.grid-item-image {
  height: auto;
  width: 100%;
  min-width: 250px;
}

.grid-item-content {
  display: flex;
  flex-direction: column;
  margin: 25px 25px 25px;
}

.item-text {
  display: flex;
  flex-direction: row;
  justify-items: flex-start;
}

.medium-title {
  font-weight: bold;
  line-height: 1.7;
  font-size: 18px;
}

.small-title {
  font-weight: 300;
  line-height: 1.7;
  font-size: 16px;
}

.info {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  line-height: 1.7;
  font-size: 12px;
}
.info a {
  font-size: 14px;
  display: block;
  border-bottom: 1px solid white;
}
.info a:hover {
  border-bottom: 1px solid orange;
}
@media screen and (min-width: 1024px) {
  .info {
    font-size: 14px;
  }
  .info a {
    font-size: 14px;
  }
}

.info-active {
  opacity: 1;
  height: 50px;
}

.contact-button {
  display: inline-block;
  border: none;
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  color: black;
  flex: 2;
  padding: 5px;
}
.contact-button:focus {
  outline: 1px solid #fff;
  color: #DF572B;
}
.contact-button:hover {
  color: #DF572B;
}
.contact-button:visited {
  color: black;
}

footer {
  background-color: #eae9ee;
}



/*# sourceMappingURL=/main.39afc03c.css.map */