body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Raleway, "Open Sans", sans-serif;
  font-size: 14px;
  color: #333;
  background: #ffffff;
}
body * {
  position: relative;
}
#top-nav-dn-arrow {
  display: none;
}
#login-box {
  transition: all .5s ease 0s;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  width: 384px;
  position: fixed;
  z-index: 100;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  text-align: center;
  background: #fff url(/images/speckled-bg.png) repeat-x 0 0;
  border: solid 0px #d7bb9d;
  box-shadow: 0 0 0px #999;
  height: 0px;
  overflow: hidden;
}
#login-box.visible {
  -webkit-box-shadow: 0 0 10px #999;
  -webkit-border-radius: 5px;
  box-shadow: 0 0 10px #999;
  border-width: 1px;
  height: 328px;
}
#login-box #login-close {
  background: #fff;
  display: inline-block;
  width: 1em;
  border-radius: 100%;
  top: 35px;
  height: 1em;
  line-height: 1em;
  border: 1px #bbb solid;
  cursor: pointer;
  z-index: 101;
  font-size: 1.5em;
}
#login-box #login-close.visible {
  position: fixed;
}
#login-box #login-shim {
  background: rgba(0, 0, 0, .75);
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 0%;
  opacity: 0;
  transition: opacity .5s ease 0s;
  -webkit-transition: opacity .5s ease 0s;
  -moz-transition: opacity .5s ease 0s;
  -o-transition: opacity .5s ease 0s;
  z-index: 1;
}
#login-box #login-shim.visible {
  opacity: 1;
  width: 100%;
  height: 100%;
}
#login-box #login-processing {
  position: absolute;
  top: 128px;
  width: 0%;
  z-index: 2;
  transition: width .5s ease 0s;
  -webkit-transition: width .5s ease 0s;
  -moz-transition: width .5s ease 0s;
  -o-transition: width .5s ease 0s;
  left: 10%;
}
#login-box #login-processing.visible {
  width: 80%;
}
#login-box #form1 {
  display: none;
}
#login-box #login-error-message, #login-box #login-success-message {
  border: 0px #900 solid;
  border-width: 0px;
  background: rgba(192, 0, 0, .5);
  box-shadow: 2px 2px 4px #666;
  border-radius: 4px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 2.4em;
  overflow: hidden;
  height: 0px;
  transition: all .5s ease 0s;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  font-size: 25%;
  width: 90%;
  margin: 0 auto;
  top: .75em;
  position: relative;
}
#login-box #login-success-message {
  background: rgba(255, 255, 0, .75);
  border: 0px #f90 solid;
}
#login-box #login-error-message.visible, #login-box #login-success-message.visible {
  height: 2.4em;
  border-width: 1px;
  font-size: 75%;
}
#login-box .progress {
  overflow: hidden;
  height: 18px;
  margin-bottom: 18px;
  background-color: #f7f7f7;
  background-image: -moz-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -ms-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#f9f9f9));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: -o-linear-gradient(top, #f5f5f5, #f9f9f9);
  background-image: linear-gradient(top, #f5f5f5, #f9f9f9);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f5f5f5', endColorstr='#f9f9f9', GradientType=0);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#login-box .progress .bar {
  width: 0%;
  height: 18px;
  color: #ffffff;
  font-size: 12px;
  text-align: center;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #0e90d2;
  background-image: -moz-linear-gradient(top, #149bdf, #0480be);
  background-image: -ms-linear-gradient(top, #149bdf, #0480be);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#149bdf), to(#0480be));
  background-image: -webkit-linear-gradient(top, #149bdf, #0480be);
  background-image: -o-linear-gradient(top, #149bdf, #0480be);
  background-image: linear-gradient(top, #149bdf, #0480be);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#149bdf', endColorstr='#0480be', GradientType=0);
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: width 0.6s ease;
  -moz-transition: width 0.6s ease;
  -ms-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
  background-size: 40px 40px;
}
#login-box .progress-success.progress-striped .bar {
  background-color: #62c462;
  background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  background-image: -webkit-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -moz-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -ms-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
#login-box .progress.active .bar {
  -webkit-animation: progress-bar-stripes 2s linear infinite;
  -moz-animation: progress-bar-stripes 2s linear infinite;
  -ms-animation: progress-bar-stripes 2s linear infinite;
  -o-animation: progress-bar-stripes 2s linear infinite;
  animation: progress-bar-stripes 2s linear infinite;
}
#login-box .progress-success .bar {
  background-color: #5eb95e;
  background-image: -moz-linear-gradient(top, #62c462, #57a957);
  background-image: -ms-linear-gradient(top, #62c462, #57a957);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#57a957));
  background-image: -webkit-linear-gradient(top, #62c462, #57a957);
  background-image: -o-linear-gradient(top, #62c462, #57a957);
  background-image: linear-gradient(top, #62c462, #57a957);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0);
}
@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-moz-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-ms-keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
@-o-keyframes progress-bar-stripes {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 40px 0;
  }
}
@keyframes progress-bar-stripes {
  from {
    background-position: 40px 0;
  }
  to {
    background-position: 0 0;
  }
}
#login-box .btn-success:hover, #login-box .btn-success:active, #login-box .btn-success.active, #login-box .btn-success.disabled, #login-box .btn-success[disabled] {
  background-color: #73a839;
}
#login-box .btn:hover {
  background-position: 0 0;
}
#login-box .btn-primary, #login-box .btn-primary:hover, #login-box .btn-warning, #login-box .btn-warning:hover, #login-box .btn-danger, #login-box .btn-danger:hover, #login-box .btn-success, #login-box .btn-success:hover, #login-box .btn-info, #login-box .btn-info:hover, #login-box .btn-inverse, #login-box .btn-inverse:hover {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}
#login-box .btn:hover {
  color: #333333;
  text-decoration: none;
  background-color: #e6e6e6;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
#login-box .btn-success {
  background-color: #7bb33d;
  background-image: -moz-linear-gradient(top, #80bb3f, #73a839);
  background-image: -ms-linear-gradient(top, #80bb3f, #73a839);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#80bb3f), to(#73a839));
  background-image: -webkit-linear-gradient(top, #80bb3f, #73a839);
  background-image: -o-linear-gradient(top, #80bb3f, #73a839);
  background-image: linear-gradient(top, #80bb3f, #73a839);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80bb3f', endColorstr='#73a839', GradientType=0);
  border-color: #73a839 #73a839 #4c6f26;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
  margin-top: 1em;
}
#login-box .btn {
  background-color: #ffffff;
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(5%, #ffffff), to(#ffffff));
  background-image: -webkit-linear-gradient(#ffffff, #ffffff 5%, #ffffff);
  background-image: -moz-linear-gradient(top, #ffffff, #ffffff 5%, #ffffff);
  background-image: -ms-linear-gradient(#ffffff, #ffffff 5%, #ffffff);
  background-image: -o-linear-gradient(#ffffff, #ffffff 5%, #ffffff);
  background-image: linear-gradient(#ffffff, #ffffff 5%, #ffffff);
  background-repeat: no-repeat;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ffffff', GradientType=0);
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  display: inline-block;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 18px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  cursor: pointer;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(top, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid: DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #cccccc;
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2), 0 1px 2px rgba(0, 0, 0, .05);
}
#login-box label, #login-box input, #login-box button, #login-box select, #login-box textarea {
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
}
#login-box label {
  margin: 1em auto .5em auto;
  text-shadow: #e0e2e4 1px 1px 1px;
  font-weight: bold;
  font-size: 19px;
  color: #333;
  padding-right: 1em;
  display: inline-block;
  width: 149px;
  line-height: 1.4em;
}
#login-box #login-limited-access + label {
  width: 16em;
}
#login-box #login-limited-access {
  width: 1.5em;
  height: 1.5em;
  top: .33em;
  position: relative;
}
#login-box .form-horizontal .control-label {
  float: left;
  width: 140px;
  padding-top: 5px;
  text-align: right;
}
#login-box #login-button {
  width: 192px;
  text-shadow: rgba(0, 0, 0, 0.4) 1px 1px 0px;
  font-size: 110%;
  font-weight: bold;
  color: #fff;
  box-shadow: rgba(0, 0, 0, 0.4) 1px 1px 2px;
  margin-bottom: 1em;
  background: rgba(0, 64, 0, .5);
}
#login-box #login-button:hover {
  box-shadow: rgba(0, 0, 0, 0.4) 2px 2px 3px;
}
#login-box #login-forgot-password, #login-box #login-back-to-login {
  color: #00f;
  font-style: italic;
  text-decoration: underline;
  margin-top: .75em;
  cursor: pointer;
  text-shadow: rgba(0, 0, 0, 0.4) 1px 1px 0px;
}
#login-box #store-chain-row, #login-box #login-email-row, #login-box #login-username-row, #login-box #login-password-row, #login-box #login-row-limited-access, #login-box #login-back-to-login, #login-box #login-forgot-password, #login-box #forgot-password-title, #login-box #login-title {
  overflow: hidden;
  height: 0px;
  margin: 0;
  transition: height .5s ease 0s;
  -webkit-transition: height .5s ease 0s;
  -moz-transition: height .5s ease 0s;
  -o-transition: height .5s ease 0s;
}
#login-box #store-chain-row.visible, #login-box #login-email-row.visible, #login-box #login-username-row.visible, #login-box #login-password-row.visible, #login-box #login-row-limited-access.visible, #login-box #login-back-to-login.visible, #login-box #login-forgot-password.visible, #login-box #forgot-password-title.visible, #login-box #login-title.visible {
  height: 54px;
  line-height: 2em;
}
#login-box #login-row {
  display: block;
  width: 256px;
  margin: 0 auto;
}
#login-box #login-username, #login-box #login-email, #login-box #login-password, #login-box #login-store-chain-id {
  padding: .25em;
  border-radius: 4px;
  border: 1px #999 solid;
}
#primary-nav {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  background: rgba(0, 0, 0, .95);
  z-index: 100;
}
#primary-nav>.columns-2:first-child>a {
  height: 76px;
  display: inline-block;
}
#primary-nav h3 {
  display: inline-block;
  background: url(/logo-256x57.png) no-repeat center;
  background-size: 85% auto;
  height: 48px;
  width: 192px;
  margin: 14px 0 0 0;
  overflow: hidden;
  text-indent: -1024px;
}
#primary-nav nav {
  display: inline-block;
  height: 76px;
  vertical-align: top;
  margin-right: 1em;
}
#primary-nav nav>ul {
  display: inline-block;
  margin: 0;
  padding: 8px 0;
  vertical-align: middle;
  line-height: 16px;
}
#primary-nav nav>ul>li {
  display: inline-block;
  padding: 0 1em 0px 1em;
  list-style-type: none;
  vertical-align: middle;
  margin-top: 12px;
}
#primary-nav nav>ul>li>a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 3px transparent solid;
  line-height: 16px;
  height: 16px;
  display: inline-block;
  font-size: 13px;
  padding-bottom: 8px;
  text-transform: uppercase;
}
#primary-nav nav>ul>li>a:hover {
  border-bottom: 3px #69b200 solid;
}
#link-free-demo {
  background: #f89938;
  border-radius: 4px 4px 0 0;
  padding: 0 8px;
}
#tollfree-number {
  color: #fff;
  line-height: 32px;
  text-align: center;
}
#primary-nav>.columns-2:first-child {
  width: 250px;
}
#primary-nav>.columns-2:last-child {
  width: calc(100% - 250px);
  -webkit-width: calc(100% - 250px);
}
#primary-nav>.columns-2>h3 {
  top: 11px;
}
#primary-nav nav>ul>li>a#link-login {
  color: #fff;
  background: #008fff;
  height: 16px;
  text-transform: capitalize;
  line-height: 16px;
  padding: 4px;
  margin-bottom: 0px;
  margin-top: 0px;
}
#primary-nav nav>ul>li>a#link-login.md-button.z-depth-1 {
  top: 2px;
  left: 2px;
}
#primary-nav nav>ul>li>a#link-login.md-button.z-depth-1:hover {
  border-bottom: 3px transparent solid;
  top: 0px;
  left: 0px;
}
#primary-nav nav>ul>li>a#link-login.md-button.z-depth-1:active {
  top: 1px;
  left: 1px;
}
.parallax-content>.columns-1, .columns-1 {
  display: block;
  margin: 0 auto;
  max-width: 768px;
  line-height: 1.6em;
}
.columns-2 {
  display: inline-block;
  width: 50%;
  vertical-align: top;

}
.columns-3 {
  display: inline-block;
  width: 31.33%;
  vertical-align: top;
  margin: 0 1%;
  font-weight: bold;
}
.content .columns-2 {
  padding-left: 2%;
  padding-right: 2%;
  width: 46%;
}
.left-green {
  border-left: 4px #69b200 solid;
  padding-left: 12px;
}
.right-aligned {
  text-align: right;
}
.centered {
  text-align: center;
}
.delayed-visibility>*:not(:first-child), .fade-on-visible {
  opacity: 0;
  transition: opacity .5s ease 0s;
  -webkit-transition: opacity .5s ease 0s;
  -moz-transition: opacity .5s ease 0s;
  -o-transition: opacity .5s ease 0s;
}
.delayed-visibility>*.visible:not(:first-child), .fade-on-visible.visible {
  opacity: 1;
}
.page-body>header:first-child {
  /* margin-top: 57px */
}
.page-body>header:first-child + .content {
	padding-top: 48px;
}
#main-home {
  background: #ffffff;
}
#main-home>header:first-child {
  padding-top: 48px;
  /* margin-top: 76px; */
}
#main-home>header:first-child h1 {
  font-weight: normal;
  color: #000;
  text-align: center;
  font-size: 400%;
  margin: 64px 0 0 0;
  line-height: 1.75em;
}
.light-green.animation-step-2 {
  font-weight: bold;
}
.animation-step-3 .light-blue {
  font-weight: bold;
  font-size: 200%;
  margin: 0;
  line-height: 1.4em;
}
.animation-step-3 h3 {
  text-align: center;
  color: #000;
  font-weight: normal;
  font-size: 200%;
  margin: 0;
  line-height: 1.4em;
}
[data-animation-duration-ms="150"] {
	transition: all .15s ease 0s;
	-webkit-transition: all .15s ease 0s;
	-moz-transition: all .15s ease 0s;
	-o-transition: all .15s ease 0s;
}
[data-animation-duration-ms="1000"] {
	transition: all 1s ease 0s;
	-webkit-transition: all 1s ease 0s;
	-moz-transition: all 1s ease 0s;
	-o-transition: all 1s ease 0s;
}
[data-animation-duration-ms="1500"] {
	transition: all 1.5s ease 0s;
	-webkit-transition: all 1.5s ease 0s;
	-moz-transition: all 1.5s ease 0s;
	-o-transition: all 1.5s ease 0s;
}
.animation-expand-horizontal {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
  display: inline-block;
}
.animation-expand-horizontal.visible {
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}
.animation-expand-vertical {
	transform: scale(1, 0);
	-webkit-transform: scale(1, 0);
	display: inline-block;
}
.animation-expand-vertical.visible {
	transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
}
.animation-fade-in {
	opacity: 0;
}
#animation-box-1 {
	text-align: center;
}
.animation-fade-in.visible {
	opacity: 1;
}
.animation-pixelate-in-overlay {
	position: absolute;
	width: 100%;
	height: 96px;
}
.animation-pixelate-in {
	opacity: 0;
	background: #ffffff;
}
.animation-pixelate-in.visible {
	opacity: 1;
}
.animation-pixelate-in.visible>.animation-pixelate-in-overlay {
	background-size: contain;
	top: 0px;
}

#main-home>header>#animation-box-1>.animation-step-3 {
	top: 16vh;
}
/*
#main-home>header:first-child {
  background:url(/images/engines-of-profit/restaurant-fuzzy.jpg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height:calc(100vh - 76px);
  height:-webkit-calc(100vh - 76px);
  color:#fff;
  text-align: center;
  text-shadow: 0 1px 5px #000;
}
#main-home>header h1 {
  padding:0px 0 16px 0;
  font-size: 38px;
  line-height: 45px;
  font-weight: 600;
  margin:0;
}
#main-home>header h1:nth-child(2) {
  padding-top:1.5em;
}
#main-home>header h2 {
  font-size: 25px;
  line-height: 25px;
  font-weight: 600;
  margin:0;
}
#main-home>header h3 {
  font-weight: 400;
  margin:48px 0 0 0;
}
#main-home>header h4 {
  font-size: 16px;
  font-weight: normal;
  margin:96px 0 0 0;
  font-weight: 400;
  width: 200px;
  border: 1px solid #fff;
  margin: 64px auto 96px auto;
  padding-bottom: 0.1em;
}
*/

hr.content-divider {
  width: 90%;
  display: block;
  margin: 0 auto;
}
.title-small {
  font-size: 16px;
}
.content {
  background-color: #ffffff;
  padding: 0 10% 68px 10%;
  line-height: 1.4em;
  font-size: 16px;
 }
 .content p {
   font-size: 20px;
   line-height: 1.4em;
 }
.content.content-w-book {
  padding: 0px 0 48px 192px;
}
.content.content-w-book .columns-2 {
  width: 48%;
  margin: 0 1%;
}
.content-thin {
  padding: 0 20% 48px 20%;
}
.content-superthin {
  padding: 0 calc(50% - 22em) 48px calc(50% - 22em);
}
.content-hyperthin {
  padding: 0 30% 48px 30%;
}
#triple-pie-graph h4, #single-pie-graph h3 {
  color: #111;
}
h2, .title-sized-text {
  font-size: 30px;
  line-height: 35px;
  font-weight: 300;
  text-align: center;
}
.title-sized-text {
  text-align:left;
}
h3, .columns-3 h4, #main-home>header>div>h3, #main-home>header>div>h2, #eop-details>div>div>h2, #long-term-experience>div>div>h2, #how-much>div>div>h2 {
  color: #fff;
}
.parallax {
  height: 600px;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.separator {
  display: block;
  height: 1px;
  background-color: #ccc;
  margin: 20px 15%;
}
.column-indented {
  left: 18%;
  width: 77%;
}
#img-risk-free {
  width: 300px;
  height: auto;
  vertical-align: middle;
  max-width: 100%;
}
#main-home>header>div>h3 {
  color: #000;
  font-weight: normal;
  font-size:20px;
}
#rich-nancy-portrait {
  border-radius: 50%;
  width: 256px;
  height: 256px;
  float: right;
  margin-left: 16px;
}
.rich-nancy-quote-short-width-box {
  text-align: left;
  max-width: 768px;
  margin:0 auto;
}
/*
#main-home>header:first-child {
  background:url(//www.repeatreturns.com/images/restaurant-fuzzy-dark.jpg);
  background-size: cover;
  background-position: right;
}
#main-home>header>div>h3 {
  margin-bottom: 1em;
  font-size: 20px;
}
*/

#dn-arrow {
  top: 500px;
}
.dropcap.normal {
  background-color: #00a6d6;
  font-size: 50px;
  background-color: transparent;
  margin: 0 10px 0 0;
}
.dropcap {
  display: inline-block;
  float: left;
  height: 50px;
  width: 50px;
  background-color: #fff;
  font-family: Raleway, "Open Sans", sans-serif;
  font-size: 30px;
  line-height: 50px;
  color: #69b200;
  font-weight: 600;
  text-align: center;
  margin: 5px 10px 0 0;
}
#actual-client-marketing-benefit {
  background: transparent;
}
.pie_chart_text h4 {
  color: #888;
}
#campaigns-box-header {
  background: #00a6d6;
  color: #ffffff;
  width: 90%;
  max-width: 924px;
  margin: 58px auto 0px auto;
}
#campaigns-box-header>div {
  text-align: center;
  padding: 16px;
}
#campaigns-box-details {
  display: block;
  border-color: #ccc;
  border-style: solid;
  border-width: 0px;
  background: #fff;
  width: 90%;
  max-width: 924px;
  margin: 0 auto;
  -webkit-transition: height 0.5s ease-out;
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transition: height 0.5s ease-out;
  /* IE 9 */
  transition: height 0.5s ease-out;
  /* Firefox 16+, IE 10+, Opera */
  overflow: hidden;
  height: 0px;
}
#campaigns-box-details.visible {
  border-width: 1px;
  height: 512px;
}
#campaigns-box-details.visible>ul {
  position: relative;
  list-style-type: none;
  width: 20%;
  overflow-y: scroll;
  height: 482px;
  padding-left: 0;
}
#campaigns-box-details.visible>ul>li>h4 {
  padding: 0 .25em;
  font-size: 90%;
  margin: .25em 0;
  color: #333;
}
#campaigns-box-details.visible>ul>li {
  padding: 0;
  position: static;
  display: block;
}
.campaigns-box-title {
  padding-left: 8px;
  color: #000;
}
.campaigns-box-title:hover {
  cursor: pointer;
  background: rgba(0, 166, 214, .5);
}
#campaigns-box-details-img>img {
  max-width: 100%;
  height: 474px;
}
#campaigns-box-details-desc p {
  margin-right: 1em;
}
#campaigns-box-details-img {
  position: absolute;
  top: 16px;
  left: 25%;
  width: 42%;
  text-align: center;
  height: 482px;
  overflow: hidden;
}
#campaigns-box-details-desc {
  position: absolute;
  top: 16px;
  left: 67%;
  width: 33%;
  height: 482px;
  overflow: hidden;
}
#campaigns-box-details-desc>p:first-child {
  margin-top: 0;
}
#campaigns-box-details>ul>li>.campaigns-box-image, #campaigns-box-details>ul>li>.campaigns-box-description {
  display: none;
}
.testimonial {
  padding-bottom: 2em;
}
.testimonial .name {
  font-size: 20px;
  font-weight: bold;
}
#img-revel-ipad {
  position: absolute;
  top: calc(100vh - 40vw);
  left: 0px;
  width: 50vw;
}
ul#revel-feature-list {
  position: absolute;
  top: 30vh;
  left: 48vw;
}
ul#revel-feature-list>li {
  text-align: left;
  font-size: 133%;
}
.link-button {
  display: inline-block;
  min-width: 200px;
  color: #fff;
  text-align: center;
  margin: 3em .5em;
  padding: 1em 2em;
  border: 0;
  letter-spacing: 1px;
  cursor: pointer;
  position: absolute;
  top: 55vh;
}
#link-button-learn-more {
  background-color: #00aa00;
  left: 55vw;
}
#link-button-try-risk-free {
  background-color: #ff8500;
  left: 75vw;
}
.light-green {
  color: #00994e;
}
.light-blue {
  color: #5896d3;
}
#play-video-box {
  text-align: center;
  background: #000000;
  background: -moz-linear-gradient(-45deg, #000000 0%, #04007c 25%, #000098 51%, #04007c 75%, #000000 100%);
  background: -webkit-linear-gradient(-45deg, #000000 0%, #04007c 25%, #000098 51%, #04007c 75%, #000000 100%);
  background: linear-gradient(135deg, #000000 0%, #04007c 25%, #000098 51%, #04007c 75%, #000000 100%);
  filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#000000', GradientType=1);
  padding: 1em 0em 10em 3em;
}
#play-video-blue-button {
	position: absolute;
	left: calc(50% - 50px);
  background: #3333cc;
  color: #fff;
  border: 8px rgba(51, 51, 102, .25) solid;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  box-shadow: 0px 0px 0px #000099;
  font-size: 115%;
  letter-spacing: 2px;
  transition: all .5s ease 0s;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
}
#play-video-blue-button:hover {
  box-shadow: 0px 0px 48px rgba(0, 0, 66, .75);
  cursor: pointer;
}
#diy-box {
	color: #fff;
	text-align:center;
}
#diy-box h3 {
	line-height: 1.4em;
	font-weight: normal;
}
#revel-video {
	position: fixed;
	top: 80px;
	left: 5vw;
	width: 90vw;
	height: 0;
	transition: all .5s ease 0s;
	-webkit-transition: all .5s ease 0s;
	-moz-transition: all .5s ease 0s;
	-o-transition: all .5s ease 0s;
}
#revel-video.visible {
	display: block;
	height: calc(100vh - 160px);
	z-index: 1000;
}
#triple-pie-graph h2 {
	margin-bottom: 0;
}
#triple-pie-graph h2 + p {
	margin-top: 0;
}
.left-aligned {
	text-align: left;
}
.how-it-works-image {
	width: 50%;
}
.content.no-padding {
	padding: 0;
	margin-bottom:2em;
}
#marketing-engine-column {
	background: url(/images/gears.png) no-repeat top center;
	background-size: 50% auto;
	padding-top: 10vw;
}
#campaign-studio-column {
	background: url(/images/campaign-manager-brush.png) no-repeat top center;
	background-size: 50% auto;
	padding-top: 10vw;
}
#data-mining-column {
	background: url(/images/data-profits.png) no-repeat top center;
	background-size: 50% auto;
	padding-top: 10vw;
}
.ten-percent-bigger {
	font-size: 110%;
}
.spacer {
  border-top: 1px #dadada solid;
  width: 80%;
  margin: 0 auto 68px auto;
}
.parallax-content p {
	font-size: 16px;
}
#as-featured-on {
  text-align:center;
  background:#ffffff;
}
#as-featured-on img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  ul#revel-feature-list {
    top: 20vh;
    left: 25vw;
  }
  #link-button-learn-more {
    left: 60vw;
    top: 45vh;
  }
  #link-button-try-risk-free {
    left: 60vw;
  }
}
@media screen and (orientation:portrait) {
  #img-revel-ipad {
    top: calc(100vh - 55vw);
    width: 60vw;
  }
  ul#revel-feature-list {
    top: 20vh;
    left: 25vw;
  }
  #link-button-learn-more {
    left: 60vw;
    top: 45vh;
  }
  #link-button-try-risk-free {
    left: 60vw;
  }
}
@media only screen and (min-width: 1500px) {
  #main-home>header h1 {
    font-size: 65px;
  }
  #main-home>header>img + h1 {
    padding-top: 2em;
  }
  .link-button {
    font-size: 30px;
    letter-spacing: 4px;
    width: 400px;
  }
  ul#revel-feature-list>li {
    font-size: 300%;
    line-height: 1.6em;
  }
  ul#revel-feature-list {
    top: 26vh;
    left: 10vw;
  }
}
@media only screen and (min-device-width: 768px) and (max-width: 1024px) {
  .parallax {
    background-attachment: scroll;
  }
}
.parallax-content>* {
  margin: 0;
  color: #fff;
}
#quote-rich-nancy>.parallax-content {
  left: 50px;
  top: 100px;
  display: inline-block;
  font-weight: 600;
}
#quote-rich-nancy>.parallax-content>h1 {
  font-size: 32px;
  line-height: 38px;
  /*text-shadow: 0 1px 5px #000;*/
  font-weight: 600;
  color: #000;
}
#quote-rich-nancy>.parallax-content>h2 {
  text-align: left;
  font-size: 24px;
  line-height: 28px;
  font-weight: 300;
  margin: 32px 0;
  /*text-shadow: 0 1px 5px #000;*/
  color: #000;
}
#quote-rich-nancy>.parallax-content>h3 {
  font-size: 18px;
  line-height: 35px;
  font-weight: 300;
  color: #000;
}
.color_holder {
  width: 25px;
  height: 25px;
  display: inline-block;
}
.color_holder + p {
  display: inline-block;
  margin: 0;
  line-height: 25px;
  vertical-align: top;
}
.pie_graf, .pie_graf_legend {
  display: inline-block;
  vertical-align: top;
}
.pie_graf_legend>ul {
  list-style-type: none;
}
#pom-details>.parallax-content h2, #eop-details>.parallax-content h2, #how-much>.parallax-content h2, #introduction h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 300;
}
#pom-details>.parallax-content p, #eop-details>.parallax-content p, #long-term-experience p, #how-much p, #introduction p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 1em;
}
#pom-details>.parallax-content>div>h2:first-child {
  margin: 0;
}
#eop-details>.parallax-content h2, #how-much>.parallax-content h2, #pom-details>.parallax-content>div>h2, #introduction>.parallax-content h2 {
  margin: 0px 0 16px 0;
  padding-top: 32px;
}
#pom-details.parallax {
  height: 600px;
}
#pom-details.parallax>.parallax-content>* {
  color: #333333;
}
#eop-details {
  color: #fff;
  background-image: url(/images/engines-of-profit/servers.jpg);
  background-color: #fff;
  background-position: -100px 0px;
  background-size: 150% 100%;
}
.tab-navigation>ol {
  list-style-type: none;
  margin: 0;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  -webkit-padding-start: 0px;
}
.tab-navigation>ol>li {
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  padding: 16px;
  background-color: #ff6600;
  font-weight: 800;
  color: #fff;
  font-size: .75vw;
}
.tab-navigation>ol>li.active {
  background-color: #fff;
  border: 1px #ccc solid;
  border-bottom: 0px;
  z-index: 2;
  top: 1px;
  letter-spacing: 1px;
  font-weight: 800;
  color:  #000000;


}
.tabs {
  width: 90%;
  max-width: 924px;
  margin: 3em auto 0 auto;
}
.tabs .tab {
  display: none;
}
.tabs .tab.active {
  display: block;
  border: 1px #ccc solid;
  background: #fff;
  padding: 16px;
}
.tab h2 {
  font-size: 30px;
  line-height: 35px;
  font-weight: 300;
}
.tab p {
  line-height: 1.6em;
}
.tab-image {
  width: 67%;
  margin: 0 auto;
  display: block;
}
.left-on-visible {
  left: 45px;
  transition: left .5s ease 0s;
  -webkit-transition: left .5s ease 0s;
  -moz-transition: left .5s ease 0s;
  -o-transition: left .5s ease 0s;
}
.right-on-visible {
  left: -45px;
  transition: left .5s ease 0s;
  -webkit-transition: left .5s ease 0s;
  -moz-transition: left .5s ease 0s;
  -o-transition: left .5s ease 0s;
}
.left-on-visible.visible, .right-on-visible.visible {
  left: 0;
}
.progressbar-horizontal {
  height: 16px;
  background-color: #ededed;
}
.progressbar-horizontal-indicator {
  height: 16px;
  background-color: #69b200;
  display: inline-block;
  transition: width .5s ease 0s;
  -webkit-transition: width .5s ease 0s;
  -moz-transition: width .5s ease 0s;
  -o-transition: width .5s ease 0s;
  width: 0%;
}
#actual-client-marketing-benefit {
  height: 0px;
  transition: height .67s ease 0s;
  -webkit-transition: height .67s ease 0s;
  -moz-transition: height .67s ease 0s;
  -o-transition: height .67s ease 0s;
  overflow: hidden;
}
#actual-client-marketing-benefit.visible {
  height: 800px;
  padding-bottom: 1.5em;
}
.progressbar-horizontal-value {
  display: inline-block;
  left: 5em;
  top: -2px;
}
.citation {
  font-size: 13px;
  line-height: 13px;
}
.large-number-green {
  color: green;
  font-size: 45px;
  height: 45px;
  line-height: 45px;
}
.green {
  color: green;
  font-weight: bold;
}
.no-margin {
  margin: 0;
}
#long-term-experience {
  height: 500px;
  line-height: 2em;
  background-position-x: center;
}
#long-term-experience>div>div>h2 {
  padding: 24px 0 64px 0;
  white-space: nowrap;
}
#actual-client-marketing-benefit-button {
  font-size: 16px !important;
  width: 320px !important;
}

/*
  width:475px;
  background: rgb(0,156,0); /* Old browsers */

background: -moz-linear-gradient(top, rgba(0, 156, 0, 1) 0%, rgba(0, 92, 0, 1) 67%, rgba(0, 32, 0, 1) 100%);

/* FF3.6+ */

background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0, 156, 0, 1)), color-stop(67%, rgba(0, 92, 0, 1)), color-stop(100%, rgba(0, 32, 0, 1)));

/* Chrome,Safari4+ */

background: -webkit-linear-gradient(top, rgba(0, 156, 0, 1) 0%, rgba(0, 92, 0, 1) 67%, rgba(0, 32, 0, 1) 100%);

/* Chrome10+,Safari5.1+ */

background: -o-linear-gradient(top, rgba(0, 156, 0, 1) 0%, rgba(0, 92, 0, 1) 67%, rgba(0, 32, 0, 1) 100%);

/* Opera 11.10+ */

background: -ms-linear-gradient(top, rgba(0, 156, 0, 1) 0%, rgba(0, 92, 0, 1) 67%, rgba(0, 32, 0, 1) 100%);

/* IE10+ */

background: linear-gradient(to bottom, rgba(0, 156, 0, 1) 0%, rgba(0, 92, 0, 1) 67%, rgba(0, 32, 0, 1) 100%);

/* W3C */

filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#009c00', endColorstr='#002000', GradientType=0);

/* IE6-9 */

border:1px rgb(0, 32, 0) solid;
margin:0 auto;
display: block;
font-weight:bold;
cursor:pointer;
color:#fff;
padding:6px 0;

}
*/ .tocounter {
  top: -70px;
  display: block;
  text-align: center;
  text-shadow: -1px 1px 1px #000;
}
.pie_chart_text {
  text-align: center;
  top: 0px;
}
.pie_chart_text h4 {
  margin: 0;
  font-weight: normal;
}
#how-much, #introduction {
  height: auto;
}
#introduction {
  padding: 64px 0 96px 0;
}
#triple-pie-graph .columns-3 {
  text-align: center;
}
#lets-talk, #actual-client-marketing-benefit-button {
  text-transform: uppercase;
  background-color: #ff6600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  width: 200px;
  margin: 32px auto;
  display: block;
  padding: 16px 32px;
}
#watch-video-now-button {
  background-color: #ff6600;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  margin: 32px auto;
  display: block;
  font-size: 13px;
  width: 185px;
  height: 29px;
  padding: 2px;
  line-height: 29px;
}
#watch-video-now-button>img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  top: -2px;
}
ol>li, ul>li {
  font-size: 1.5vw;
  line-height: 1.8em;

}
ul>li>p {
  margin: 0;
}
.re-center {
  display: inline-block;
  text-align: left;
}
.black-translucent {
  display: inline-block;
  padding: 50px;
  top: 0px;
  left: 12.5%;
}
#dn-arrow {
  position: absolute;
  top: 475px;
  left: calc(50% - 33px);
  height: 24px;
  width: 48px;
  cursor: pointer;
}
#site-footer {
  padding: 0 2.5% 2em 2.5%;
}
#site-footer, #site-footer a {
  color: #999999;
  background: rgba(0, 0, 0, 1);
  text-decoration: none;
}
#site-footer h2, #site-footer h3 {
  padding-top: 45px;
  color: #ffffff;
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
  text-align: left;
  margin: 0 0 10px 0;
}
#site-footer h3 {
  padding-top: 1em;
}
#site-footer ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
#rr-contact-us-box, #rr-partners-box {
  display: none;
  position: fixed;
  top: 100px;
  background: rgba(255, 255, 255, .85);
  border: 2px #fff solid;
  border-radius: 3px;
  padding: 16px;
  box-shadow: 2px 2px 4px #333;
  width: 50%;
  max-width: 384px;
}
#rr-contact-us-box h2, #rr-partners-box h2 {
  margin-top: 0;
}
#rr-contact-us-box p>b {
  display: inline-block;
  width: 8em;
}
#rr-contact-us-box p>strong {
  line-height: 24px;
  vertical-align: top;
}
#rr-contact-us-box input[type=checkbox] {
  width: 20px !important;
  height: 20px;
}
#rr-contact-us-box input[type=submit] {
  display: block;
  margin: 0 auto;
}
#rr-contact-us-box input[type=text], #rr-contact-us-box input[type=email] {
  width: 12em;
}
#rr-contact-us-box input[type=tel] {
  width: 6em;
}
#modal-shiv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, .85);
  display: none;
}
.solo {
  background: #ffffff;
  text-align: center;
}
#lets-talk-parallax {
  box-shadow: inset 0 10px 20px rgba(0, 0, 0, .19), inset 0 6px 6px rgba(0, 0, 0, .23), inset 0 -10px 20px rgba(0, 0, 0, .19), inset 0 -6px 6px rgba(0, 0, 0, .23);
  padding-bottom: 10px;
  background-image: url(//www.repeatreturns.com/images/restaurant-fuzzy.jpg);
  background-position-y: 132.942px;
  height: 340px;
  background-size: 100% auto;
}
#lets-talk-parallax>.parallax-content {
	padding-top: 1em;
	text-shadow: 1px 1px 1px #000;
}
#lets-talk-phone {
  color: #fff;
  font-weight: bold;
  text-shadow: 1px 1px 1px #000;
  text-align: center;
  font-size: 32px;
}
section#main-home>div {
  padding-top: 20px;
}
.alt-page-img {
  position: absolute;
  top: 20px;
  left: 5px;
}
.alt-page-form label {
  display: inline-block;
  width: 6em;
  margin-left: 3em;
}
.alt-page-form input {
  width: 15em;
}
#main-pom ul {
  padding: 0 1em 0 0;
}
.solo>img {
  width: 1024px;
  height: 62px;
  display: block;
  margin: 0 auto;
}
section#main-home>div#single-pie-graph {
  padding: 64px 20% 64px 20%;
}
#single-pie-graph>.columns-2:nth-child(2) {
  width: calc(96% - 440px);
}
#single-pie-graph>.columns-2:last-child {
  width: 400px;
}
#introduction>.parallax-content>* {
  color: #333333;
}
#brain-image {
  width: 144px;
  display: block;
  margin: 0 auto;
  padding: 3em 0 1em 0;
}
#quote-rich-nancy {
	width: 580px;
	margin: 0 auto;
}
#quote-rich-nancy h2 {
	margin-top: 0;
}
#quote-rich-nancy>img:first-child {
	float: right;
	width: 205px;
	height: 192px;
	margin-left: 8px;
}
.md-button {
  outline: none;
  display: inline-block;
  font-size: 14px;
  padding: 8px;
  line-height: 20px;
  text-align: center;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  min-width: 88px;
  border-radius: 2px;
  margin: 8px;
  overflow: hidden;
  border: none;
 }
.md-button.md-button-light {
  color: #fff;
  background: #bbb;
}
.md-button-anti-md-inverted-style {
  background-color: #ffffff;
  color: #ff6600;
  border: 1px #ff6600 solid;
  border-radius: 2px;
  font-size: 13px;
  padding: 2px 9px;
}
.z-depth-1 {
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, .12), 0 1px 1px rgba(0, 0, 0, .24);
}
.z-depth-2 {
  box-shadow: 0 3px 3px rgba(0, 0, 0, .16), 0 3px 3px rgba(0, 0, 0, .23);
}
.z-depth-3, .md-button.z-depth-1:hover {
  box-shadow: 0 10px 10px rgba(0, 0, 0, .19), 0 6px 3px rgba(0, 0, 0, .23);
}
.z-depth-4 {
  box-shadow: 0 14px 14px rgba(0, 0, 0, .25), 0 10px 5px rgba(0, 0, 0, .22);
}
.z-depth-5 {
  box-shadow: 0 19px 19px rgba(0, 0, 0, .30), 0 15px 6px rgba(0, 0, 0, .22);
}
#guarantee-box {
  max-width: 95%;
  width: 960px;
  margin: 0 auto;
}
#mountain-road>div>p {
  text-align:center;
  font-weight:normal;
  font-family: Raleway, 'Open Sans', sans-serif;
  text-shadow: 1px 1px 1px #000;
  font-size:3vw;
  margin:2em 0 .5em 0;
}
#mountain-road>div>p:not(:first-child) {
  font-size:1.5vw;
}
@media (max-width:1500px) {
  .parallax {
    height: 660px;
  }
  .service-addon>div>div {
    display: block;
  }
  .hideable {
    display: none;
  }
}
@media (max-width:1420px) and (min-width:512px) {
  .tab-navigation>ol>li {
    padding: 8px 6px;
    font-size: 15px;
  }
}
@media (max-width:1400px) {
  #quote-rich-nancy {
    background-size: auto 100% !important;
  }
}
@media (max-width:1024px) {
  .solo>img {
    width: 100%;
    height: auto;
  }
  section#main-home>div#single-pie-graph {
    padding: 64px 10% 64px 10%;
  }
  .parallax-content>.columns-1, .columns-1 {
    width: 67%;
  }
}
@media (max-width:1024px) and (min-width:512px) {
  .tab-navigation>ol>li {
    padding: 8px 3px;
    font-size: 14px;
  }
  .parallax {
    height: 460px;
  }
  .black-translucent {
    top: 0px;
  }
  #main-home>header h1 {
    font-size: 35px;
    line-height: 40px;
  }
  #main-home>header>img + h1 {
    padding-top: 1em;
  }
  ul#revel-feature-list {
    left: 10vw;
  }
  #primary-nav>.columns-2:first-child {
    width: 192px;
  }
  #primary-nav>.columns-2:last-child {
    width: calc(100% - 192px);
  }
  #quote-rich-nancy>.parallax-content>h1 {
    font-size: 30px;
    line-height: 40px;
  }
  #quote-rich-nancy>.parallax-content {
    top: 50px;
  }
  #quote-rich-nancy>.parallax-content>h2 {
    font-size: 20px;
    line-height: 30px;
  }
  #quote-rich-nancy>.parallax-content>h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .parallax-content>.columns-1, .columns-1 {
    width: 85%;
  }
  .content {
    padding: 0 5% 68px 5%;
  }
  .content .columns-2 {
    padding-left: 1%;
    padding-right: 1%;
    width: 48%;
  }
  .tabs .tab .left-on-visible {
    width: 56%;
  }
  .tabs .tab .right-on-visible {
    width: 40%;
  }
  #campaigns-box-details-img>img {
    height: auto;
  }
  #campaigns-box-details-img {
    width: 25%;
    left: 35%;
  }
  #campaigns-box-details.visible>ul {
    width: 30%;
  }
}
@media (max-width: 950px) {
  .content.content-w-book {
    padding: 0px 0 48px 0px;
  }
  .content.content-w-book>img {
    display: none;
  }
  .content.content-w-book .columns-2 {
    width: 98%;
    margin: 0 1%;
  }
  .content.content-w-book {
    padding: 0px 0 48px 0px;
  }
  .content.content-w-book>img {
    width: 64px;
  }
}
@media (max-width:768px) {
	#lets-talk-parallax {
		background-position-y: -120px !important;
	}
  iframe {
    max-width: 95%;
  }
  .campaigns-box-title {
    font-size: 10px;
    line-height: 1.4em;
  }
  #campaigns-box-details-desc p {
    font-size: 14px;
    line-height: 1.4em;
  }
  #campaigns-box-details.visible>ul>li>h4 {
    font-size: 58% !important;
  }
  ol>li, ul>li {
    font-size: 18px;
  }
  #main-home>header h3 {
    font-size: 160%;
    line-height: 1.4em;
    letter-spacing: 1px;
  }
  #main-home>header h4 {
    padding: 4px;
    border: 2px #fff solid;
  }
  #main-home>header:first-child {
    /*background-size: 1500px 1000px;*/
    background-size: 100%;
    background-position: right top;
    background-repeat: no-repeat;
  }
  #single-pie-graph>.columns-2:last-child {
    width: 100%;
  }
  .color_holder {
    width: 12px;
    height: 12px;
  }
  .pie_graf_legend>ul>li {
    padding-bottom: 0;
  }
  #long-term-experience>div>div>h2 {
    padding: 24px 0 16px 0;
  }
  body {
    font-size: 10px;
  }
  #primary-nav h3 {
    background-size: contain;
    height: 24px;
    background-position: top left;
  }
  #primary-nav>.columns-2:first-child {
    width: 25%;
  }
  #primary-nav>.columns-2:last-child {
    width: 70%;
  }
  #primary-nav nav {
    height: 48px;
  }
  #primary-nav nav>ul>li {
    padding: 0 .25em;
  }
  #tollfree-number {
    display: none;
  }
  #primary-nav nav>ul {
    line-height: 43px;
  }
  #actual-client-marketing-benefit-button {
    width: 100%;
    font-weight: normal;
  }
  .content-superthin, .content-hyperthin {
    padding: 0.5em 5% 3em 5%;
    width: 90%;
  }
  .pie_chart_text {
    font-size: 14px;
    letter-spacing: 1px;
  }
  #quote-rich-nancy>.parallax-content>h1 {
    font-size: 30px;
  }
  #quote-rich-nancy>.parallax-content>h2 {
    font-size: 18px;
  }
  #quote-rich-nancy>.parallax-content>h3 {
    font-size: 14px;
  }
  #quote-rich-nancy>.parallax-content {
    width: 100%;
    left: 0;
    text-shadow: -1px 1px 1px #000;
  }
  #link-button-learn-more {
    top: 40vw;
  }
  #link-button-try-risk-free {
    top: 50vw;
  }
  #img-revel-ipad {
    top: calc(66vw - 33vw);
    width: 40vw;
  }
  #main-home>header h1 {
    line-height: 50px;
    font-size: 30px;
  }
  ul#revel-feature-list {
    top: 15vw;
    left: 20vw;
  }
  ul#revel-feature-list>li {
    font-size: 150%;
  }
  .parallax-content>.columns-1, .columns-1 {
    width: 90%;
  }
  #eop-details {
    background-size: 2048px 1000px;
  }
  #logo-section {
    padding-top: 1em;
  }
  #single-pie-graph>.columns-2, #single-pie-graph>.columns-2:nth-child(2) {
    width: 100%;
  }
  #single-pie-graph>.columns-2:nth-child(2) {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  #single-pie-graph>.columns-2:nth-child(2)>.left-green {
    border: none;
  }
  .pie_graf_legend {
    margin: 0;
    padding: 0;
  }
  .content .columns-3 {
    display: block;
    width: 100%;
  }
  .content #actual-client-marketing-benefit .columns-3 {
  	display:inline-block;
  	width: 31.33%;
  }
  #triple-pie-graph {
  	max-width: 384px;
  	margin: 0 auto;
  }
  #marketing-engine-column {
  	padding-top: 25vw;
  }
  #campaign-studio-column {
  	padding-top: 25vw;
  }
  #data-mining-column {
  	padding-top: 25vw;
  }
  .content {
    padding: 48px 5% 24px 5%;
    font-size: 13px;
  }
  #pom-details.parallax>.parallax-content>* {
    width: 90%;
  }
  #primary-nav>.columns-2>h3 {
    top: 14px;
  }
  #pom-details>.parallax-content p, #eop-details>.parallax-content p, #long-term-experience p, #how-much p, #introduction p {
    font-size: 13px;
  }
  footer>.columns-3 {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 150%;
    line-height: 1.3em;
    letter-spacing: 1px;
  }
  #site-footer h2, #site-footer h3 {
    text-align: center;
    font-size: 18px;
    letter-spacing: 1px;
  }
  #main-home>header h1 {
    font-size: 26px;
    line-height: 26px;
  }
  #main-home>header h2 {
    font-size: 22px;
    line-height: 24px;
  }
  .black-translucent {
    top: 32px;
  }
  .content-thin {
    padding: 0 2.5% 24px 2.5%;
  }
  .pie_graf, .pie_graf_legend {
    width: 48%;
    text-align: center;
  }
  .pie_graf_legend>ul {
    margin: 0;
    padding: 0;
    text-align: left;
  }
  h2 {
    font-size: 32px;
  }
  #how-much {
    background-position-x: right !important;
  }
  #pom-details>.parallax-content p, #eop-details>.parallax-content p, #long-term-experience p, #how-much p, #introduction p {
    line-height: 1.4em;
  }
  li {
    font-size: 13px;
  }
  #long-term-experience {
    background-position-x: center !important;
    background-size: 2048px 2000px !important;
    height: 550px;
  }
  #quote-rich-nancy {
  	width: 90vw;
  }
  #quote-rich-nancy>.parallax-content {
    top: 0px;
    line-height: 1.6em;
  }
  #quote-rich-nancy>.parallax-content>h1, #quote-rich-nancy>.parallax-content>h2, #quote-rich-nancy>.parallax-content>h3 {
    line-height: 1.6em;
    font-size: 20px;
    text-align: center;
  }
  #quote-rich-nancy>.parallax-content>h2 {
    font-size: 16px;
  }
  #quote-rich-nancy>.parallax-content>h3 {
    font-size: 12px;
  }
  footer>.columns-3:nth-child(2) {
    display: none;
  }
  #primary-nav nav>ul>li>a {
    font-size: 10px;
    font-weight: normal;
    letter-spacing: .5px;
  }
  #primary-nav h3 {
    width: 100%;
    height: 100%;
    max-height: 58px;
  }
  #primary-nav>.columns-2:first-child>a {
    width: 100%;
  }
  .service-addon:first-child {
    margin-bottom: 3em;
  }
  .four_columns>div:not(:first-child)>.column_inner .program-details p {
    line-height: 1.4em !important;
  }
  #primary-nav nav>ul>li>a#link-login {
    min-width: 32px;
  }
  .tabs {
    width: 100%;
  }
  .tabs .tab {
    z-index: 1;
  }
  .tab-navigation>ol {
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    height: 78px !important;
  }
  .tab-navigation>ol>li {
    font-size: 11px;
    padding: 0px 4px 0px 56px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .tab-navigation>ol>li.active {
    border-left: 1px transparent solid;
    border-bottom: 1px #ccc solid;
  }
  .tab-navigation>ol>li:first-child {
    top: 54px !important;
    left: -31px !important;
  }
  .tab-navigation>ol>li:nth-child(2) {
    top: 54px !important;
    left: -91px !important;
  }
  .tab-navigation>ol>li:nth-child(3) {
    top: 54px !important;
    left: -147px !important;
  }
  .tab-navigation>ol>li:nth-child(4) {
    top: 54px !important;
    left: -210px !important;
  }
  .tab-navigation>ol>li:nth-child(5) {
    top: 54px !important;
    left: -276px !important;
  }
  .tab-navigation>ol>li:nth-child(6) {
    top: 54px !important;
    left: -337px !important;
  }
  .tab-navigation>ol>li:nth-child(7) {
    top: 47px !important;
    left: -409px !important;
  }
  .tab-navigation>ol>li:nth-child(8) {
    top: 47px !important;
    left: -499px !important;
  }
}
@media (max-width: 512px) {
  #mountain-road>div>p {
    font-size:5vw;
    margin:0em 0 .5em 0;
  }
  #mountain-road>div>p:not(:first-child) {
    font-size:3vw;
  }
  #site-footer>div:first-child {
    display: none !important;
  }
  #site-footer>div:last-child {
    display: block;
    margin: 0 auto;
    line-height: 1.4em;
  }
  #home-page-box>header:first-child {
    margin: 0 !important;
    padding-top: 0 !important;
  }
  #home-page-box>header>div>h2.homepage-subtitle {
    font-size:3.5vw;
  }
  .link-button {
    min-width: 150px;
    font-size: 12px;
  }
  ul#revel-feature-list>li {
    font-size: 115%;
    line-height: 13px;
  }
  ul#revel-feature-list {
    left: 5vw;
  }
  #link-button-learn-more {
    top: 30vw;
    left: 50vw;
  }
  #link-button-try-risk-free {
    top: 41vw;
    left: 50vw;
  }
  .content {
    padding: 0 5% 24px 5%;
  }
  .large-number-green {
    font-size: 34px;
    height: 38px;
    line-height: 38px;
  }
  #rr-contact-us-box h2, #rr-partners-box h2 {
    margin: 0;
  }
  #rr-contact-us-box p, #rr-partners-box p {
    margin: 0;
  }
  #rr-contact-us-box, #rr-partners-box {
    width: 265px !important;
    top: 50px;
    left: 10px !important;
  }
  #rr-contact-us-box textarea, #rr-partners-box textarea {
    width: 80%;
  }
  canvas {
    height: 200px !important;
    width: 200px !important;
  }
  #triple-pie-graph .columns-3:nth-child(7) {
    top: 788px;
  }
  #lineGraph4914 {
    height: 300px !important;
    width: 200px !important;
  }
  #single-pie-graph {
    padding: 0px 5% 24px 5%;
  }
  #actual-client-marketing-benefit .columns-3 {
    width: 100%;
  }
  #actual-client-marketing-benefit .columns-3 canvas {
    height: 100px !important;
    width: 100px !important;
  }
  #actual-client-marketing-benefit.visible {
    height: 1650px;
  }
  #pom-details.parallax, #how-much, #long-term-experience, #eop-details {
    background-position: 0px 0px;
    background-size: 100% 100%;
    background-attachment: scroll;
  }
  .pie_graf, .pie_graf_legend {
    width: 100%;
  }
  .pie_graf_legend>ul {
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .pie_graf_legend>ul>li {
    display: inline-block;
  }
  #rr-right, #spend-less-make-more {
    font-size: 23px;
  }
  #lineGraph4914 + div {
    font-size: 100% !important;
  }
  ol>li, ul>li {
    font-size: 13px;
  }
  #triple-pie-graph {
    padding-top: 0;
  }
  .tocounter {
    top: -55px;
  }
  .pie_chart_text {
    top: -15px;
  }
  .tabs>.tab>.columns-2 h2 {
    margin: 0 0 0 50px;
  }
  .tabs>.tab>.columns-2:first-child {
    width: 100%;
  }
  .tabs>.tab>.columns-2:last-child {
    float: left;
    top: 0;
    position: absolute;
    left: 0;
    width: 33% !important;
  }
  .tab-navigation>ol {
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
  }
  .tab-navigation>ol>li {
    padding: 0px 4px 0px 16px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
  .tab-navigation>ol>li.active {
    border-left: 1px transparent solid;
    border-bottom: 1px #ccc solid;
  }
  .tab-navigation>ol>li:first-child {
    top: 48px !important;
    left: 0px !important;
  }
  .tab-navigation>ol>li:nth-child(2) {
    top: 48px !important;
    left: -23px !important;
  }
  .tab-navigation>ol>li:nth-child(3) {
    top: 48px !important;
    left: -46px !important;
  }
  .tab-navigation>ol>li:nth-child(4) {
    top: 48px !important;
    left: -69px !important;
  }
  .tab-navigation>ol>li:nth-child(5) {
    top: 48px !important;
    left: -92px !important;
  }
  .tab-navigation>ol>li:nth-child(6) {
    top: 48px !important;
    left: -115px !important;
  }
  .tab-navigation>ol>li:nth-child(7) {
    top: 40px !important;
    left: -138px !important;
  }
  .tab-navigation>ol>li:nth-child(8) {
    top: 44px !important;
    left: -179px !important;
  }
  #long-term-experience>div>div>h2 {
    font-size: 16px;
  }
  #main-home>header h4 {
    margin-top: 16px;
  }
  .columns-2 {
    display: block;
    width: 100% !important;
  }
  #top-nav-dn-arrow {
    display: block;
    padding: 1em .25em;
    width: 100%;
    cursor: pointer;
  }
  #top-nav-dn-arrow + ul {
    height: 0px;
    overflow: hidden;
    transition: height .5s ease 0s;
    -webkit-transition: height .5s ease 0s;
    -moz-transition: height .5s ease 0s;
    -o-transition: height .5s ease 0s;
  }
  #top-nav-dn-arrow + ul.visible {
    height: auto;
  }
  iframe {
    max-height: 256px;
  }
  #primary-nav nav>ul>li>a {
    font-size: 13px;
  }
  #primary-nav {
    position: static;
  }
  #primary-nav nav>ul {
    padding: 0px;
  }
  #primary-nav nav>ul>li {
    display: block;
    background: black;
    width: 100%;
    margin-top: 0px;
  }
  #primary-nav nav {
    height: auto;
    margin-right: 0px;
  }
  #primary-nav>.columns-2:last-child {
    width: 100%;
    text-align: center;
  }
  #primary-nav>.columns-2:first-child {
    width: 100%;
    text-align: center;
  }
  #primary-nav>.columns-2:first-child>a {
    height: auto;
    min-height: 48px;
  }
  #primary-nav>.columns-2:first-child>a {
    width: auto;
  }
  #primary-nav h3 {
    height: 64px;
    min-width: 192px;
  }
  #main-home>header:first-child {
    margin-top: 0px;
  }
  #main-home>header h3 {
    margin-top: 0;
  }
}
@media (max-width: 384px) {
  .four_columns {
    min-width: 0px !important;
  }
  #campaigns-box-details.visible, #campaigns-box-details.visible>ul {
    height: 764px;
  }
  #campaigns-box-details-img {
    position: absolute;
    top: 16px;
    left: 37%;
    width: 63%;
  }
  #campaigns-box-details-desc {
    top: 384px;
    left: 37%;
    width: 63%;
    height: 482px;
    overflow: hidden;
  }
  #campaigns-box-details-desc>h4 {
    font-size: 12px;
    text-align: center;
  }
  #campaigns-box-details-img>img {
    height: auto;
  }
  #campaigns-box-details.visible>ul {
    width: 37%;
  }
  #campaigns-box-details-desc p {
    font-size: 12px;
    line-height: 1.4em;
  }
}
@media all and (min-width: 1687px) {
  #single-pie-graph>.columns-2:nth-child(2) {
    width: 46%;
  }
}
@media only screen and (min-width: 1500px) and (min-aspect-ratio: 16/9) {
  #main-home>header h1 {
    line-height: 55px;
  }
  #main-home>header>img + h1 {
    padding-top: 12px;
  }
  #img-revel-ipad {
    top: 40vh;
    width: 60vh;
  }
  ul#revel-feature-list {
    left: 25vw;
  }
  ul#revel-feature-list>li {
    font-size: 200%;
    line-height: 1.2em;
  }
  #link-button-learn-more {
    left: 50vw;
  }
  .link-button {
    padding: .75em 1em;
    width: 300px;
    font-size: 24px;
    letter-spacing: 2PX;
  }
  #link-button-try-risk-free {
    left: 70vw;
  }
}
/* FROM https://codepen.io/jmuspratt/pen/HLlwa */
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -moz-background-size: 75% auto;
    -o-background-size: 75% auto;
    -webkit-background-size: 75% auto;
    background-size: 75% auto;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}
@-moz-keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -moz-background-size: 75% auto;
    -o-background-size: 75% auto;
    -webkit-background-size: 75% auto;
    background-size: 75% auto;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}
@-ms-keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -moz-background-size: 75% auto;
    -o-background-size: 75% auto;
    -webkit-background-size: 75% auto;
    background-size: 75% auto;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}
@keyframes pulse {
  0% {
    opacity: 0;
    background-position: center top;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
  10% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    -moz-background-size: 75% auto;
    -o-background-size: 75% auto;
    -webkit-background-size: 75% auto;
    background-size: 75% auto;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    background-position: center bottom;
    -moz-background-size: 0 auto;
    -o-background-size: 0 auto;
    -webkit-background-size: 0 auto;
    background-size: 0 auto;
  }
}
.scroll-down {
  margin: 0;
  border: 2px solid #008df1;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  left: 50%;
  top: 28vh;
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -50px;
  cursor: pointer;
}
.scroll-down a {
  display: block;
  opacity: 0;
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  border-radius: 100px;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 0;
  font-size: 0;
  color: transparent;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
  -moz-background-size: 0 auto;
  -o-background-size: 0 auto;
  -webkit-background-size: 0 auto;
  background-size: 0 auto;
  -webkit-animation: pulse 1.5s 0s infinite normal ease forwards;
  -moz-animation: pulse 1.5s 0s infinite normal ease forwards;
  -o-animation: pulse 1.5s 0s infinite normal ease forwards;
  animation: pulse 1.5s 0s infinite normal ease forwards;
  background-image: url("/images/arrow-down.png");
  background-repeat: no-repeat;
}
.scroll-down a:before, .scroll-down a:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("/images/arrow-down.png") no-repeat center top;
  -moz-background-size: 100% auto;
  -o-background-size: 100% auto;
  -webkit-background-size: 100% auto;
  background-size: 100% auto;
}
.scroll-down a:before {
  -webkit-animation: pulse 1.5s 0.25s infinite normal ease forwards;
  -moz-animation: pulse 1.5s 0.25s infinite normal ease forwards;
  -o-animation: pulse 1.5s 0.25s infinite normal ease forwards;
  animation: pulse 1.5s 0.25s infinite normal ease forwards;
}
.scroll-down a:after {
  -webkit-animation: pulse 1.5s 0.5s infinite normal ease forwards;
  -moz-animation: pulse 1.5s 0.5s infinite normal ease forwards;
  -o-animation: pulse 1.5s 0.5s infinite normal ease forwards;
  animation: pulse 1.5s 0.5s infinite normal ease forwards;
}
.scroll-down a:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
#primary-nav.scrolled-white {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 1px 1.5px rgba(0, 0, 0, .12), 0 1px 1px rgba(0, 0, 0, .24);
}
#primary-nav.scrolled-white h3 {
  background: url(/logo-black-256x57.png) no-repeat center;
  background-size: 85% auto;
}
#primary-nav.scrolled-white nav>ul>li>a {
  color:#000;
}
.gray-bg {
  background: rgba(0, 0, 0, .05);
}
section#main-home>div.content.gray-bg {
  padding-top: 48px;
}
#capabilities-details section.slick-slide>img {
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, .5);
  width:128px;
  height:128px;
}
.slick-slide {
  font-size: 19px;
  line-height: 1.8em;
}
.slick-slide audio {
  margin: 0 auto;
  display: block;
}