body {
  font-family: Lato, Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
  background-color: #FFF;
}

h1, .h1,
h2, .h2,
h3, .h3 {
  font-family: Montserrat, Lato, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.2;
}

h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: Lato, Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

h1, .h1 {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

@media screen and (min-width: 60em) {
  h1, .h1 {
    font-size: 3.8rem;
  }
}

abbr {
  color: inherit;
  position: relative;
  border-bottom: none;
}

abbr:after {
  content: '';
  position: absolute;
  bottom: 0.05em;
  right: 0;
  left: 0;
  border-bottom: 2px dashed rgba(255,255,255,0.3);
}

sup {
  font-size: 0.3em;
  top: -2em;
}





.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
}

.rslides li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
}

.rslides li:first-child {
  position: relative;
  display: block;
  float: left;
}

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
}






/* This is the core CSS of Tooltipster */

/* GENERAL STRUCTURE RULES (do not edit this section) */

.tooltipster-base {
	/* this ensures that a constrained height set by functionPosition,
	if greater that the natural height of the tooltip, will be enforced
	in browsers that support display:flex */
	display: flex;
	pointer-events: none;
	/* this may be overriden in JS for fixed position origins */
	position: absolute;
}

.tooltipster-box {
	/* see .tooltipster-base. flex-shrink 1 is only necessary for IE10-
	and flex-basis auto for IE11- (at least) */
	flex: 1 1 auto;
}

.tooltipster-content {
	/* prevents an overflow if the user adds padding to the div */
	box-sizing: border-box;
	/* these make sure we'll be able to detect any overflow */
	max-height: 100%;
	max-width: 100%;
	overflow: auto;
}

.tooltipster-ruler {
	/* these let us test the size of the tooltip without overflowing the window */
	bottom: 0;
	left: 0;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	visibility: hidden;
}

/* ANIMATIONS */

/* Open/close animations */

/* fade */

.tooltipster-fade {
	opacity: 0;
	-webkit-transition-property: opacity;
	-moz-transition-property: opacity;
	-o-transition-property: opacity;
	-ms-transition-property: opacity;
	transition-property: opacity;
}
.tooltipster-fade.tooltipster-show {
	opacity: 1;
}

/* grow */

.tooltipster-grow {
	-webkit-transform: scale(0,0);
	-moz-transform: scale(0,0);
	-o-transform: scale(0,0);
	-ms-transform: scale(0,0);
	transform: scale(0,0);
	-webkit-transition-property: -webkit-transform;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
	-webkit-backface-visibility: hidden;
}
.tooltipster-grow.tooltipster-show {
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	-o-transform: scale(1,1);
	-ms-transform: scale(1,1);
	transform: scale(1,1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

/* swing */

.tooltipster-swing {
	opacity: 0;
	-webkit-transform: rotateZ(4deg);
	-moz-transform: rotateZ(4deg);
	-o-transform: rotateZ(4deg);
	-ms-transform: rotateZ(4deg);
	transform: rotateZ(4deg);
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform;
	-o-transition-property: -o-transform;
	-ms-transition-property: -ms-transform;
	transition-property: transform;
}
.tooltipster-swing.tooltipster-show {
	opacity: 1;
	-webkit-transform: rotateZ(0deg);
	-moz-transform: rotateZ(0deg);
	-o-transform: rotateZ(0deg);
	-ms-transform: rotateZ(0deg);
	transform: rotateZ(0deg);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
	-webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	-o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
	transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

/* fall */

.tooltipster-fall {
	-webkit-transition-property: top;
	-moz-transition-property: top;
	-o-transition-property: top;
	-ms-transition-property: top;
	transition-property: top;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-fall.tooltipster-initial {
	top: 0 !important;
}
.tooltipster-fall.tooltipster-show {
}
.tooltipster-fall.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	top: 0 !important;
	opacity: 0;
}

/* slide */

.tooltipster-slide {
	-webkit-transition-property: left;
	-moz-transition-property: left;
	-o-transition-property: left;
	-ms-transition-property: left;
	transition-property: left;
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
	-webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	-o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
	transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}
.tooltipster-slide.tooltipster-initial {
	left: -40px !important;
}
.tooltipster-slide.tooltipster-show {
}
.tooltipster-slide.tooltipster-dying {
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	left: 0 !important;
	opacity: 0;
}

/* Update animations */

/* We use animations rather than transitions here because
 transition durations may be specified in the style tag due to
 animationDuration, and we try to avoid collisions and the use
 of !important */

/* fade */

@keyframes tooltipster-fading {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.tooltipster-update-fade {
	animation: tooltipster-fading 400ms;
}

/* rotate */

@keyframes tooltipster-rotating {
	25% {
		transform: rotate(-2deg);
	}
	75% {
		transform: rotate(2deg);
	}
	100% {
		transform: rotate(0);
	}
}

.tooltipster-update-rotate {
	animation: tooltipster-rotating 600ms;
}

/* scale */

@keyframes tooltipster-scaling {
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

.tooltipster-update-scale {
	animation: tooltipster-scaling 600ms;
}

/**
 * DEFAULT STYLE OF THE SIDETIP PLUGIN
 * 
 * All styles are "namespaced" with .tooltipster-sidetip to prevent
 * conflicts between plugins.
 */

/* .tooltipster-box */

.tooltipster-sidetip .tooltipster-box {
	background: #ffffff;
	border-radius: 4px;
	-webkit-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
	box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.2);
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-box {
	margin-top: 8px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-box {
	margin-right: 8px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-box {
	margin-left: 8px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-box {
	margin-bottom: 8px;
}

/* .tooltipster-content */

.tooltipster-sidetip .tooltipster-content {
	color: #0a0a0a;
	line-height: 18px;
	padding: 10px 14px;
}

/* .tooltipster-arrow : will keep only the zone of .tooltipster-arrow-uncropped that
corresponds to the arrow we want to display */

.tooltipster-sidetip .tooltipster-arrow {
	overflow: hidden;
	position: absolute;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow {
	height: 10px;
	/* half the width, for centering */
	margin-left: -10px;
	top: 0;
	width: 20px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	right: 0;
	/* top 0 to keep the arrow from overflowing .tooltipster-base when it has not
	been positioned yet */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow {
	height: 20px;
	margin-top: -10px;
	left: 0;
	/* same as .tooltipster-left .tooltipster-arrow */
	top: 0;
	width: 10px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow {
	bottom: 0;
	height: 10px;
	margin-left: -10px;
	width: 20px;
}

/* common rules between .tooltipster-arrow-background and .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-background, .tooltipster-sidetip .tooltipster-arrow-border {
	height: 0;
	position: absolute;
	width: 0;
}

/* .tooltipster-arrow-background */

.tooltipster-sidetip .tooltipster-arrow-background {
	border: 10px solid transparent;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-background {
	border-bottom-color: #ffffff;
	left: 0px;
	top: 3px;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-background {
	border-left-color: #565656;
	left: -3px;
	top: 0px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-background {
	border-right-color: #565656;
	left: 3px;
	top: 0px;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-background {
	border-top-color: #565656;
	left: 0px;
	top: -3px;
}

/* .tooltipster-arrow-border */

.tooltipster-sidetip .tooltipster-arrow-border {
	border: 10px solid transparent;
	left: 0;
	top: 0;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-border {
	border-bottom-color: #ffffff;
}

.tooltipster-sidetip.tooltipster-left .tooltipster-arrow-border {
	border-left-color: black;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-border {
	border-right-color: black;
}

.tooltipster-sidetip.tooltipster-top .tooltipster-arrow-border {
	border-top-color: black;
}

/* tooltipster-arrow-uncropped */

.tooltipster-sidetip .tooltipster-arrow-uncropped {
	position: relative;
}

.tooltipster-sidetip.tooltipster-bottom .tooltipster-arrow-uncropped {
	top: -10px;
}

.tooltipster-sidetip.tooltipster-right .tooltipster-arrow-uncropped {
	left: -10px;
}

/* ============================================================================
 * FOUNDATION OVERRIDES -------------------------------------------------------
 * ========================================================================= */

.row--wide {
  max-width: 80rem;
}

.row--full {
  max-width: none;
}


  .columns > *:first-child { margin-top: 0; }
  .columns > *:last-child { margin-bottom: 0; }






.button {
  padding-right: 1.4em;
  padding-left: 1.4em;
  transition: all ease 200ms;
}

.button--pill {
  border-radius: 1000px;
}

.button--outline,
.button--outline:hover,
.button--outline:focus {
  background-color: transparent;
  border-color: currentColor;
}

.button--white {
  background-color: #fff !important;
  color: #3498db !important;
}

.button--white:hover,
.button--white:focus,
.button--white:active {
  background-color: #2980b9 !important;
  color: #fff !important;
}

.button--brand {
  background-color: #3498db;
  color: #F4F4F4;
  font-weight: bold;
}

.button--brand:hover,
.button--brand:focus {
  background-color: #2980b9;
}

.button--brand-dark {
  background-color: #0E7C7B;
  color: #F4F4F4;
  font-weight: bold;
  transition: all ease 250ms;
}

.button--brand-dark:hover,
.button--brand-dark:focus {
  background-color: #076565;
}

.button--small {
  font-size: 12px;
}

.button--large {
  font-size: 18px;
}

@media only screen and (min-width: 640px) {
  .button {
    font-size: 18px;
  }

  .button--small {
    font-size: 14px;
  }

  .button--large {
    font-size: 22px;
  }
}

/* ============================================================================
 * OBJECTS --------------------------------------------------------------------
 * ========================================================================= */

.o-spacer {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media only screen and (min-width: 640px) {
  .o-spacer\@s {
    padding: 0;
  }
}


.o-spacer--large {
  padding-top: 40px;
  padding-bottom: 40px;
}

.o-spacer--xlarge {
  padding-top: 40px;
  padding-bottom: 40px;
}

.o-spacer--xxlarge {
  padding-top: 80px;
  padding-bottom: 80px;
}

.o-spacer--huge {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 640px) {
  .o-spacer--xlarge {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .o-spacer--xxlarge {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .o-spacer--huge {
    padding-top: 160px;
    padding-bottom: 160px;
  }
}

.o-spacer--no-top {
  padding-top: 0;
}

@media only screen and (max-width: 64em) {
  .o-spacer--top\@md {
    padding-bottom: 0;
  }
}

.o-spacer--no-bottom {
  padding-bottom: 0;
}





.o-v-center {
  display: flex; /* [1] */
  min-height: 100vh; /* [1a] */
}

  .o-v-center__me {
    flex: 1 1 auto; /* [2] */
    align-self: center; /* [2a] */
  }






.o-hero {
  position: relative;
  padding: 120px 0;
}

.o-hero > .row {
  width: 100%;
}

@media only screen and (min-width: 640px) {
  .o-hero {
    padding: 240px 0;
  }
}


  .o-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 20px;
    right: 20px;
    margin: auto;
    text-align: center;
  }







.o-styled-ol {
  counter-reset: styled-ol;
  margin: 0 0 0 20px;
  padding: 0;
  list-style-type: none;
}

.o-styled-ol > li {
  counter-increment: styled-ol;
  font-size: 20px;
}

.o-styled-ol > li::before {
  content: counter(styled-ol);
  display: inline-block;
  font-weight: bold;
  margin-right: 15px;
  opacity: 0.3;
}

@media only screen and (min-width: 640px) {
  .o-styled-ol > li {
    font-size: 22px;
  }
}





.o-icon {
  width: 1em;
}

.o-icon--large {
  width: 200px;
  max-width: 80%;
}

@media only screen and (min-width: 64em) {
  .o-icon--large {
    width: 300px;
  }
}




.o-styled-icon {
  display: inline-block;
  width: 100px;
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid rgba(0,0,0,1);
  border-radius: 50%;
  background-color: #fff;
}





.o-subtle-icon {
  opacity: 0.2;
}







.o-inline-icon {
  height: 1em;
}

/* ============================================================================
 * COMPONENTS -----------------------------------------------------------------
 * ========================================================================= */

.icon--trophy {
  width: 100px;
  height: 100px;
}

@media only screen and (min-width: 640px) {
  .icon--trophy {
    width: 160px;
    height: 160px;
  }
}



.c-main-nav {
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 30px 15px;
  transition: all ease 500ms;
}

@media only screen and (min-width: 640px) {
  .c-main-nav {
    padding: 60px 40px 0;
  }
}


  .c-main-nav__logo {
    display: inline-block;
  }

  @media only screen and (max-width: 499px) {
    .c-main-nav__logo {
      width: 100%;
    }

    .c-main-nav__links {
      display: none;
    }
  }


  .c-main-nav__links {
    float: right;
  }


    .c-main-nav__link {
      margin-bottom: 0;
    }





.c-logo {
  font-size: 14px;
  width: 10.06em;
  height: 3.7em;
  fill: #3498db;
  stroke: #3498db;
}

.c-logo--white {
  fill: #fff;
  stroke: #fff;
}

.c-logo--large {
  font-size: 22px;
}

@media only screen and (max-width: 499px) {
  .c-logo {
    display: block;
    margin: 0 auto;
  }
}

@media only screen and (min-width: 640px) {
  .c-logo {
    font-size: 16px;
  }

  .c-logo--large {
    font-size: 36px;
  }
}




.c-stripe-logo {
  font-size: 1em;
  width: 2.4em;
  height: 1em;
  position: relative;
  top: 0.21em;
}




.c-contrast-logo {
  width: 5.48em;
  height: 0.76em;
  fill: currentColor;
}





.c-signup-form {
  transition: all 500ms ease;
  max-width: 400px;
  margin: 0 auto;
}

@media only screen and (max-width: 639px) {
  .c-signup-form.is-collapsed {
    max-width: 150px;
  }
}

@media only screen and (min-width: 640px) {
  .c-signup-form {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    max-width: 550px;
    width: 100%;
    margin: 0;
  }

  .c-signup-form.is-collapsed {
    width: 180px; /* hardcoded magic number to allow transition to 100% */
  }
}

@keyframes bringAttention {
  from {
    -webkit-box-shadow: 0px 0px 0px 5px rgba(255,255,204,0);
    -moz-box-shadow: 0px 0px 0px 5px rgba(255,255,204,0);
    box-shadow: 0px 0px 0px 5px rgba(255,255,204,0);
  }

  to {
    -webkit-box-shadow: 0px 0px 0px 5px rgba(255,255,204,0.5);
    -moz-box-shadow: 0px 0px 0px 5px rgba(255,255,204,0.5);
    box-shadow: 0px 0px 0px 5px rgba(255,255,204,0.5);
  }
}


.c-signup-form.is-highlighted {
  border-radius: 1000px;
  animation: 500ms bringAttention 500ms forwards;
}

  @media only screen and (max-width: 639px) {
    .c-signup-form.is-collapsed .c-signup-form__input {
      height: 0;
      padding: 0;
      border: none;
      margin: 0;
    }
  }

  @media only screen and (min-width: 640px) {
    .c-signup-form.is-collapsed .c-signup-form__input {
      width: 0;
      padding: 0;
      border: none;
    }
  }

  .c-signup-form__input::-webkit-input-placeholder { color: rgba(0,0,0,0.4); } /* Chrome/Opera/Safari */
  .c-signup-form__input::-moz-placeholder { color: rgba(0,0,0,0.4); } /* Firefox 19+ */
  .c-signup-form__input:-ms-input-placeholder { color: rgba(0,0,0,0.4); } /* IE 10+ */
  .c-signup-form__input:-moz-placeholder { color: rgba(0,0,0,0.4); } /* Firefox 18- */

  .c-signup-form__input,
  .c-signup-form__button {
    height: 50px;
    text-align: center;
  }

  .c-signup-form__input {
    transition: all 500ms ease !important;
    background-color: rgba(255,255,255,1);
    width: 100%;
  }

  .c-signup-form__input,
  .c-signup-form__input:focus {
    border-color: rgba(10,10,10,0.2);
  }

  .c-signup-form__input:focus {
    box-shadow: none;
    border-color: #1ABC9C;
    color: #1ABC9C;
    font-weight: bold;
  }

  .c-signup-form--dark .c-signup-form__input::-webkit-input-placeholder { color: rgba(255,255,255,0.8); } /* Chrome/Opera/Safari */
  .c-signup-form--dark .c-signup-form__input::-moz-placeholder { color: rgba(255,255,255,0.8); } /* Firefox 19+ */
  .c-signup-form--dark .c-signup-form__input:-ms-input-placeholder { color: rgba(255,255,255,0.8); } /* IE 10+ */
  .c-signup-form--dark .c-signup-form__input:-moz-placeholder { color: rgba(255,255,255,0.8); } /* Firefox 18- */

  .c-signup-form--dark .c-signup-form__input {
    background-color: rgba(0,0,0,0.1);
  }

  .c-signup-form--dark .c-signup-form__input,
  .c-signup-form--dark .c-signup-form__input:focus {
    border-color: rgba(0,0,0,0.1);
    color: #f4f4f4;
  }

  .c-signup-form--dark .c-signup-form__input:focus {
    background-color: rgba(0,0,0,0.2);
    box-shadow: none;
  }

  @media only screen and (max-width: 639px) {
    .c-signup-form__input,
    .c-signup-form__button {
      width: 100%;
    }
  }

  .c-signup-form__input {
    margin-bottom: 10px;
  }

  .c-signup-form__button {
    margin: 0;
  }

  @media only screen and (min-width: 640px) {
    .c-signup-form__input,
    .c-signup-form__button {
      height: 60px;
    }

    .c-signup-form__input {
      padding-left: 20px;
      margin-bottom: 0;
      font-size: 18px;
      border-radius: 1000px 0 0 1000px;
      text-align: left;
    }

    .c-signup-form__input,
    .c-signup-form__input:focus {
      border-right: none;
    }

    .c-signup-form__button {
      border-radius: 1000px;
    }

    .c-signup-form:not(.is-collapsed) .c-signup-form__button {
      padding-right: 35px;
      border-radius: 0 1000px 1000px 0;
    }
  }






.c-slide-nav {
  font-size: 26px;
}

  .c-slide-nav__item--active {
    font-weight: bold;
  }






/**
 * Mockup component
 *
 * This enables us to take an image (screenshot) and place it within a mockup
 * container (browser, phone, screen etc.)
 *
 * Can work in conjunction with the Parallax module (js-parallax).
 */

.c-mockup {
  position: relative;
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  max-width: 90%;
  width: 640px;
  -webkit-box-shadow: 0px 10px 0px 1px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 10px 0px 1px rgba(0,0,0,0.05);
  box-shadow: 0px 10px 0px 1px rgba(0,0,0,0.05);
}

.c-mockup.c-mockup {
  margin: 60px auto 0;
}

@media screen and (min-width: 64em) {
  .c-mockup {
    /* position out to the right */
    position: absolute;
    right: -20px;
    bottom: 0px;
    left: 50%;
    max-width: 840px;
    width: auto;
  }

  .c-mockup.c-mockup {
    margin: 0;
  }
}

.c-mockup:before {
  display: block;
  content: "";
  width: 100%;
}

.c-mockup--browser {
  background-image: url("/assets/images/browser-mockup.svg");
}

.c-mockup--browser:before {
  padding-top: 59%;
}

@media screen and (min-width: 64em) {
  .c-mockup--browser:before {
    padding-top: 64%;
  }
}

  .c-mockup__image-wrap {
    position: absolute;
    overflow: hidden;
  }

  .c-mockup--browser .c-mockup__image-wrap {
    top: 9%;
    left: 0%;
    bottom: 0;
    width: 100%;
  }





.c-pricing {
  display: block;
  font-size: 18px;
  padding: 40px;
  box-shadow: rgba(29,29,31,0.07) 0 10px 60px;
}

.c-pricing__amount {
  display: block;
  font-size: 48px;
}

.c-pricing__currency {
  font-size: 0.6em;
}

.c-pricing__amount:after {
  content: "/mo";
  font-size: 18px;
  margin-left: -5px;
}

@media screen and (min-width: 640px) {
  .c-pricing {
    display: inline-block;
    font-size: 24px;
    padding: 40px 100px;
  }

  .c-pricing__amount {
    display: inline-block;
  }
}













.madeby {
  -webkit-box-shadow: -2px -2px 0px 2px rgba(0, 15, 49, 0.1);
     -moz-box-shadow: -2px -2px 0px 2px rgba(0, 15, 49, 0.1);
          box-shadow: -2px -2px 0px 2px rgba(0, 15, 49, 0.1);
}

.madeby:hover {
  background-color: #fff000;
}

.madeby .madebyvisible > * {
  vertical-align: middle;
}

.madeby a {
  color: #222;
}

.madeby a:hover {
  text-decoration: none;
}

.madeby .contrast-logo {
  height: 12px;
  width: 85px;
  margin: 0 0 1px 2px;
}

.fix-bottom-right {
  right: 0;
  -webkit-border-top-left-radius: 7px;
      -moz-border-radius-topleft: 7px;
          border-top-left-radius: 7px;
}

.fix-bottom-right,
.fix-bottom-left {
  position: fixed;
  bottom: 0;
  font-size: 14px;
  z-index: 100;
  display: block;
  padding: 0.6em;
  background-color: #fff;
  color: #222;
  -webkit-transition: all 0.25s ease-in-out;
     -moz-transition: all 0.25s ease-in-out;
       -o-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out;
}

.fix-bottom-right:hover,
.fix-bottom-left:hover {
  padding-bottom: 0.8em;
}














.c-saas-wrapper {
  display: flex;
  align-items: center;
  background-color: #eee;
  padding: 20px;
}

.c-saas-wrapper .c-logo {
  flex: 0 0 auto;
  margin-right: 10px;
}

.c-saas-wrapper .button {
  flex: 0 0 auto;
  margin: 0 0 0 16px;
}

@media screen and (max-width: 639px) {
  .c-saas-wrapper {
    padding-right: 0;
  }

  .c-saas-wrapper .button {
    display: none;
  }
}

.c-saas-wrapper .c-saas {
  display: flex;
  overflow: hidden;
}

.c-saas {
  font-family: 'Lato', sans-serif;
  list-style-type: none;
  margin: 0;
}

.c-saas__item {
  padding: 0;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  min-width: 80px;
}

.c-saas__item:last-child {
  margin-right: 0;
}

.c-saas__avatar {
  border-radius: 50%;
  vertical-align: middle;
  margin-bottom: 5px;
  border: 3px solid #3498db;
}

.c-saas__name {
  display: block;
  text-transform: capitalize;
}








/* ============================================================================
 * THEMES -===-----------------------------------------------------------------
 * ========================================================================= */

.t-emphasise p,
p.t-emphasise {
  font-size: 18px;
}

/* ============================================================================
 * UTILITIES ------------------------------------------------------------------
 * ========================================================================= */

@media screen and (max-width: 639px) {
  .text-center\@s {
    text-align: center;
  }
}

@media screen and (max-width: 64em) {
  .text-center\@md {
    text-align: center;
  }
}

.u-relative {
  position: relative !important;
}

.u-bg--brand {
  background-color: #3498db !important;
  color: #F4F4F4;
}

.u-bg--brand a,
.u-bg--brand a:hover,
.u-bg--brand a:focus {
  color: inherit;
}

.u-bg--dark-blue {
  background-color: #34495e;
  color: #F4F4F4;
}

.u-bg--light-grey {
  background-color: #f7f7f7;
}

.u-bg--blue {
  background-color: #3498db;
  color: #F4F4F4;
}

.u-bt--brand {
  border-top: 4px solid #1ABC9C;
}

.u-subtle,
.u-subtle p {
  opacity: 0.5 !important;
}

.u-fs--italic {
  font-style: italic !important;
}

.u-fw--light {
  font-weight: 300 !important;
}

.u-ff--lato {
  font-family: Lato, Montserrat, "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.u-fc--brand {
  color: #1ABC9C;
}

.u-fc-inherit {
  color: inherit !important;
}

.u-tiny-sup {
  font-size: 0.3em;
  top: -1.7em;
}

.u-highlight {
  background-color: #ffc;
  padding: 5px;
  margin-left: -5px;
}

.u-classic-link {
  position: relative;
  color: inherit;
}

.u-classic-link:after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -2px;
  left: 0;
  height: 2px;
  background-color: currentColor;
  opacity: 0.5;
}

.u-classic-link:hover,
.u-classic-link:focus {
  color: inherit;
}

.u-classic-link:hover:after,
.u-classic-link:focus:after {
  opacity: 1;
}

.u-strikethrough {
  text-decoration: line-through !important;
}

.u-clip {
  overflow: hidden !important;
}

.u-no-margin-bottom {
  margin-bottom: 0 !important;
}

.u-display--block {
  display: block !important;
}

.u-display--none {
  display: none !important;
}

@media screen and (min-width: 640px) {
  .u-hide\@mu {
    display: none;
  }
}

@media screen and (max-width: 639px) {
  .u-hide\@md {
    display: none;
  }
}
