@charset "UTF-8";
body {
  font-family: 'Montserrat', sans-serif;
  margin: auto;
  padding: 0;
}

/* Colors */
/* Delete these colors*/
/* Delete these colors*/
.statement, .meet-alex {
  padding: 1.5rem;
}

@media (min-width: 48em) {
  .statement, .meet-alex {
    padding: 2rem;
  }
}

@media (min-width: 81.25em) {
  .statement, .meet-alex {
    padding: 3.7rem;
  }
}

@media (min-width: 100em) {
  .statement, .meet-alex {
    padding: 5.5rem;
  }
}

@media (min-width: 112.5em) {
  .statement, .meet-alex {
    padding: 6.25rem;
  }
}

.hero-signup-headline {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: .9;
  margin-bottom: 1rem;
}

@media (min-width: 48em) {
  .hero-signup-headline {
    font-size: 2.5rem;
  }
}

@media (min-width: 81.25em) {
  .hero-signup-headline {
    font-size: 3rem;
  }
}

@media (min-width: 100em) {
  .hero-signup-headline {
    font-size: 3.25rem;
  }
}

@media (min-width: 112.5em) {
  .hero-signup-headline {
    font-size: 3.5rem;
  }
}

.video-play, .statement-headline, .meet-alex-headline {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

@media (min-width: 48em) {
  .video-play, .statement-headline, .meet-alex-headline {
    font-size: 1.85rem;
  }
}

@media (min-width: 81.25em) {
  .video-play, .statement-headline, .meet-alex-headline {
    font-size: 2.3rem;
  }
}

@media (min-width: 100em) {
  .video-play, .statement-headline, .meet-alex-headline {
    font-size: 2.5rem;
  }
}

@media (min-width: 112.5em) {
  .video-play, .statement-headline, .meet-alex-headline {
    font-size: 2.625rem;
  }
}

/******************** Brandon's Common Things **************/
html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

/* Safari input fixes */
input[type=text], textarea, input[type=tel], input[type=email], input[type=password], input[type=number], input[type=url], input[type=submit], button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
}

/* Do not show the outline on the skip link target -- part of underscores. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

a:focus {
  outline: thin dotted;
  /* to show where at when tabbing through doc */
}

textarea, input, select, .ui-selectmenu-button, button {
  /* blue glow when on focus */
}

textarea:focus, input:focus, select:focus, .ui-selectmenu-button:focus, button:focus {
  outline: none;
}

address, dl {
  font-style: normal;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body, p, h1, h2, h3, h4, h5, h6, ul, ol, pre, figure {
  margin: 0;
}

input[type="button" i], input[type="submit" i], input[type="reset" i], input[type="file" i]::-webkit-file-upload-button, button {
  padding: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
}

a:focus {
  outline: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: 700;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.hero {
  background: #1a83f2;
  width: 100%;
  position: relative;
  padding: 0;
  margin: 94px auto auto auto;
}

@media (min-width: 81.25em) {
  .hero {
    margin: 142px auto auto auto;
    width: 100%;
    z-index: 1;
  }
}

.hero-aspect-ratio {
  display: block;
  width: 100%;
  height: 0px;
  position: relative;
}

@media (min-width: 48em) {
  .hero-aspect-ratio {
    padding-bottom: 100%;
  }
}

@media (min-width: 64em) {
  .hero-aspect-ratio {
    padding-bottom: 40%;
  }
}

.hero-image {
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 50vh;
  margin: 0;
  position: relative;
  display: block;
  opacity: 0;
  transition: all 1s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

@media (min-width: 48em) {
  .hero-image {
    width: 100%;
    height: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-size: contain;
  }
}

.hero-image.reveal {
  opacity: 1;
}

.hero-signup {
  /*&-thanks {
   	@extend %block-padding;
 	  width: 100%;
 	  opacity: 0;
 	  visibility: hidden;
 		 @include absolute(top 0 right 0);	
 		 transition: $slow;
 		 transition-delay: .4s;
 		 z-index: 1;
 		 text-align: center;
    h2, h3 {
    	@extend %headline2;
    	color: $gray;
    	margin-bottom: 1rem;
    }
 	 }	*/
}

.hero-signup-form {
  background: #0a79c4;
  color: #fff;
  transition: opacity 0.3s cubic-bezier(0.57, 0.2, 0.21, 0.89) 0.5s;
  opacity: 0;
}

@media (min-width: 48em) {
  .hero-signup-form {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

@media (min-width: 64em) {
  .hero-signup-form {
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.hero-signup-form.reveal {
  opacity: 1;
}

.hero-signup-form-positioning {
  padding: 1.5rem;
}

@media (min-width: 81.25em) {
  .hero-signup-form-positioning {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 180px);
    padding: 0;
  }
}

.hero-signup-headline em {
  white-space: nowrap;
  font-style: normal;
}

.hero-signup-fields {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: flex-start;
}

.hero-signup-field {
  padding: 0 0;
  margin: .5rem 0;
  position: relative;
}

.hero-signup-field label.error {
  background: #f55357;
  padding: .25rem .75rem .3rem;
  border-radius: 8.5px;
  display: block;
  position: absolute;
  bottom: 90%;
  left: 0;
  white-space: nowrap;
  z-index: 9999;
  font-size: .7rem;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
}

.hero-signup-field label.error:after {
  height: 0;
  width: 0;
  margin-left: -6px;
  content: " ";
  position: absolute;
  right: 30px;
  top: 100%;
  border-color: rgba(245, 83, 87, 0);
  border: solid transparent;
  pointer-events: none;
  border-top-color: #f55357;
  border-width: 6px;
}

.hero-signup-field.has-text .hero-signup-label {
  opacity: 1;
}

.hero-signup-field.has-text.is-focused .hero-signup-label {
  color: #0c39a1;
}

@media (min-width: 81.25em) {
  .hero-signup-field.email {
    width: 60%;
    min-width: 200px;
    display: inline-block;
  }
}

@media (min-width: 81.25em) {
  .hero-signup-field.zip {
    width: 40%;
    min-width: 140px;
    padding-left: .5rem;
    display: inline-block;
  }
}

.hero-signup-label {
  position: absolute;
  top: 0.25rem;
  left: 1.5rem;
  display: block;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  font-size: .7rem;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  opacity: 0;
}

.hero-signup-label.revealed {
  font-size: 100%;
  position: relative;
}

.hero-signup-input {
  font-family: 'Montserrat', sans-serif;
  width: 100%;
  background: #55a3d8;
  border: 0;
  color: #fff;
  padding: .75rem 1.5rem;
  font-size: 1.25em;
  border-radius: 1.1em !important;
  transition: all 0.6s cubic-bezier(0.5, 1.65, 0.4, 0.8);
  -webkit-appearance: none;
  cursor: pointer;
}

.hero-signup-input.placeholder {
  color: #fff;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.hero-signup-input:-moz-placeholder {
  color: #fff;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.hero-signup-input::-moz-placeholder {
  color: #fff;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.hero-signup-input:-ms-input-placeholder {
  color: #fff;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.hero-signup-input::-webkit-input-placeholder {
  color: #fff;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

@media (min-width: 48em) {
  .hero-signup-input {
    padding: 1rem 1.5rem;
    border-radius: 1.875em !important;
  }
}

.hero-signup-input:hover {
  background: #fff;
  color: #1a83f2;
}

.hero-signup-input:hover.placeholder {
  color: #1a83f2;
}

.hero-signup-input:hover:-moz-placeholder {
  color: #1a83f2;
}

.hero-signup-input:hover::-moz-placeholder {
  color: #1a83f2;
}

.hero-signup-input:hover:-ms-input-placeholder {
  color: #1a83f2;
}

.hero-signup-input:hover::-webkit-input-placeholder {
  color: #1a83f2;
}

.hero-signup-input:focus {
  background: #fff;
  color: #0c39a1;
}

.hero-signup-input:focus.placeholder {
  color: #0c39a1;
}

.hero-signup-input:focus:-moz-placeholder {
  color: #0c39a1;
}

.hero-signup-input:focus::-moz-placeholder {
  color: #0c39a1;
}

.hero-signup-input:focus:-ms-input-placeholder {
  color: #0c39a1;
}

.hero-signup-input:focus::-webkit-input-placeholder {
  color: #0c39a1;
}

.hero-signup-button {
  background: #f55357;
  margin-top: .75rem;
}

.hero-signup-button:hover {
  background: #d9474b;
}

.hero-signup-form-response {
  padding: 4rem 5rem;
  text-align: center;
  max-width: 64em;
  font-size: 1rem;
}

@media (min-width: 48em) {
  .hero-signup-form-response {
    font-size: 1.1rem;
  }
}

@media (min-width: 64em) {
  .hero-signup-form-response {
    font-size: 1.2rem;
  }
}

@media (min-width: 48em) {
  .video-layer {
    padding: 2rem;
  }
}

@media (min-width: 64em) {
  .video-layer {
    padding: 4rem;
  }
}

@media (min-width: 81.25em) {
  .video-layer {
    padding: 5rem;
  }
}

@media (min-width: 100em) {
  .video-layer {
    padding: 5.5rem;
  }
}

@media (min-width: 112.5em) {
  .video-layer {
    padding: 6.25rem;
  }
}

.video {
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
  margin: auto;
  box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.35);
  z-index: 100;
  position: relative;
}

@media (min-width: 81.25em) {
  .video {
    width: 960px;
    margin-top: -7rem;
  }
}

@media (min-width: 100em) {
  .video {
    margin-top: -10rem;
  }
}

.video-aspect-ratio {
  height: 0;
  width: 100%;
  padding-bottom: 80%;
  overflow: hidden;
}

@media (min-width: 48em) {
  .video-aspect-ratio {
    padding-bottom: 56.25%;
  }
}

.video-image {
  width: 100%;
  height: 100%;
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.video-anchor {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.video-message {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

@media (min-width: 81.25em) {
  .video-message {
    position: absolute;
    bottom: 2rem;
    left: 50%;
  }
}

.video-play {
  display: inline-block;
  margin: auto;
}

.video-play-icon {
  background: #0c39a1;
  width: 1.875em;
  height: 1.875em;
  border-radius: 50%;
  display: inline-block;
  fill: #fff;
  vertical-align: middle;
  margin: auto;
  transition: all 0.6s cubic-bezier(0.5, 1.65, 0.4, 0.8);
}

@media (min-width: 81.25em) {
  .video-play-icon {
    width: 5.625rem;
    height: 5.625rem;
  }
}

.video-play-label {
  white-space: nowrap;
  line-height: 5.625rem;
  margin: auto auto auto .3rem;
  vertical-align: middle;
  color: #0c39a1;
  transition: all 0.6s cubic-bezier(0.5, 1.65, 0.4, 0.8);
}

@media (min-width: 81.25em) {
  .video-play-label {
    margin: auto auto auto 1rem;
  }
}

.video-play:hover .video-play-icon {
  background: #1a83f2;
  box-shadow: 0 0 30px white;
}

.video-play:hover .video-play-label {
  color: #1a83f2;
  text-shadow: 0 0 30px white;
}

.video:hover {
  transform: translateY(-3%);
}

.video-modal {
  display: none;
  /*width: 90%;
  max-width: 1200px;*/
  position: relative;
  text-align: center !important;
  opacity: 0;
  transform: scale(0.9);
  transition: all .3s ease-in-out;
}

.video-modal-player {
  display: block;
  position: relative;
  width: 100vw;
  height: 56.25vw;
  max-height: 81vh;
  max-width: 144vh;
  overflow: hidden;
  z-index: 100;
  margin: auto auto 1.5rem auto;
}

.video-modal-player iframe,
.video-modal-player object,
.video-modal-player embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-modal .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  display: block;
  width: 3em;
  height: 3em;
  padding: .75em;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background: transparent;
  display: none;
  transform: translateX(50%) translateY(-50%);
  transition: all .3s ease-in-out;
}

@media (min-width: 48em) {
  .video-modal .close {
    display: block;
  }
}

.video-modal .close svg {
  fill: #fff;
  width: 1.5em;
  max-height: 3em;
}

.video-modal .close svg:hover {
  fill: #0c39a1;
}

.popup_visible .video-modal {
  opacity: 1;
  transform: scale(1);
}

.popup_background {
  background: #1a83f2 !important;
  opacity: 1 !important;
}

.promo-bar {
  width: 100%;
}

@media (min-width: 64em) {
  .promo-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-content: stretch;
    align-items: stretch;
  }
}

.statement {
  width: 100%;
  background: #0c39a1;
}

@media (min-width: 64em) {
  .statement {
    width: 50%;
  }
}

.statement-anchor {
  color: #fff;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.statement-teaser {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

@media (min-width: 81.25em) {
  .statement-teaser {
    font-size: 1.175rem;
  }
}

@media (min-width: 100em) {
  .statement-teaser {
    font-size: 1.275rem;
  }
}

@media (min-width: 112.5em) {
  .statement-teaser {
    font-size: 1.375rem;
  }
}

.statement-button {
  background: #1a83f2;
}

.statement-button:hover {
  background: #1c8aff;
}

.meet-alex {
  width: 100%;
  background: #1a83f2;
}

@media (min-width: 64em) {
  .meet-alex {
    width: 50%;
  }
}

.meet-alex-anchor {
  color: #fff;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.meet-alex-teaser {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

@media (min-width: 81.25em) {
  .meet-alex-teaser {
    font-size: 1.175rem;
  }
}

@media (min-width: 100em) {
  .meet-alex-teaser {
    font-size: 1.275rem;
  }
}

@media (min-width: 112.5em) {
  .meet-alex-teaser {
    font-size: 1.375rem;
  }
}

.meet-alex-headshot {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  display: block;
  position: relative;
}

@media (min-width: 64em) {
  .meet-alex-headshot {
    max-width: 270px;
    height: auto;
    padding-bottom: 0;
  }
}

@media (min-width: 81.25em) {
  .meet-alex-headshot {
    max-width: 350px;
  }
}

@media (min-width: 100em) {
  .meet-alex-headshot {
    max-width: 420px;
  }
}

@media (min-width: 112.5em) {
  .meet-alex-headshot {
    max-width: 450px;
  }
}

.meet-alex-headshot-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 1rem 1rem 0 rgba(0, 0, 0, 0.35);
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.57, 0.2, 0.21, 0.89);
}

.meet-alex-headshot-image:hover {
  transform: scale(1.05);
}
