/* _____________________________
  |                             |
  |   Copyright (C) 2021, JEP   |
  |_____________________________|

  page.css is part of the Formulate plugin.
*/

@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
}

ul {
  margin: 0;
}

li {
  margin: 5px 20px 5px 0;
  text-align: left;
}

h1 {
  margin: 30px 0 30px 0;
  font-size: 30pt;
  font-weight: 700;
  text-align: center;
}

h2 {
  text-align: center;
}

.header {
  top: 0;
  height: 120px;
  width: 100%;
  min-width: 320px;
  background: #ffffff;
  text-align: center;
  border-bottom: 1px solid #dddddd;
  opacity: .9;
  position: fixed;
  z-index: 8;
}

.headerlogo {
  padding: 20px 0 20px 30px;
  height: 80px;
  display: inline-block;
}

.headerlogo img, .headerlogo svg {
  max-height: 100%;
  max-width: 100%;
}

.menuseries {
  display: inline-block;
  vertical-align: top;
  height: 100%;
  text-align: left;
  overflow-y: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.menu {
  margin: 0;
  padding: 0 30px;
  display: inline-block;
  vertical-align: top;
}

.menuitem {
  margin: 0;
  padding: 52px 10px 48px 10px;
  height: 20px;
  font-size: 12pt;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.menuitem:hover {
  opacity: .8;
  text-decoration: underline;
}

.rightmenu {
  top: 0;
  right: 0;
  position: absolute;
}

.hamburgerbutton {
  mask: url(../img/hamburgerbutton.svg) center center;;
  -webkit-mask: url(../img/hamburgerbutton.svg) center center;
  mask-size: cover;
  -webkit-mask-size: cover;
  background: #000000;
  vertical-align: top;
  margin: 26px;
  display: none;
  width: 70px;
  height: 70px;
  float: right;
  cursor: pointer;
}

.hamburgerbutton:hover {
  opacity: .8;
}

.body {
  min-width: 300px;
  text-align: center;
}

.centercolumn {
  width: 1200px;
  display: inline-block;
  text-align: center;
}

.header .centercolumn {
  text-align: left;
}

.half {
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

.third {
  width: 33.333%;
  display: inline-block;
  vertical-align: top;
}

.twothird {
  width: 66.666%;
  display: inline-block;
  vertical-align: top;
}

.thincentercolumn {
  width: 400px;
  text-align: left;
  display: inline-block;
}

.page .content {
}

.centeralign {
  text-align: center;
}

.leftalign {
  text-align: left;
}

.rightalign {
  text-align: right;
}

.footer {
  padding: 20px 0;
  width: 100%;
  min-width: 300px;
  background: #ffffff;
  border-top: 1px solid #dddddd;
  text-align: center;
}

.footer p {
  margin: 0;
}

@media only screen and (max-width: 1200px) {
  .centercolumn {
    width: 100%;
  }

  .page .content {
    width: 920px;
    display: inline-block;
  }
}

@media only screen and (max-width: 1020px) {
  .mobilehamburger {
    display: block;
  }

  .page .content {
    width: 770px;
  }

  .third {
    width: 50%;
  }

  .twothird {
    width: 50%;
  }
}

@media only screen and (max-width: 880px) {
  .page .content {
    width: 640px;
  }
}

@media only screen and (max-width: 700px) {
  .menuseries {
    top: 0;
    bottom: 0;
    left: 0;
    margin-left: -100%;
    width: 100% !important;
    position: fixed;
    background: #ffffff;
  }

  .menu {
    padding: 25px 15px;
  }

  .menuitem {
    padding: 10px 20px;
    display: block;
  }

  .hamburgerbutton {
    display: inline-block;
  }

  .page .content {
    width: 520px;
  }

  .half {
    width: 100%;
  }

  .third {
    width: 100%;
  }

  .twothird {
    width: 100%;
  }

  .twocolumn {
    column-count: 1;
  }
}

@media only screen and (max-width: 580px) {
  .page .content {
    width: 450px;
  }

  .thincentercolumn {
    width: 400px;
  }
}

@media only screen and (max-width: 500px) {
  .page .content, .thincentercolumn {
    width: 400px;
  }
}

@media only screen and (max-width: 450px) {
  .page .content, .thincentercolumn {
    width: 350px;
  }
}

@media only screen and (max-width: 400px) {
  .page .content, .thincentercolumn {
    width: 300px;
  }
}

@media only screen and (max-width: 380px) {
  .page .content, .thincentercolumn {
    width: 250px;
  }
}

@media only screen and (max-width: 320px) {
  .page .content, .thincentercolumn {
    width: 220px;
  }
}

.mobile {
  width: 100vw;
  overflow-x: hidden;
}

.mobile .header {
  width: 100vw;
}

.mobile .body {
  width: 100vw;
}

.mobile .footer {
  width: 100vw;
}