@font-face {
  font-family: 'ProximaNova';
  font-weight: 400;
  font-style: normal;
  src: url("/content/fonts/proximanova/proximanova-regular-webfont.woff2") format("woff2"), url("/content/fonts/proximanova/proximanova-regular-webfont.woff") format("woff");
  unicode-range: U+0020-007F,U+00A0-00FF,U+20A0-20CF,U+2000-206F;
  font-display: swap; }

@font-face {
  font-family: 'ProximaNova';
  font-weight: 400;
  font-style: italic;
  src: url("/content/fonts/proximanova/proximanova-regular-italic-webfont.woff2") format("woff2"), url("/content/fonts/proximanova/proximanova-regular-italic-webfont.woff") format("woff");
  unicode-range: U+0020-007F,U+00A0-00FF,U+20A0-20CF,U+2000-206F;
  font-display: swap; }

@font-face {
  font-family: 'ProximaNova';
  font-weight: 600;
  font-style: normal;
  src: url("/content/fonts/proximanova/proximanova-semibold-subset.woff2") format("woff2"), url("/content/fonts/proximanova/proximanova-semibold-subset.woff") format("woff");
  unicode-range: U+0020-007F,U+00A0-00FF,U+20A0-20CF,U+2000-206F;
  font-display: swap; }

@font-face {
  font-family: 'Roboto Slab';
  font-weight: 600;
  font-style: normal;
  src: url('/content/fonts/roboto-slab/roboto-slab-bold.woff2') format('woff2'), url('/content/fonts/roboto-slab/roboto-slab-bold.woff') format('woff');
  unicode-range: U+0020-007F,U+00A0-00FF,U+20A0-20CF,U+2000-206F;
  font-display: swap;
}


* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body {
  margin:0;
	font-family: "ProximaNova", Helvetica, Arial, sans-serif;
	font-size: 16px;
	line-height: 20px;
	color: #000000;
	background-color: #FFFFFF;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-y: scroll;
	min-height: 100%;
	height: 100%;
	font-weight: 300;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 430px;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}

@media (min-width: 768px) {
  .container {
    max-width: 730px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/*Page Styles*/
header {
	display: flex;
	align-items: center;
	background-color: #E7E6F6;
	height:60px;
  position: relative;
  overflow:hidden; /*keep glow inside*/
}
@media(min-width:768px){
  header {
    height:70px;
  }
}

@media(min-width:1200px){
  header {
    height:80px;
  }
}


header .inner-header {
  flex-grow:1;
  position:relative;
  z-index:1;
}

header .container{
  display: flex;
  align-items: center;
}
header .container > div:first-child {
  flex-grow: 1;
}

h1 {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: 'Roboto Slab', "ProximaNova", Helvetica, Arial, sans-serif;
  font-size: 34px;
  color: #6E46CF;
  max-width: 370px;
}

p{
  max-width:220px;
}


.message-box {
  margin: 0 -15px;
  padding: 0 15px;
  padding-top: 60px;
  height:80vh;
}

a {
  font-weight: 600;
  color: #6E46CF;
  cursor: pointer;
}
a:hover {
  text-decoration: underline;
}

.is-hidden {
  display:none;
}
