header {
  border-top: 3px solid #2ec577;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .flex {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100%;
}

header nav li {
  float: left;
  position: relative;
}

header nav li a {
  padding: 10px 20px;
}

header nav li ul {
  position: absolute;
  top: 42px;
  left: 0;
  background: #007A88;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

header nav li:hover ul {
  opacity: 1;
  pointer-events: all;
}

header a.logo {
  width: 200px;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 10px 0;
}

header .menu-toggle {
  display: none;
  position: absolute;
  z-index: 101;
  top: 17px;
  right: 17px;
  height: 30px;
  width: 30px;
}

header .menu-toggle span {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #000;
  border-radius: 30px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header .menu-toggle span.one {
  top: 0;
}

header .menu-toggle span.two {
  top: 10px;
}

header .menu-toggle span.three {
  top: 20px;
}

header .menu-toggle.crossed span {
  background: #fff;
}

header .menu-toggle.crossed span.one {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 10px;
}

header .menu-toggle.crossed span.two {
  opacity: 0;
}

header .menu-toggle.crossed span.three {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 10px;
}

@media screen and (max-width: 1200px) {
  header {
    -webkit-transform: unset;
            transform: unset;
    -webkit-box-shadow: 0 0 5px -3px #000;
            box-shadow: 0 0 5px -3px #000;
  }
  header a.menu-toggle {
    display: inline-block;
  }
  header a.logo {
    width: 130px;
  }
  header nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 200px;
    padding-top: 80px;
    background: #292929;
    color: #fff;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: 0.2s -webkit-transform;
    transition: 0.2s -webkit-transform;
    transition: 0.2s transform;
    transition: 0.2s transform, 0.2s -webkit-transform;
    text-align: center;
    z-index: -1;
  }
  header nav li {
    float: none;
    display: block;
  }
  header nav li ul {
    position: static;
    opacity: 1;
    pointer-events: all;
  }
  header nav li ul::before {
    position: absolute;
    top: 36px;
    left: 50%;
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background: #292929;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
  header nav.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media screen and (min-width: 1200px) {
  header.scrolled {
    -webkit-box-shadow: 0 0 5px -3px #000;
            box-shadow: 0 0 5px -3px #000;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  header.scrolled a.logo {
    width: 130px;
  }
}

footer {
  background: #292929;
  padding-top: 100px;
  color: #fff;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

footer a.logo {
  display: inline-block;
  -webkit-filter: invert(1);
          filter: invert(1);
  width: 200px;
}

footer .bottom {
  margin-top: 20px;
  text-align: center;
  background: #2ec577;
  background: #000;
  color: #fff;
  padding: 5px 0;
}

@media screen and (max-width: 400px) {
  footer .flex {
    display: block;
  }
}

#cookie-info {
  position: fixed;
  bottom: 00px;
  left: 0px;
  right: 0px;
  padding: 20px;
  z-index: 100;
  color: #fff;
  background: #2F4858;
}

#cookie-info a.dismiss {
  position: absolute;
  background: #fff;
  color: #2F4858;
  top: 50%;
  right: 0;
  padding: 10px 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  line-height: 1.5;
  color: #3a3a3a;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oxygen', sans-serif;
  margin: 0;
  line-height: 1.3;
  color: #000;
}

h1 {
  font-size: 38px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 28px;
}

h5 {
  font-size: 25px;
}

h6 {
  font-size: 22px;
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 35px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 22px;
  }
  h6 {
    font-size: 20px;
  }
}

a {
  color: #fff;
}

a.button {
  background: #007A88;
  color: #fff;
  border-radius: 5px;
}

a.button:hover {
  color: #fff;
}

main {
  min-height: 100vh;
  background: #fff;
  margin-bottom: 226px;
  margin-top: 150px;
  -webkit-box-shadow: 0 20px 8px -20px #000;
          box-shadow: 0 20px 8px -20px #000;
}

#pagetitle {
  background: #2F4858;
  padding: 200px 0 10px 0;
  color: #fff;
  background: url("../img/banner.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

#pagetitle h1, #pagetitle h2, #pagetitle h3, #pagetitle h4, #pagetitle h5, #pagetitle h6 {
  color: #fff;
}
/*# sourceMappingURL=style.css.map */