header {
  background-color: transparent;
  height: 150px;
  max-width: var(--maxWidthContent);
  margin: auto;
  padding: 2rem;
}
header .logo {
  pointer-events: all;
  z-index: 66;
}
header .logo img {
  width: 240px;
  height: 100%;
  filter: invert(100%);
}
@media only screen and (min-width: 400px) {
  header .logo img {
    width: auto;
  }
}

nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
  pointer-events: none;
  overflow-x: hidden;
}
nav #burgerMenu {
  height: 55px;
  width: 55px;
  padding: 15px;
  position: absolute;
  right: 2rem;
  top: 2rem;
  pointer-events: all;
  background-color: white;
  border-radius: var(--borderRSmall);
}
nav #navContainer {
  height: 100%;
  width: 100%;
  background-color: var(--background);
  z-index: 10;
  display: none;
  text-align: center;
  pointer-events: all;
}
nav #navContainer li {
  padding-top: 3em;
  padding-bottom: 3em;
  text-decoration: none;
  list-style-type: none;
  font-weight: bold;
}
nav #navContainer li a {
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 0.3rem;
}

@media only screen and (min-width: 800px) {
  nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 150px;
    overflow-x: hidden;
  }
  nav #burgerMenu {
    display: none;
  }
  nav #navContainer {
    height: 100%;
    width: 100%;
    pointer-events: none;
    max-width: var(--maxWidthContent);
    margin: auto;
    background-color: transparent;
    z-index: 10;
    display: block;
    text-align: center;
  }
  nav #navContainer li {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding: 3rem 0;
    text-decoration: none;
    list-style-type: none;
    float: right;
    margin: 1rem 0 1rem 3rem;
    pointer-events: all;
  }
  nav #navContainer li a {
    font-size: 1.1rem;
    letter-spacing: 0.3rem;
  }
}
.hero {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  max-height: 720px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}
.hero .heroImg {
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero .heroImg img {
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .heroText {
  z-index: 2;
  max-width: 100%;
  padding: 20px 5%;
}
.hero .heroText h1 {
  margin: 0 0 24px;
  font-size: 50px;
  line-height: 1.3;
  color: var(--mainLight);
}
.hero .heroText p {
  margin: 0px 0px 40px;
  font-size: 28px;
  line-height: 1.3;
  color: var(--textLight);
}
@media only screen and (max-width: 800px) {
  .hero .heroText h1 {
    margin: 0 0 24px;
    font-size: 36px;
  }
  .hero .heroText p {
    margin: 0px 0px 40px;
    font-size: 22px;
  }
}
.hero .heroText a {
  width: 100%;
  height: 100%;
  display: block;
}
.hero .heroText a img {
  width: 100%;
  height: 100%;
  filter: invert(100%);
}
.hero .heroText button:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.hero:after {
  z-index: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(32, 32, 32, 0.8);
  content: "";
}

section {
  background-color: var(--background);
  pointer-events: all;
}
section h1 {
  color: var(--mainLight);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}
section h2 {
  color: var(--mainLight);
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
}
section .sectionContent {
  position: relative;
  padding: 2rem;
  max-width: var(--maxWidthContent);
  margin-left: auto;
  margin-right: auto;
  color: var(--textLight);
}
section .sectionContent .sectionImg {
  border-radius: var(--borderRLarge);
  width: 100%;
}
section .sectionContent .sectionImgDesc {
  font-size: 0.9rem;
  color: #bec5c5;
}
section .sectionCard {
  width: 100%;
  margin: auto;
  border-radius: var(--borderRLarge);
  background-color: var(--backgroundDark);
  display: grid;
  grid-template-columns: 2fr 1fr;
}
@media only screen and (max-width: 800px) {
  section .sectionCard {
    grid-template-columns: 1fr;
  }
}
section .sectionCard img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--borderRLarge);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
@media only screen and (max-width: 800px) {
  section .sectionCard img {
    border-radius: var(--borderRLarge);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
}
section .sectionCard .cardText {
  width: 100%;
  padding: 2rem;
}
section .sectionCard .cardText h3 {
  font-size: 1.2rem;
}
section .sectionCard .cardText p {
  font-size: 1rem;
}

footer {
  background-color: var(--backgroundDark);
  max-width: 100%;
  margin: auto;
  padding-top: 2rem;
  padding: 1.5rem 10%;
  padding-bottom: 4rem;
  padding-top: 3rem;
  min-height: 200px;
  box-shadow: var(--boxShadow);
}
footer .footerContent {
  max-width: var(--maxWidthContent);
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
footer .footerContent .footerBox {
  align-self: center;
  text-align: center;
}
footer .footerContent .footerBox a {
  color: var(--textLight);
}
footer .footerContent .footerBox a:hover {
  color: var(--mainLight);
}
footer .footerContent .footerBox p {
  color: var(--textLight);
  font-size: 1rem;
}
footer .footerContent .footerBox .footerImg {
  margin: auto;
  width: 80px;
  height: 120px;
  display: block;
}
footer .footerContent .footerBox .footerLink {
  color: var(--textLight);
  display: inline-block;
  font-size: 1rem;
}
footer .footerContent .footerBox .footerLink:hover {
  color: var(--mainLight);
}

iframe {
  width: 100%;
  height: 600px;
  max-width: var(--maxWidthContent);
  border-radius: var(--borderRLarge);
  margin: 2rem auto;
  text-align: center;
  display: block;
  padding: 2rem;
}

.imgTiles {
  display: grid;
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 800px) {
  .imgTiles {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
.imgTiles .tileImgContainer {
  width: 100%;
  height: 100%;
  padding: 0.2rem;
}
.imgTiles .tileImgContainer .tileImg {
  padding: 0.4rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--borderRLarge);
  cursor: pointer;
  transition: all 0.2s;
}
.imgTiles .tileImgContainer .tileImg:hover {
  padding: 0.3rem;
}

#contactform {
  width: 100%;
  padding: 2rem;
  margin: 0;
  position: relative;
}
#contactform .btn {
  position: absolute;
  right: 30px;
}

.contact a {
  color: black;
}

input[type=text],
input[type=date],
textarea {
  width: 100%;
  display: block;
  padding: 10px;
  background-color: #d0d6d6;
  border: none;
  outline: none;
  margin-bottom: 15px;
  font-size: 16px;
  border-radius: var(--borderRSmall);
}

tr {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 100%;
  margin-bottom: 1rem;
}

th {
  padding-right: 1rem;
}

label {
  font-weight: normal;
  width: 100%;
  padding: 5px;
  text-align: right;
  display: block;
}

#popup {
  position: fixed;
  max-width: 90%;
  z-index: 300;
  right: 1em;
  top: 20%;
  padding: 0.5rem 2rem;
  color: white;
  background-color: var(--main);
  border-radius: var(--borderRSmall);
  border: 2px solid #2cb1b1;
  transition: opacity 1s;
  pointer-events: none;
}/*# sourceMappingURL=layout.css.map */