header {
  background-color: transparent;
  height: 150px;
  max-width: var(--maxWidthContent);
  margin: auto;
  padding: 2rem;
}

header .logo {
  pointer-events: all;
}

header .logo img {
  width: 240px;
  height: 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;
}

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

.hero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100vw;
  height: 100vh;
  max-height: 720px;
  margin: 0 auto;
  color: #fff;
  text-align: center;
}

.hero .heroImg {
  display: -webkit-box;
  display: -ms-flexbox;
  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: black;
}

.hero .heroText p {
  margin: 0px 0px 40px;
  font-size: 28px;
  line-height: 1.3;
  color: black;
}

@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 .btn {
  padding: 18px 24px;
  border: none;
  border-radius: 5px;
  background-color: var(--main);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
  pointer-events: all;
}

.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(255, 255, 255, 0.6);
  content: "";
}

section {
  background-color: var(--background);
  pointer-events: all;
}

section h2 {
  color: var(--main);
  font-size: 2rem;
}

section .sectionContent {
  position: relative;
  padding: 2rem;
  max-width: var(--maxWidthContent);
  margin-left: auto;
  margin-right: auto;
}

section .sectionContent .sectionImg {
  border-radius: var(--borderRLarge);
  width: 100%;
}

section .sectionCard {
  width: 100%;
  margin: auto;
  border-radius: var(--borderRLarge);
  background-color: white;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2fr 1fr;
      grid-template-columns: 2fr 1fr;
}

@media only screen and (max-width: 800px) {
  section .sectionCard {
    -ms-grid-columns: 1fr;
        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: 1rem;
}

section .sectionCard .cardText p {
  font-size: 1rem;
}

section .cardSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section .cardSection .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  min-width: 250px;
  margin: 1rem;
  text-align: center;
  padding: 3rem;
  height: 450px;
  color: var(--textLight);
  border-radius: var(--borderRLarge);
  background-color: var(--mainLight);
}

section .cardSection .card h3 {
  width: 100%;
  font-size: 1.4rem;
  font-family: "montserratregular", sans-serif;
  line-height: 2rem;
}

section .cardSection .card .cardImg {
  max-width: 80%;
  margin: 0 auto;
  -webkit-filter: invert(48%) sepia(79%) saturate(1%) hue-rotate(86deg) brightness(1118%) contrast(119%);
          filter: invert(48%) sepia(79%) saturate(1%) hue-rotate(86deg) brightness(1118%) contrast(119%);
}

@media only screen and (min-width: 800px) {
  section .cardSection .card {
    width: 30%;
  }
}

footer {
  background-color: var(--background);
  max-width: 100%;
  margin: auto;
  padding-top: 2rem;
  padding: 1.5rem 10%;
  padding-bottom: 4rem;
  padding-top: 3rem;
  min-height: 200px;
  -webkit-box-shadow: var(--boxShadow);
          box-shadow: var(--boxShadow);
}

footer .footerContent {
  max-width: var(--maxWidthContent);
  margin: auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

footer .footerContent .footerBox {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  text-align: center;
}

footer .footerContent .footerBox a {
  color: var(--textDark);
}

footer .footerContent .footerBox a:hover {
  color: var(--main);
}

footer .footerContent .footerBox p {
  color: var(--textDark);
  font-size: 1rem;
}

footer .footerContent .footerBox .footerImg {
  margin: auto;
  width: 80px;
  height: 120px;
  display: block;
}

footer .footerContent .footerBox .footerLink {
  color: var(--textDark);
  display: inline-block;
  font-size: 1rem;
}

footer .footerContent .footerBox .footerLink:hover {
  color: var(--main);
}

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: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
}

@media only screen and (min-width: 800px) {
  .imgTiles {
    -ms-grid-columns: 1fr 1fr;
        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;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.imgTiles .tileImgContainer .tileImg:hover {
  padding: 0.3rem;
}
/*# sourceMappingURL=layout.css.map */