/* Eric Meyer's Reset CSS v2.0 - http://cssreset.com */
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 {
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  font-size: 16px;
}

body {
  font-family: "Noto Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #212121;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f4f4f4 url("../img/page-bg.jpg") 0 0;
  background-size: cover;
  position: relative;
}

body:after {
  content: "";
  transform: skew(0, 30deg);
  position: absolute;
  left: 0;
  right: 0;
  top: -30vw;
  height: 70vh;
  background: #fcfcfc;
  z-index: -100;
  box-shadow: inset 0 0 100px rgba(24, 29, 39, 0.015), inset 0 0 250px rgba(24, 29, 39, 0.015), inset 0 0 30px rgba(24, 29, 39, 0.04);
}

strong,
b {
  font-weight: 700;
}

dl,
ol,
ul {
  list-style-type: disc;
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
*,
*::before,
*::after {
  box-sizing: inherit;
}

/* float clearing for IE6 */
* html .clearfix {
  height: 1%;
  overflow: visible;
}

/* float clearing for IE7 */
* + html .clearfix {
  min-height: 1%;
}

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
  font-size: 0;
}

.clr {
  clear: both;
}

/**
 * Main content containers
 * 1. Make the container full-width with a maximum width
 * 2. Center it in the viewport
 * 3. Leave some space on the edges, especially valuable on small screens
 */
.container {
  max-width: 980px;
  /* 1 */
  margin-left: auto;
  /* 2 */
  margin-right: auto;
  /* 2 */
  padding-left: 0;
  /* 3 */
  padding-right: 0;
  /* 3 */
  width: 100%;
  /* 1 */
}

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap;
}

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/**
 * Basic styles for links
 */
a {
  color: #FE9538;
  text-decoration: none;
  transition: color 0.1s linear;
}
a:hover, a:active, a:focus {
  color: #0095ff;
  text-decoration: underline;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 10px 0;
  font-weight: 700;
  line-height: 1.2;
}

code,
kbd,
pre,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1rem;
  padding: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #f8f9fa;
  display: block;
}

.page-wrapper {
  padding: 10% 5% 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page__title {
  color: #000;
  font-size: 3.6rem;
  font-size: calc(26px + 10 * ((100vw - 320px) / 740));
}

.main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 2fr));
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.left,
.right {
  padding: 35px;
  height: 100%;
}

.right {
  background-color: #4c56c0;
  text-align: center;
  padding: 35px;
  color: #fff;
}

.left {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.left p {
  margin-bottom: 10px;
}

.footer {
  text-align: center;
  padding: 20px 0;
  color: #f4f4f4;
}

.siteHeader {
  padding: 15px 40px;
  width: 100%;
  overflow: hidden;
  max-width: 1520px;
  border-bottom: 1px solid #ececec;
  z-index: 1;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  padding: 0 12px;
  margin-right: auto;
  justify-self: flex-start;
}

.logo a {
  font-size: 1.2rem;
}

.logo img {
  max-height: 30px;
  width: auto;
}

.sidePanel {
  width: 250px;
  height: 100%;
  z-index: 999;
  padding-top: 50px;
  cursor: pointer;
  margin-left: -250px;
  background: #16191C;
  color: #fff;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: fixed;
  overflow-y: visible;
  top: 0;
}

#dismiss {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 1.5rem;
}

.sidePanel.active {
  margin-left: 0;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.overlay.active {
  display: block;
  opacity: 1;
}

.sidePanel__inner {
  overflow-y: auto;
}

/** sideNav nav */
.sideNav {
  color: #fff;
  padding: 10px;
  list-style: none;
  margin: 0;
  font-size: 0.825em;
  font-weight: 700;
}

.sideNav__item {
  text-align: center;
}

.sideNav__link {
  padding: 10px;
  display: block;
  position: relative;
  color: #fff;
}
.sideNav__link:hover {
  color: #0095ff;
}

.sideNav__link:after,
.sideNav__link:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  opacity: 0;
  border-style: solid;
  transition: transform 0.3s, opacity 0.3s;
  transition-timing-function: cubic-bezier(0.17, 0.67, 0.05, 1.29);
}

.sideNav__link:before {
  top: 0;
  left: 0;
  border-width: 2px 0 0 2px;
  transform: translate3d(10px, 10px, 0);
}

.sideNav__link:after {
  right: 0;
  bottom: 0;
  border-width: 0 2px 2px 0;
  transform: translate3d(-10px, -10px, 0);
}

.sideNav__link:hover:before,
.sideNav__link:hover:after {
  border-color: #0095ff;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.sideNav__item.current-post-ancestor > a,
.sideNav__item.active > a {
  color: #0095ff;
}

.sidePanel__footer {
  font-size: 0.8rem;
  text-align: center;
  color: #999;
  padding-bottom: 2em;
}

.sidePanel__link {
  color: #999;
  text-decoration: underline;
}

.menu {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
}

.menu__item {
  cursor: pointer;
}

.menu__link:visited,
.menu__link {
  display: block;
  padding: 0 15px;
}

.menu__link:hover,
.menu__link:focus {
  color: #888;
  text-decoration: underline;
}

.btn__secondary, .btn {
  display: inline-block;
  border: 0;
  border-radius: 0;
  text-align: center;
  font-weight: 400;
  text-decoration: none;
  padding: 15px 25px 15px 30px;
  font-size: 0.9rem;
  letter-spacing: 0.1rem;
  cursor: pointer;
  transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
}
.btn__secondary:hover, .btn:hover {
  text-decoration: none;
}

.btn {
  border-radius: 50px;
  border: 1px solid #f9617d;
  color: #fff;
  background-color: #f9617d;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.5);
}
.btn:hover {
  color: #212121;
  background: #fba0b1;
}

.btn__secondary {
  border-radius: 50px;
  border: 1px solid #4c56c0;
  color: #4c56c0;
  background: none;
}
.btn__secondary:hover {
  background-color: #4c56c0;
  color: #fff;
}

/*
|--------------------------------------------------------------------------
| Form
|--------------------------------------------------------------------------
*/
/*
|--------------------------------------------------------------------------
| Form
|--------------------------------------------------------------------------
*/
form {
  margin-top: 20px;
}
form input,
form textarea {
  font-family: "Noto Sans", "Helvetica Neue Light", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  width: 100%;
  padding: 15px;
  border: 1px solid #353c86;
  margin-bottom: 20px;
  font-size: 16px;
  color: #b3b3b3;
  background: #353c86;
  border-radius: 5px;
}
form label {
  display: block;
  margin-bottom: 10px;
}
form textarea {
  height: 200px;
}
form :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #aaa;
}
form ::-moz-placeholder {
  color: #aaa;
}
form ::placeholder {
  color: #aaa;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  z-index: 1;
  outline: none;
}
select::-ms-expand {
  display: none;
}

.acym__select {
  display: block;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: normal;
  color: #aaa;
  line-height: 1.3;
  padding: 0.6em 1.4em 0.5em 0.8em;
  width: 100%;
  max-width: 90%;
  box-sizing: border-box;
  margin: 0 auto 20px auto;
  border: 1px solid #353c86;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: 0.5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #3d459a 0%, #353c86 100%);
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

.acym__select::-ms-expand {
  display: none;
}

.acym__select:hover {
  border-color: #888;
}

.acym__select:focus {
  border-color: #aaa;
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}

.acym__select option {
  font-weight: normal;
}

.hero {
  max-width: 1520px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.hero h1 {
  font-size: 4rem;
}
.hero .heroContent {
  margin-top: 5%;
  margin-left: 5%;
  max-width: 500px;
}

.buttons {
  margin-top: 10%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.buttons .btn {
  max-width: 250px;
}
.buttons .info {
  position: relative;
}
.buttons .info::before {
  background-color: #feb06b;
  content: "";
  position: absolute;
  top: 2px;
  width: 75%;
  height: 20px;
  z-index: -1;
  transition: width 0.3s linear;
}
.buttons .info:hover::before {
  width: 100%;
}

/**
 * Basic typography style for copy text
 */
@media (max-width: 46.24em) {
  .main {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map*/