/***********************
 * Buttons
 ***********************/
button {
  cursor: pointer; }

.button {
  position: relative;
  display: inline-block;
  padding: 8px 25px;
  font-size: 14px;
  font-size: 1.4rem;
  z-index: 1;
  color: white;
  border: 0;
  border-style: solid;
  border-radius: 2px;
  border-bottom-width: 3px;
  text-decoration: none;
  text-align: center;
  font-weight: 700;
  -webkit-transition: background-color 0.2s, border-color 0.2s, box-shadow 0.1s;
          transition: background-color 0.2s, border-color 0.2s, box-shadow 0.1s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-family: "Roboto", Verdana, Arial, Helvetica, sans-serif; }

.button:hover {
  text-decoration: none; }

.button:first-child {
  margin-left: 0; }

.button:active {
  box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.3); }

.button:focus {
  outline: 0; }

.button--l {
  font-size: 19px;
  border-bottom-width: 3px; }

.button--xl {
  padding: 13px 44px;
  font-size: 27px;
  border-bottom-width: 4px; }

.button--prim {
  background-color: #56B6A0;
  border-bottom-color: #56B6A0; }

.button--prim:hover {
  background-color: #439280;
  border-bottom-color: #56B6A0; }

.button--attr {
  background-color: #666;
  border-bottom-color: #666; }

.button--attr:hover {
  background-color: #4c4c4c;
  border-bottom-color: #000; }

.button--warn {
  background-color: #EC5757;
  border-bottom-color: #A13333; }

.button--warn:hover {
  background-color: #A13333;
  border-bottom-color: #EC5757; }

.button[disabled],
.button.disabled,
.button[disabled]:hover,
.button.disabled:hover {
  background-color: #ccc;
  border-bottom-color: #9b9b9b;
  box-shadow: none;
  color: #9b9b9b;
  pointer-events: none;
  cursor: default; }

.buttons-right {
  text-align: right;
  float: right; }

.button.home-icon--next-arrow-after:after {
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-left: 20px;
  vertical-align: middle;
  content: ''; }

.button--xl.home-icon--next-arrow-after {
  padding: 13px 33px 13px 44px; }

button-l.home-icon--next-arrow-after {
  padding: 7px 20px 6px 23px; }

button-l.home-icon--next-arrow-after:after {
  margin-left: 13px; }

.home-form__terms {
  padding-top: 20px;
  font-size: 15px;
  color: #666;
  text-align: center; }

.form-notifications {
  padding: 22px;
  margin: 10px 0;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  -webkit-transition: 0.2s color, 0.2s background-color, 0.2s border-color;
          transition: 0.2s color, 0.2s background-color, 0.2s border-color; }

.form-notifications.ng-enter {
  -webkit-animation: 0.5s form-notification;
  animation: 0.5s form-notification; }

.form-notifications--invalid {
  border-color: #ff2a2a;
  color: #AD0000; }

.form-notifications--valid {
  border-color: #459c00;
  background-color: #459c00;
  color: #fff; }

@-webkit-keyframes form-notification {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px); } }

@keyframes form-notification {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, -5px);
            transform: translate(0, -5px); } }

.form-notifications__list {
  padding: 10px 0 0 30px; }

.form-notifications__list li {
  padding-bottom: 5px; }

.form-notifications__list li.ng-enter {
  -webkit-animation: 0.5s form-notification;
  animation: 0.5s form-notification; }

.form-notifications__list li.ng-leave {
  -webkit-ansimation: 0.5s form-notification reverse;
  -webkit-animation: 0.5s form-notification reverse;
          animation: 0.5s form-notification reverse; }

.checkbox-container {
  margin-right: 10px;
  float: left; }

.checkbox-container,
.checkbox-icon {
  display: inline-block;
  position: relative;
  width: 2.5em;
  height: 2.5em;
  overflow: hidden;
  vertical-align: middle;
  background-color: #ccc;
  background-position: center center;
  cursor: pointer; }

.checkbox-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
  -webkit-transition: 0.1s -webkit-transform, 0.1s opacity;
          transition: 0.1s transform, 0.1s opacity; }

input:checked + .checkbox-icon {
  opacity: 1;
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9); }

.checkbox-focus {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid #666; }

.checkbox-container input {
  position: absolute;
  display: block;
  top: -20px;
  left: -20px;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 0;
  outline: initial;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; }

.register-button {
  padding-bottom: 3em; }

.register-form__checkbox-label {
  overflow: hidden;
  display: block;
  padding-top: 0.5em; }

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 40px white inset; }

.register-form__agree {
  padding: 10px 0; }

.register-form__agree label {
  display: block;
  padding-bottom: 30px; }

.form-textwrapper {
  display: block;
  position: relative;
  margin-bottom: 10px;
  border: 1px solid #666;
  white-space: nowrap; }

.form-textwrapper__placeholder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 10px 0 10px;
  pointer-events: none;
  font-weight: bold;
  font-size: 13px; }

.form-textwrapper input {
  display: block;
  padding-top: 25px !important;
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none; }

.fixed-modal button {
  margin-left: 10px; }

.forgotten-password {
  text-decoration: underline;
  cursor: pointer; }

@media (max-width: 500px) {
  .forgotten-password {
    display: block;
    padding: 0 0 20px; } }

/***********************
 * Modals
 ***********************/
.modal,
.modal * {
  box-sizing: border-box;
  font-size: 17px; }

.modal .clear,
.modal .clear::before,
.modal .clear::after,
.slideout-modal .clear,
.slideout-modal .clear,
.slideout-modal .clear {
  content: '';
  clear: both;
  display: block; }

.slideout-modal {
  -webkit-overflow-scrolling: touch; }

.slideout-modal,
.slideout-modal *,
.modal,
.modal * {
  box-sizing: border-box; }

.modal a,
.slideout-modal a {
  color: #666; }

.home-form__terms,
.home-form__terms a {
  font-size: 13px; }

.modal-mask-container {
  position: relative;
  z-index: 2;
  width: 1px;
  height: 1px; }

.modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 100;
  background-color: black;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; }

.modal-mask-view.ng-enter {
  -webkit-animation: 0.3s ease-in fade-in;
          animation: 0.3s ease-in fade-in; }

.modal-mask-view.ng-leave {
  -webkit-animation: 0.3s ease-in fade-out;
          animation: 0.3s ease-in fade-out; }

.fixed-modal-view {
  position: relative;
  z-index: 10000; }

.fixed-modal-view.ng-leave,
.fixed-modal-view.ng-enter {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.fixed-modal-view.ng-leave {
  -webkit-animation: 0.2s fixed-modal ease-in reverse;
          animation: 0.2s fixed-modal ease-in reverse; }

.fixed-modal-view.ng-enter {
  -webkit-animation: 0.3s fixed-modal ease-in;
          animation: 0.3s fixed-modal ease-in; }

.fixed-modal-outer-container {
  position: fixed;
  display: table;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100; }

@media screen and (max-width: 600px) {
  .fixed-modal-outer-container {
    display: block; } }

.fixed-modal-container {
  display: table-cell;
  vertical-align: middle;
  text-align: center; }

@media screen and (max-width: 600px) {
  .fixed-modal-container {
    display: block;
    position: fixed; } }

.fixed-modal {
  position: relative;
  display: inline-block;
  width: 600px;
  padding: 20px;
  text-align: left;
  background-color: white;
  border-radius: 2px;
  box-shadow: 0 0 52px 18px rgba(0, 0, 0, 0.4);
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1); }

@media (max-width: 600px) {
  .fixed-modal {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    overflow: auto; } }

.fixed-modal--please-wait {
  display: inline-block;
  width: 200px;
  background-color: transparent;
  box-shadow: none !important; }

.please-wait-text {
  display: block;
  margin-top: 50px;
  font-size: 33px;
  font-size: 3.3rem;
  color: #FFF;
  text-shadow: 0 0 7px #000; }

@-webkit-keyframes fixed-modal {
  0% {
    opacity: 0;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    box-shadow: none; }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    box-shadow: none; }
  90% {
    box-shadow: none; } }

@keyframes fixed-modal {
  0% {
    opacity: 0;
    -webkit-transform: scale(0, 0);
            transform: scale(0, 0);
    box-shadow: none; }
  70% {
    opacity: 1;
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    box-shadow: none; }
  90% {
    box-shadow: none; } }

@-webkit-keyframes fade-in {
  0% {
    opacity: 0; } }

@keyframes fade-in {
  0% {
    opacity: 0; } }

@-webkit-keyframes fade-out {
  100% {
    opacity: 0; } }

@keyframes fade-out {
  100% {
    opacity: 0; } }

.modal__close {
  position: absolute;
  display: inline-block;
  z-index: 1;
  right: 15px;
  top: 15px;
  width: 20px;
  height: 20px;
  background-position: center center;
  background-color: transparent !important;
  background-size: contain;
  border: 0;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-transition: 0.2s background-color, 0.2s -webkit-transform;
          transition: 0.2s background-color, 0.2s transform; }

.modal__close:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }

.modal h3 {
  padding: 0;
  margin: 0;
  padding-bottom: 15px;
  font-family: "Roboto Slab", Sans-serif;
  font-size: 19px;
  font-size: 1.9rem;
  color: #727272; }

.modal p {
  padding-bottom: 15px; }

.home-icon--field-valid,
.home-icon--field-invalid {
  background-position: right 10px center; }

/***********************
 * Slideout modal
 ***********************/
.slideout-modal:not(:empty) {
  display: block;
  position: fixed;
  width: 600px;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 30px;
  overflow: auto;
  background-color: white;
  /* Super high to appear above the wordpress edit bar */
  z-index: 100000; }

.slideout-modal.ng-enter,
.slideout-modal.ng-leave {
  -webkit-animation: 0.3s slideout-modal;
          animation: 0.3s slideout-modal; }

.slideout-modal.ng-leave {
  -webkit-animation-direction: reverse;
          animation-direction: reverse; }

@-webkit-keyframes slideout-modal {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@keyframes slideout-modal {
  0% {
    -webkit-transform: translate(100%, 0);
            transform: translate(100%, 0); } }

@media (max-width: 800px) {
  .slideout-modal {
    width: 100% !important; } }

.slideout-modal h2 {
  font-family: "Roboto Slab", Sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  color: #333;
  margin-bottom: 40px; }

body,
input,
textarea,
button {
  font-family: "Roboto", Verdana, Arial, Helvetica, sans-serif; }

input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  padding: 10px;
  font-size: 20px;
  border: 1px solid #ccc; }

.home-form__input {
  margin-bottom: 20px;
  width: 100%; }

.nrm-btn {
  background: none;
  border: 0; }

.content-centering {
  max-width: 1200px;
  margin: auto; }

.header-logo {
  display: inline-block;
  width: 150px;
  height: 60px;
  margin-left: 70px;
  display: inline-block;
  vertical-align: middle;
  background-position: center center;
  background-size: contain; }

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #fff;
  font-size: 22px; }

.hero--home-header {
  background: #56B6A0; }

.hero__content {
  height: 100%;
  width: 90%;
  top: 60px;
  position: relative;
  display: table;
  color: #fff; }

.hero__content-container {
  display: table-cell;
  padding-left: 5%;
  vertical-align: middle; }

.hero__content h1,
.hero__content h2 {
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 60px;
  font-weight: bold;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5); }

.header-highlight {
  color: #EBEEB7; }

@media (max-width: 1200px) {
  .hero__content h2 {
    font-size: 45px; } }

@media (max-width: 500px) {
  .hero__content h2 {
    font-size: 35px; } }

.hero__left {
  position: relative;
  height: 100%;
  width: 50%;
  z-index: 2;
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-animation: 0.5s hero-left;
          animation: 0.5s hero-left; }

@-webkit-keyframes hero-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

@keyframes hero-left {
  0% {
    -webkit-transform: translate(-100%, 0);
            transform: translate(-100%, 0); } }

.hero__overlay {
  position: absolute;
  width: 200%;
  height: 200%;
  right: 0;
  top: 0;
  background-color: #303c48;
  opacity: 0.82;
  -webkit-transform: translate(0, -20%) rotate(-15deg);
      -ms-transform: translate(0, -20%) rotate(-15deg);
          transform: translate(0, -20%) rotate(-15deg); }

.hero__button-container {
  text-align: right; }

.hero__button {
  margin-top: 30px;
  padding: 20px 30px;
  background-color: #587071;
  border: 0;
  color: #fff;
  font-weight: 600;
  font-size: 20px; }

.hero__video {
  position: absolute;
  right: 0;
  top: 60px;
  width: 50%;
  bottom: 0;
  z-index: 0; }

.hero-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 20px;
  background-color: #A853AC;
  color: #fff;
  z-index: 2; }

.hero-bar h3 {
  font-size: 25px; }

.hero__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100% !important;
  width: 100%; }

@media (max-width: 780px) {
  .hero__video {
    display: none; }
  .hero__left {
    width: 90%; } }

.hero__button {
  padding: 20px 30px;
  background-color: #587071;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.9); }

@media (max-width: 500px) {
  .hero__button {
    padding: 15px;
    font-size: 16px; }
  .hero__button-container {
    text-align: left; } }

.side-bar {
  position: fixed;
  overflow: auto;
  width: 300px;
  left: -300px;
  top: 0;
  bottom: 0;
  z-index: 40;
  background-color: #333;
  color: #fff;
  -webkit-transition: 0.2s left ease-in-out;
          transition: 0.2s left ease-in-out; }

.side-bar > ul {
  padding: 20px;
  margin-top: 50px; }

.side-bar > ul > li {
  border-bottom: 1px solid #666;
  font-weight: 600; }

.side-bar > ul > li > a {
  display: block;
  padding: 30px;
  color: #fff;
  text-decoration: none;
  -webkit-transition: 0.2s background-color;
          transition: 0.2s background-color; }

.side-bar > ul > li > a:hover {
  background-color: #666666; }

.side-bar > ul > li:last-child {
  border-bottom: 0; }

.side-bar-open .side-bar {
  left: 0; }

.side-bar-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  background-color: black;
  opacity: 0.7; }

.side-bar-mask.ng-enter {
  -webkit-animation: 0.3s ease-in fade-in;
          animation: 0.3s ease-in fade-in; }

.side-bar-mask.ng-leave {
  -webkit-animation: 0.3s ease-in fade-out;
          animation: 0.3s ease-in fade-out; }

@media (max-width: 500px) {
  .side-bar {
    width: 100%;
    left: -100%; } }

.menu-button {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  padding: 10px 15px;
  line-height: 40px;
  vertical-align: middle;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.2s left ease-in-out;
          transition: 0.2s left ease-in-out; }

.menu-button__icon {
  display: inline-block;
  height: 30px;
  width: 30px;
  vertical-align: middle;
  background-size: contain; }

.menu-button.menu-close {
  position: absolute;
  right: 0;
  top: 0;
  left: auto; }

.menu-button__icon {
  -webkit-transition: 0.2s -webkit-transform;
          transition: 0.2s transform; }

.menu-close:hover .menu-button__icon {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }

/* Hero Register Form */
.hero-register {
  padding-top: 15px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.hero-register input {
  margin-right: 10px;
  border-radius: 5px;
  min-width: 0; }

.hero-register.ng-submitted .ng-invalid {
  border-color: red; }

.hero-register button {
  background-color: #a6467d;
  border: 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px 5px 5px 5px;
  white-space: nowrap; }

@media (max-width: 720px) {
  .hero-register {
    display: block; }
  .hero-register input,
  .hero-register button {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0; }
  .hero-register button {
    margin-bottom: 0; } }

.register-form {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 50px;
  padding: 20px;
  z-index: 2;
  background-color: #fff; }

.register-form .home-form__terms {
  color: #666; }

.register-form a {
  color: #666; }

.register-form__content {
  display: table;
  width: 100%;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  table-layout: fixed; }

.register-form__content > div {
  display: table-cell;
  vertical-align: top;
  width: auto;
  padding-right: 10px; }

.register-form h3 {
  padding: 0 0 20px;
  font-size: 25px;
  font-weight: bold;
  color: #000; }

.register-form input {
  padding: 10px 15px;
  min-width: 0;
  width: 100%;
  font-size: 20px;
  border-color: #939393;
  color: #365056; }

.register-form button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 15px;
  background: #212121;
  color: #fff;
  border: 1px solid #212121;
  font-size: 21px;
  font-family: "Roboto", Verdana, Arial, Helvetica, sans-serif; }

@media (max-width: 1700px) {
  .register-form input,
  .register-form button {
    font-size: 15px; } }

header h1 {
  display: inline-block;
  color: #fff;
  padding-left: 20px;
  font-size: 20px;
  vertical-align: middle; }

@media (max-width: 700px) {
  header h1 {
    display: block;
    margin-top: -10px; } }

@media (max-width: 500px) {
  header h1 {
    font-size: 15px;
    line-height: 40px; } }

.site-centering {
  max-width: 1200px;
  margin: auto; }

.feature-block {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center; }

.feature-block__content {
  position: relative;
  padding: 50px 0;
  width: 40%; }

.feature-block h3 {
  font-size: 30px;
  padding-bottom: 20px; }

.feature-block p {
  padding-bottom: 20px; }

.feature-block__image {
  padding: 50px 0;
  width: 40%; }

.feature-block__screenshot {
  position: relative;
  width: 150%;
  width: 50vw; }

.feature-block__screenshot img {
  width: 100%; }

.feature-block__screenshot:after {
  display: block;
  width: 100%;
  padding-bottom: 70%;
  content: ''; }

.feature-block__screenshot--left {
  float: right; }

.feature-block__screenshot__container {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #ccc;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 10px 10px 45px 8px rgba(0, 0, 0, 0.1); }

.feature-block__screenshot--left .feature-block__screenshot__container {
  right: 0;
  left: auto; }

.feature-block__screenshot__content {
  height: -webkit-calc(100% - 20px);
  height: calc(100% - 20px);
  margin-top: 20px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  overflow: hidden; }

@media (max-width: 780px) {
  .feature-block__image {
    display: none; }
  .feature-block__content {
    width: 100%;
    padding: 50px 20px; } }

.home__dark-section {
  background-color: #272727;
  color: #fff; }

.pricing-head {
  padding: 50px 30px;
  text-align: center;
  font-size: 50px;
  text-transform: lowercase;
  font-weight: bold; }

.pricing-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 50px;
  text-transform: lowercase; }

.pricing-grid__column {
  width: 28%;
  text-align: center; }

.pricing-grid__column:first-child {
  width: 44%;
  text-align: center; }

.pricing-grid__column:nth-child(even) {
  background-color: #3a3a3a; }

.pricing-grid__content {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.pricing-grid__content ul {
  width: 100%; }

.pricing-grid__content ul:first-child {
  text-align: left;
  display: none; }

@media (max-width: 500px) {
  .pricing-grid__column .pricing-grid__content ul:first-child {
    width: 45% !important; } }

.pricing-grid__column:first-child .pricing-grid__heading,
.pricing-grid__column:first-child .pricing-grid__price {
  width: 70%;
  margin-left: auto; }

.pricing-grid__column:first-child .pricing-grid__content ul {
  display: block; }

.pricing-grid__column:first-child .pricing-grid__row-headings {
  width: 30%; }

.pricing-grid__column:first-child .pricing-grid__rows {
  width: 70%; }

@media (max-width: 780px) {
  .pricing-grid__column:first-child .pricing-grid__heading,
  .pricing-grid__column:first-child .pricing-grid__price {
    width: 100%;
    margin-left: auto; }
  .pricing-grid__column .pricing-grid__content ul {
    display: block;
    width: 50% !important; }
  .pricing-grid__column:first-child {
    width: 100%;
    text-align: center; }
  .pricing-grid {
    display: block;
    padding-left: 0;
    padding-right: 0; }
  .pricing-grid__column {
    width: 100%;
    padding-bottom: 30px; } }

.pricing-grid__heading {
  padding: 10px 0 0;
  font-size: 35px;
  font-weight: bold;
  color: #DFD79F; }

.pricing-grid__price {
  padding: 15px;
  border-bottom: 2px solid #4D4D4D;
  font-size: 25px; }

.pricing-grid__content li {
  padding: 10px;
  white-space: nowrap;
  line-height: 20px; }

.pricing-grid__row-headings {
  font-size: 15px;
  font-style: italic; }

li.pricing__break-line {
  position: relative;
  line-height: 10px; }

.pricing__break-line span {
  opacity: 0;
  position: relative;
  padding: 0 10px;
  background-color: #272727;
  text-transform: uppercase;
  font-size: 11px; }

.pricing__break-line span:after {
  content: ' '; }

.pricing-grid__column:nth-child(even) .pricing__break-line span:not(:empty) {
  background-color: #3a3a3a;
  opacity: 1; }

.pricing__break-line span:empty {
  opacity: 0 !important; }

.pricing__break-line:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-bottom: 2px solid #4D4D4D;
  content: ''; }

@media (max-width: 780px) {
  .pricing__break-line span {
    opacity: 1 !important; }
  .pricing-grid__content li {
    padding: 10px 20px; } }

@media (max-width: 500px) {
  .pricing-grid__content li {
    padding: 10px; } }

.pad-section {
  padding: 20px; }

.pricing__note {
  padding: 30px 40px;
  background-color: #332B34; }

.pricing__note h3 {
  padding-bottom: 20px;
  color: #DFD79F;
  font-weight: bold;
  font-size: 20px; }

.pricing__note p:not(:last-child) {
  padding-bottom: 15px; }

@media (max-width: 700px) {
  .pricing__note {
    padding: 20px; } }

.footer {
  padding: 50px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  background-color: #000;
  color: #fff; }

.footer a {
  display: block;
  margin-bottom: 10px;
  color: #56B6A0; }

.footer > div {
  width: 50%; }

.footer__right {
  text-align: right; }

div.footer__address {
  padding-top: 10px;
  color: #909090; }

@media (max-width: 780px) {
  .footer {
    padding: 50px 20px; } }

@media (max-width: 600px) {
  .footer {
    display: block; }
  .footer__right {
    padding-top: 10px;
    text-align: left; } }

.home-article {
  padding: 40px 20px; }

.home-article p {
  padding: 0 0 20px;
  font-size: 20px; }

.home-article h2 {
  padding: 20px 0;
  font-size: 35px;
  text-align: center; }

strong {
  font-weight: bold;
  display: inline; }

.home-article ul,
.home-article ol {
  padding: 40px;
  list-style: disc; }

.home-article__center {
  text-align: center; }

.grecaptcha-badge {
  margin: 10px auto 0; }

/******************
 * Header Navigation   
 ******************/
.shout-header-navigation {
  position: absolute;
  right: -10px;
  top: 0;
  height: 100%;
  font-size: 0;
  text-align: right;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0); }

@media (max-width: 1050px) {
  .shout-header-navigation {
    display: none; } }

.shout-header-navigation > li {
  position: relative;
  display: inline-block;
  height: 100%;
  right: 0;
  margin-right: -10px;
  vertical-align: middle;
  will-change: margin-right;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0); }

.shout-header-navigation > li.ng-enter,
.shout-header-navigation > li.ng-leave {
  -webkit-animation: 0.3s header-item;
          animation: 0.3s header-item; }

.shout-header-navigation > li.ng-leave {
  -webkit-animation-direction: reverse;
          animation-direction: reverse; }

@-webkit-keyframes header-item {
  0% {
    margin-right: -100px;
    opacity: 0; } }

@keyframes header-item {
  0% {
    margin-right: -100px;
    opacity: 0; } }

.shout-header-navigation a,
.shout-header-navigation > li > button {
  display: inline-block;
  position: relative;
  padding: 0 45px 0 30px;
  height: 100%;
  vertical-align: middle;
  overflow: visible;
  font-size: 25px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border: 0;
  outline: 0;
  -webkit-transition: 0.2s padding;
          transition: 0.2s padding;
  will-change: padding;
  font-family: Roboto Slab; }

.shout-header-navigation > li > button:before,
.shout-header-navigation > li > a:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #57A3B6;
  -webkit-transition: 0.2s background-color;
          transition: 0.2s background-color;
  -webkit-transform: skew(-20deg);
      -ms-transform: skew(-20deg);
          transform: skew(-20deg);
  content: '';
  z-index: -1; }

.shout-header-navigation > li > a:before,
.shout-header-navigation > li > button:before {
  background-color: #5792B6; }

.shout-header-navigation a:hover,
.shout-header-navigation > li > button:hover {
  padding: 0 65px 0 50px; }

a.shout-header-navigation__first:before,
button.shout-header-navigation__first:before,
a.shout-header-navigation__first:before,
button.shout-header-navigation__first:before {
  background-color: #57A3B6 !important; }

a.shout-header-navigation__second:before,
button.shout-header-navigation__second:before {
  background-color: #5792B6 !important; }

a.shout-header-navigation__third:before,
button.shout-header-navigation__third:before {
  background-color: #5773B6 !important; }