@charset "utf-8";
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
HTML5 display-role reset for older browsers article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul {
  list-style-position: outside;
  padding-left: 40px;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
html {
  background-color: #E2E6EA;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  min-width: 450px;
}
h1, h2 {
  font-weight: bold;
}

a {
 text-decoration: none;
 color: inherit;
}

a:hover {
  text-decoration-line: underline;
}

body {
  padding: 0;
  margin-top: 1em;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 1em;
  max-width: min(94%, 900px);
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0px 0px 20px -7px grey;
  line-height: 1.5;
  font-size: 16px;
}
header {
  margin: 0;
  padding: 0;
}
header img {
  width: 100%;
  margin: 0;
  height: auto;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.Masthead {
  background-color: white;
  padding-top: 10px;
  margin-top: 0;
}
.Masthead .call {
  color: #141B4D;
  font-size: 30px;
  text-align: center;
  margin-top: 20px;
  margin-left: 2em;
  margin-right: 2em;
  padding-bottom: 8px;
}
.Masthead .Potrait {
  display: block;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  max-width: 400px;
  min-width: 300px;
  height: auto;
  transition: 1s;
}
.Masthead blockquote {
  text-align: center;
  padding-top: 1.5em;
  padding-right: 2.5em;
  padding-left: 2.5em;
  padding-bottom: 1.5em;
  width: 75%;
  max-width: 700px;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  background-color: #A1CDC6;
}
.Masthead blockquote span {
  font-style: normal;
  font-weight: bold;
}

.Information {
  font-weight: normal;
  padding: 0;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.Information a {
  text-decoration: none;
 font-style: italic;
 color: #F4364C;

}

.Information a:hover {
  text-decoration: underline;
}

.Information h2 {
  margin-top: 15px;
  margin-bottom: 15px;
 
}

li {
  padding-left: 1em;
}
.Challenge {
  width: 75%;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 35px;
  padding-right: 35px;
  background-color: #EDEDED;
}
.Agreement {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
}
.Agreement h2 {
  color: #121162;
  font-size: 30px;
  margin-top: 30px;
  padding-left: 10px;
  padding-bottom: 4px;
  border-bottom-style: solid;
  border-width: 1px;
  border-color: #121162;
}

.Agreement h3 {
 font-weight: bold;
 margin-top: 20px;
}

.Agreement li {
 margin-top: 5px;
}

.checkboxes {
  margin-top: 25px;
  margin-left: min(40px, 5%);
}

/* The container */
.checkboxes {
  display: block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

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

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  left: -5px;
  height: 25px;
  width: 25px;
  
  /* Center checkbox with text */
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  
  background-color: #eee;
  border-radius: 5px;
}

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

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

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

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

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

#Proceed, .returnButton {
  padding: 15px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 40px;
  border-width: 2px;
  font-weight: bold;
  font-size: 17px;
  transition: 0.25s ease-out;
  border-style: none;
  color: white;
  background-color: #F4364C;
}

#Proceed {
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: 50px;
 
}

#Proceed:hover {
  transition: 0.25s ease-out;
  background-color: #ca1c47;
  cursor: pointer;
}

.UserWarning {
 text-align: center;
}

.red {
 color: red;
}

.UserWarning h3 {
 margin-top: 0px;
}

.UserWarning a {
 text-decoration: red underline;
 
}

.validationError {
 margin-top: 5px;
 margin-left: min(78px, 26%);
 color: red;
 font-size: 12px;
}

footer {
  font-size: 13px;
  line-height: 17px;
  margin-top: 25px;
  background-color: #141B4D;
  padding: 2em;
  padding-left: 2.5em;
  color: white;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
footer h3 {
  color: #CBCBCB;
}
footer a {
  display: inline-block;
  margin-top: 0.6em;
  color: white;
  text-decoration: none;
}

.returnButton {
 position: fixed;
 bottom: 15px;
 left: 20px;
 right: 0;
 transform: none;
 margin-top: 0px;
 
 text-decoration: none;
 opacity: 0.7;
 box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
 padding-left: 16px;
 max-width: 16px;
 
 display: inline-flex;
 align-items: center;
 overflow: hidden;
 width: auto;
 -webkit-transition: max-width 0.5s;
 transition: 0.5s;
 
}

.returnButton:hover {
  max-width: 230px;
 text-decoration: none;
 opacity: 1;
}

.icon {
  margin-right: 12px;
  display: flex;
  align-items: center;
 padding-left: 1px;
 padding-top: 2px;
 padding-right: 4px;
 
}

.text {
  white-space: nowrap;
  padding-right: 0px;
 margin-right: 0px;
}

@media only screen and (max-width: 1080px) {
 
 .returnButton {
  position: sticky;
  scale: 0.8;
  opacity: 0.4;
  margin-left: 10px;
 }
 
 .returnButton:hover {
  margin-left: 0px;
 }
 
 #Proceed {
  margin-bottom: 0px;
 }
 
 footer {
  margin-top: 10px;
 }
 
}
