* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
  font-family: "Source Sans Pro", Arial, sans-serif;
  font: 14px "Source Sans Pro", Arial, sans-serif;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px;
}

html, body {
  background-color: #eeeeee;
}

.domain::before {
  content: "\0040";    /* Unicode character for @ symbol Email coverage*/
}

@font-face {
  font-family: 'Material Icons';
  font-style: normal;
  font-weight: 400;
  src: local('Material Icons'),
    local('MaterialIcons-Regular'),
    url('/fonts/MaterialIcons-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: normal;
  src: local('Source Sans Pro'),
    url('/fonts/SourceSansPro-Regular.ttf') format('truetype');
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

/* Rules for sizing the icon. */
.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

/* Rules for using icons as black on a light background. */
.material-icons.md-dark {
  color: rgba(0, 0, 0, 0.54);
}

.material-icons.md-dark.md-inactive {
  color: rgba(0, 0, 0, 0.26);
}

/* Rules for using icons as white on a dark background. */
.material-icons.md-light {
  color: rgba(255, 255, 255, 1);
}

.material-icons.md-light.md-inactive {
  color: rgba(255, 255, 255, 0.3);
}

/* header */

.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 5px;
	padding-bottom: 0px;
	background-color: #ffffff;
	position: relative;
}

.logo {
	font-size: 28px;
	font-weight: bold;
	color: #333;
	max-width: calc(100% - 175px);
	white-space: nowrap;
	text-overflow: ellipsis;
}
.logo img{
  width: calc(100vw / 3.8);
  min-width: 202px;
  max-width: 300px;
}

@media screen and (max-width: 768px) {
.header {
  height: 88px;
  padding: 20px 60px;
}
.header .logo {
  position: absolute;
  top: 5px;
  left: 30px;
  width: calc(100% - 215px);
}

.header .logo img{
  width: 200px;
}
}

/* menu */

.menu {
	display: flex;
	justify-content: center;
}

.menu ul {
	display: flex;
	list-style: none;
  align-items: center;
}

.menu li {
	margin: 0 10px;
}
.menu li:hover {
  text-decoration: underline;
  text-decoration-color: #ffc867;
  text-decoration-style: solid;
  text-decoration-thickness: 4px;
}

.menu a {
	color: #333;
	text-decoration: none;
	font-size: 18px;
}

.hamburger {
	font-size: 30px;
	color: #333;
	cursor: pointer;
	display: none;
}

@media screen and (max-width: 768px) {
.menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.menu.show {
    display: flex;
}

nav ul {
    flex-direction: column;
    align-items: flex-start;
}

.menu li {
    margin: 10px 0;
    text-align: center;
}

.hamburger {
  display: block;
  position: absolute;
float: right;
  top: 25px;
  right: 20px;
}

.hamburger div {
  height: 3px;
  width: 30px;
  margin: 3px 0;
  background-color: #333;
}
}

/* banner */

.banner {
	height: 40vh;
	background-color: #333;
  background-image: url("/img/charts2.png");
  background-size: auto 100%;
	background-position: 53% top;
  position: relative;
}

/* headline */

.headline {
  position: absolute;
  text-align:center;
  font-size: 3.8vw;
  font-weight: 800;
  color: #ffa201;
  text-shadow: 2px 2px rgba(0,0,0,0.5);
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

@media only screen and (min-width: 768px) {
  .headline {
    font-size: 2.8vw;
    bottom: 10px;
  }

}


@media only screen and (min-width: 992px) {
  .headline {
    font-size: 2.2vw;
    bottom: 8px;
  }
}


@media (min-width: 1440px) {
  .headline {
    font-size: 2rem; /* max font size */
    bottom: 4px;
  }
}

/* content */

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  background-color: #ffffff;
  }
  
.col {
  flex: 1 1 360px;
  background-color: #eeeeee;
  margin: 20px;
  padding: 20px;
  text-align: center;
  }

.colfullwidth {
    flex-basis: 100%;
  }

.col h2 {
  font-size: 24px;
  margin-bottom: 10px;
  }
    
.colimage {
  width:40%;
  margin:10px;
  box-shadow: 6px 6px #ffc867;
  }
    
.col p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  }

@media screen and (max-width: 768px) {
    .content{
      padding: 0;
    }
    
    .col {
        flex: 1 1 100%;
    }
  }

/* input focus and error */

label {
	margin-top: 10px;
	margin-bottom: 0px;
	display: inline-block;
	max-width: 100%;
	font-weight: bold;
	text-align: left;
}

input[type=text]:focus,input[type=password]:focus, input[type=button]:focus, textarea:focus{
  outline: 2px solid #ffa201;     /* oranges! yey */
}

.error{
        margin-top: 0px;
        padding-top: 0px;
        font-size: small;
        display: none;
        color: #ffa201;
}

/* footer */

.footer {
  background-color: #60605f;
  color: #ffffff !important;
  padding-top: 8px;
  padding-bottom: 8px;
  text-align: center;
  width: 100%;
  font-size: small;
  }
  .footer a{
    color:#ffffff;
   text-decoration: none;

  }
  .footer a:hover{
      color:#d68200;
  }
/* checkboxes */ 

 /* Customize the label (the container) */
 .container{
  display: block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #ccc;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #ffa201;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 5px;
  top: 1px;
  width: 3px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
} 