@keyframes arrowHover {
  0% {
    background-position: 50% 50%;
  }
  50% {
    background-position: 310% 50%;
  }
  50.001% {
    background-position: -210% 50%;
  }
  100% {
    background-position: 50% 50%;
  }
}
/*
 RMS Homepage styles. Require site.css

 Everything is scoped to a body class so that we can combine/minify all css files, anything 
 that should cascade across pages goes in site.scss or an include/mixin
*/
.HomePage .pane-handle {
  display: none;
}
.HomePage .sales-aid {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25em 0 0.75em;
}
.HomePage .sales-aid .from {
  display: none;
}
.HomePage .sales-aid .scenario {
  display: block;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  color: #FFF;
  background: #3f4347;
  text-transform: uppercase;
  line-height: 2.5em;
}
.HomePage .sales-aid .caption {
  background: white;
  max-height: 0px;
  transition: max-height 0.5s ease;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 2.5em;
  width: 80%;
  left: 10%;
}
.HomePage .sales-aid .caption.open {
  max-height: 500px;
}
.HomePage .sales-aid .caption h2 {
  padding: 1.25em;
  display: none;
  color: #23a46c;
  font-size: 1.5em;
  text-transform: uppercase;
}
.HomePage .sales-aid .caption h2 span {
  display: block;
  font-size: 0.5em;
}
.HomePage .sales-aid .caption p {
  padding: 1.25em;
}
.HomePage .sales-aid a.expand {
  position: relative;
  padding: 0;
  width: 0.75em;
  height: 0.75em;
  color: #000;
  font-size: 2.25em;
  background: #aedfe5;
  border-radius: 51%;
  display: inline-block;
  background: #aedfe5 url("/resources/themes/rms/images/expand-icon.png") center center no-repeat;
  background-size: 55% auto;
  position: absolute;
  top: 0.65em;
  right: 8%;
  z-index: 1;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .HomePage .sales-aid a.expand {
    /* on retina, use image that's scaled by 2 */
    background-image: url("/resources/themes/rms/images/expand-icon@2x.png");
    background-size: 55% auto;
  }
}
.HomePage .sales-aid a.expand:after {
  display: none;
}
.HomePage .sales-aid a.expand.open {
  background: #aedfe5 url("/resources/themes/rms/images/collapse-icon.png") center center no-repeat;
  background-size: 55% auto;
  transform: rotate(0deg);
  -moz-animation: none;
  animation: none;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .HomePage .sales-aid a.expand.open {
    /* on retina, use image that's scaled by 2 */
    background-image: url("/resources/themes/rms/images/collapse-icon@2x.png");
    background-size: 55% auto;
  }
}
.HomePage .sales-aid .without-rms {
  position: relative;
  background: url("/resources/themes/rms/images/narrow-infographic-without.png") center 2.5em no-repeat;
  background-size: 100% auto;
  padding-bottom: 65%;
}
.HomePage .sales-aid .with-rms {
  position: relative;
  background: url("/resources/themes/rms/images/narrow-infographic-with.png") center 2.5em no-repeat;
  background-size: 100% auto;
  padding-bottom: 65%;
}
.HomePage .sales-aid .with-rms .scenario {
  background: #23a46c;
}
@media (min-width: 601px) {
  .HomePage .sales-aid .from {
    display: block;
    position: absolute;
    top: 10px;
    width: 12.5%;
    background: #f5f5f1;
    color: #231f20;
    text-transform: uppercase;
  }
  .HomePage .sales-aid .infographic-wrap {
    position: relative;
    z-index: 1;
    padding-bottom: 44.5%;
  }
  .HomePage .sales-aid .pane-wrap, .HomePage .sales-aid .with-rms {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-bottom: 0;
  }
  .HomePage .sales-aid .without-rms {
    background: #f5f5f1 url("/resources/themes/rms/images/infographic-with.png") left 1.5em no-repeat;
    background-size: auto 93.45%;
    height: 100%;
    padding-bottom: 0;
  }
  .HomePage .sales-aid .without-rms .from {
    right: 5%;
  }
  .HomePage .sales-aid .with-rms {
    background: #f5f5f1 url("/resources/themes/rms/images/infographic-without.png") left 1.5em no-repeat;
    background-size: 100% auto;
    z-index: 1;
  }
  .HomePage .sales-aid .with-rms .from {
    left: 5%;
  }
  .HomePage .sales-aid .pane-wrap {
    position: absolute;
    height: 100%;
    width: 100%;
    border-right: 2px solid #203460;
    z-index: 2;
    transition: width 0.1s;
  }
  .HomePage .sales-aid .pane-wrap .pane-handle {
    cursor: pointer;
    text-indent: -9999px;
    width: 3.75em;
    height: 3.75em;
    background: #203460 url("/resources/themes/rms/images/pane-handle.png") center center no-repeat;
    background-size: 60% auto;
    border-radius: 50%;
    display: block;
    position: absolute;
    z-index: 10;
    top: 39%;
    right: -1.875em;
  }
  .HomePage .sales-aid .pane-wrap .pane-handle:hover {
    background-color: #3f4347;
  }
  .HomePage .sales-aid .pane-wrap .pane-handle.pulse {
    animation: pulse 1.5s 6;
  }
  .HomePage .sales-aid a.expand, .HomePage .sales-aid .scenario {
    display: none;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0px #23a46c;
  }
  70% {
    -webkit-box-shadow: 0 0 0 5px #23a46c;
  }
  100% {
    -webkit-box-shadow: 0 0 0 0px #23a46c;
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0px #23a46c;
    box-shadow: 0 0 0 0 #23a46c;
  }
  70% {
    -moz-box-shadow: 0 0 0 5px #23a46c;
    box-shadow: 0 0 0 5px #23a46c;
  }
  100% {
    -moz-box-shadow: 0 0 0 0px #23a46c;
    box-shadow: 0 0 0 0px #23a46c;
  }
}
.HomePage header .inner {
  background: #f5f5f1;
  transition: background-color 0.2s linear;
}
.HomePage section.hero {
  background: #23a46c;
  color: #FFF;
  padding: 5em 0 1.25em;
}
.HomePage section.hero .hero-wrap {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.HomePage section.hero img {
  width: 160vw;
  margin: 0;
  padding: 0;
  display: block;
}
.HomePage section.hero h2 {
  padding: 1.25em 0.574em 0.574em;
  font-size: 1.675em;
}
.HomePage section.hero p {
  font-size: 1em;
  padding: 0 1.25em 1.25em;
}
.HomePage section.hero p.cta {
  text-align: center;
}
.HomePage section.hero a.arrow {
  text-align: center;
  padding: 1.25em auto;
  color: #FFF;
  margin: 0 auto;
  font-size: 1.25em;
  font-weight: 500;
}
.HomePage section.hero a.arrow:hover {
  color: #FFF;
}
@media (min-width: 321px) {
  .HomePage section.hero h2 {
    font-size: 1.75em;
  }
}
@media (min-width: 601px) {
  .HomePage section.hero {
    padding-top: 5.5em;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background: transparent;
  }
  .HomePage section.hero .hero-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
  }
  .HomePage section.hero .hero-wrap img {
    position: relative;
    left: -40vw;
    width: 180vw;
  }
  .HomePage section.hero h2 {
    font-weight: 300;
    font-size: 1.8125em;
    color: #FFF;
    width: 53vw;
    padding-left: 38vw;
    line-height: 1.25em;
  }
  .HomePage section.hero p {
    font-size: 0.875em;
    width: 58vw;
    padding-left: 38vw;
  }
  .HomePage section.hero p.cta {
    font-size: 0.5em;
  }
  .HomePage section.hero p.cta a:hover {
    color: #FFF;
  }
  .HomePage section.hero a {
    font-size: 1.5em;
  }
  .HomePage section.hero a:after {
    background-size: 50%;
  }
}
@media (min-width: 701px) {
  .HomePage section.hero .hero-wrap img {
    width: 160vw;
    left: -31vw;
  }
  .HomePage section.hero h2 {
    padding-top: 2.5em;
    width: 56vw;
  }
  .HomePage section.hero p, .HomePage section.hero p.cta {
    font-size: 0.875em;
  }
  .HomePage section.hero p.cta {
    padding-bottom: 1.5em;
  }
  .HomePage section.hero a {
    font-size: 1.2857em;
  }
  .HomePage section.hero a:after {
    background-size: auto;
  }
}
@media (min-width: 801px) {
  .HomePage section.hero .hero-wrap img {
    width: 140vw;
    left: -24vw;
  }
  .HomePage section.hero h2 {
    padding-left: 40vw;
  }
  .HomePage section.hero p {
    padding-left: 40vw;
    width: 40vw;
  }
}
@media (min-width: 901px) {
  .HomePage section.hero h2, .HomePage section.hero p {
    width: 50vw;
    padding-left: 42vw;
  }
  .HomePage section.hero h2 {
    padding-top: 3em;
  }
  .HomePage section.hero p {
    font-size: 1em;
  }
  .HomePage section.hero p.cta {
    padding-bottom: 3.5em;
    text-align: left;
  }
  .HomePage section.hero .hero-wrap img {
    width: 130vw;
    left: -18vw;
  }
}
@media (min-width: 1001px) {
  .HomePage section.hero .hero-wrap img {
    width: 120vw;
    left: -12vw;
  }
  .HomePage section.hero h2 {
    width: 45vw;
    padding-left: 47vw;
    padding-top: 3em;
  }
  .HomePage section.hero p {
    font-size: 1.125em;
    padding-left: 47vw;
  }
  .HomePage section.hero p.cta {
    font-size: 0.875em;
    padding-bottom: 3.5em;
  }
}
@media (min-width: 1101px) {
  .HomePage section.hero h2 {
    width: 50vw;
    font-size: 2.375em;
    padding-top: 2em;
  }
}
@media (min-width: 1201px) {
  .HomePage section.hero .hero-wrap img {
    width: 115vw;
    left: -7vw;
  }
  .HomePage section.hero h2 {
    width: 45vw;
    max-width: 540px;
  }
  .HomePage section.hero p {
    max-width: 500px;
  }
  .HomePage section.hero h2, .HomePage section.hero p {
    padding-left: 50vw;
  }
}
@media (min-width: 1501px) {
  .HomePage section.hero .hero-wrap {
    background: #7C1F78 url("/resources/themes/rms/images/Hero-FadeOffRight.jpg") 1500px 0px no-repeat;
    background-size: auto 100%;
  }
  .HomePage section.hero .hero-wrap img {
    left: 0vw;
    max-width: 1500px;
  }
}
.HomePage section.segments {
  max-width: 1240px;
  margin: 0 auto;
}
.HomePage section.segments ul {
  margin: 5.725em 1.375em 1.25em;
  max-width: 1240px;
}
@media (min-width: 601px) {
  .HomePage section.segments ul {
    margin-bottom: 5.725em;
  }
}
.HomePage section.segments ul li {
  border-top: 2px solid #23a46c;
  position: relative;
  margin-top: 3em;
}
.HomePage section.segments ul li a {
  font-weight: 400;
}
.HomePage section.segments ul li.hcp, .HomePage section.segments ul li.banks {
  border-bottom: 2px solid #23a46c;
  padding-bottom: 1.5em;
}
.HomePage section.segments ul li.hcp p:last-child, .HomePage section.segments ul li.banks p:last-child {
  padding-bottom: 0;
}
.HomePage section.segments ul li.hcp:after, .HomePage section.segments ul li.banks:after {
  content: "";
  position: absolute;
  top: -3em;
  width: 100%;
  height: 3em;
  background: transparent url("/resources/themes/rms/images/HCP_Icon.png") center center no-repeat;
  background-size: auto 3em;
}
@media (min-width: 601px) {
  .HomePage section.segments ul li.hcp:after, .HomePage section.segments ul li.banks:after {
    height: 5em;
    top: -5em;
    background-size: auto 5em;
  }
}
.HomePage section.segments ul li.banks {
  margin-top: 5em;
}
.HomePage section.segments ul li.banks:after {
  background-image: url("/resources/themes/rms/images/Bank_Icon.png");
}
.HomePage section.segments ul li h3 {
  font-size: 1.75em;
  font-weight: 300;
  text-align: center;
  padding: 0.8571em 0 0.6428em;
}
.HomePage section.segments ul li h3 a {
  color: #23a46c;
  font-weight: 300;
}
.HomePage section.segments ul li h3 a:after {
  content: "";
}
.HomePage section.segments ul li p {
  color: #3f4347;
}
@media (min-width: 601px) {
  .HomePage section.segments ul {
    margin: 0 auto;
    width: 90vw;
    overflow: hidden;
  }
  .HomePage section.segments ul li {
    margin: 5em 5%;
    float: left;
    box-sizing: border-box;
    padding: 0;
    width: 40%;
  }
  .HomePage section.segments ul li p.learnmore {
    margin-top: 1em;
    border-bottom: 0;
    border-top: 2px solid #23a46c;
  }
}
.HomePage section.segments p.learnmore {
  padding: 0;
}
.HomePage section.how-it-works {
  background: #f5f5f1;
}
.HomePage section.how-it-works h3 {
  font-size: 2.1875em;
  padding-bottom: 0.5714em;
  text-align: center;
}
.HomePage section.how-it-works p {
  font-size: 1.125em;
  color: #3f4347;
  max-width: 960px;
  margin: 0 auto;
}
.HomePage section.how-it-works p strong {
  font-weight: 700;
}
.HomePage section.how-it-works p.download {
  text-align: right;
  max-width: 1240px;
  font-size: 0.875em;
  padding: 0;
}
.HomePage section.how-it-works p.download a {
  color: #23a46c;
}
.HomePage section.how-it-works p.learnmore {
  padding-top: 1.25em;
  text-align: center;
}
@media (min-width: 601px) {
  .HomePage section.how-it-works p.learnmore {
    padding-top: 2.875em;
  }
}
.HomePage section.how-it-works a {
  font-size: 1em;
}
.HomePage section.solutions {
  background: #23a46c;
  color: #FFF;
}
.HomePage section.solutions h4 {
  font-size: 1.75em;
  color: #FFF;
}
.HomePage section.solutions .learnmore {
  text-align: center;
  padding-top: 1.25em;
}
@media (min-width: 601px) {
  .HomePage section.solutions .learnmore {
    padding-top: 3em;
  }
}
.HomePage section.solutions .learnmore a {
  color: #FFF;
  font-size: 0.875em;
}
@media (min-width: 481px) {
  .HomePage section.solutions .learnmore a {
    font-size: 1em;
  }
}
@media (min-width: 601px) {
  .HomePage section.solutions .learnmore a {
    font-size: 1em;
  }
}
.HomePage section.solutions .learnmore a:hover {
  color: #FFF;
}
.HomePage section.solutions .disclaimers {
  font-size: 0.9em;
  max-width: 1340px;
  padding-left: 1.75%;
  clear: both;
  color: #ece810;
}
.HomePage section.solutions > ul hr {
  border: 1px solid #ece810;
}
.HomePage section.solutions > ul > li {
  padding-top: 2.875em;
  position: relative;
}
.HomePage section.solutions > ul > li > p:first-child {
  text-transform: uppercase;
  font-size: 1.25em;
  text-align: center;
}
.HomePage section.solutions > ul > li h1, .HomePage section.solutions > ul > li h2, .HomePage section.solutions > ul > li h3, .HomePage section.solutions > ul > li h4, .HomePage section.solutions > ul > li h5, .HomePage section.solutions > ul > li h6 {
  color: #ece810;
  text-transform: uppercase;
  font-size: 2.75em;
  font-weight: 400;
  line-height: 1em;
  border-bottom: 2px solid #ece810;
  padding-bottom: 0.45em;
}
.HomePage section.solutions > ul > li > ul {
  padding-top: 0.875em;
}
.HomePage section.solutions > ul > li > ul li {
  position: relative;
  padding: 0.875em 0 0.875em 1.5em;
  font-weight: 500;
  font-size: 1.125em;
}
.HomePage section.solutions > ul > li > ul li:before {
  content: " ";
  width: 1.25em;
  border-bottom: 2px solid #ece810;
  display: inline-block;
  position: absolute;
  line-height: 1em;
  left: 0;
  top: calc(1.75em - 1px);
}
@media (min-width: 481px) {
  .HomePage section.solutions > ul > li > ul li {
    padding-left: 2.25em;
  }
  .HomePage section.solutions > ul > li > ul li:before {
    width: 2em;
  }
}
@media (min-width: 601px) {
  .HomePage section.solutions > ul > li > ul li {
    font-size: 1.125em;
  }
}
.HomePage section.solutions > ul > li p {
  font-size: 1em;
  font-weight: 500;
}
.HomePage section.solutions > ul > li p strong {
  font-weight: 700;
}
.HomePage section.solutions > ul > li .caption {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
}
.HomePage section.solutions > ul > li .caption p {
  text-align: left;
  font-size: 1em;
  font-weight: 400;
}
.HomePage section.solutions > ul > li .caption.open {
  max-height: 500px;
}
.HomePage section.solutions > ul > li > a.expand {
  position: relative;
  padding: 0;
  width: 0.75em;
  height: 0.75em;
  color: #000;
  font-size: 2.25em;
  background: #aedfe5;
  border-radius: 51%;
  display: inline-block;
  background: #aedfe5 url("/resources/themes/rms/images/expand-icon.png") center center no-repeat;
  background-size: 55% auto;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .HomePage section.solutions > ul > li > a.expand {
    /* on retina, use image that's scaled by 2 */
    background-image: url("/resources/themes/rms/images/expand-icon@2x.png");
    background-size: 55% auto;
  }
}
.HomePage section.solutions > ul > li > a.expand:after {
  display: none;
}
.HomePage section.solutions > ul > li > a.expand.open {
  background: #aedfe5 url("/resources/themes/rms/images/collapse-icon.png") center center no-repeat;
  background-size: 55% auto;
  transform: rotate(0deg);
  -moz-animation: none;
  animation: none;
}
@media (min--moz-device-pixel-ratio: 1.3), (-o-min-device-pixel-ratio: 2.6/2), (-webkit-min-device-pixel-ratio: 1.3), (min-device-pixel-ratio: 1.3), (min-resolution: 1.3dppx) {
  .HomePage section.solutions > ul > li > a.expand.open {
    /* on retina, use image that's scaled by 2 */
    background-image: url("/resources/themes/rms/images/collapse-icon@2x.png");
    background-size: 55% auto;
  }
}
@media (min-width: 901px) {
  .HomePage section.solutions > h4 {
    max-width: 840px;
    margin: 0 auto;
    text-align: center;
    font-size: 2.1875em;
    padding-bottom: 0.742em;
  }
  .HomePage section.solutions > p {
    max-width: 960px;
    margin: 0 auto;
  }
  .HomePage section.solutions > ul {
    margin: 0 auto;
    max-width: 1380px;
  }
  .HomePage section.solutions > ul > li {
    width: 33%;
    float: left;
    box-sizing: border-box;
    padding: 2.75em 1.75% 0;
  }
  .HomePage section.solutions p.learnmore {
    clear: both;
  }
}
.HomePage section.experience {
  position: relative;
}
.HomePage section.experience h4 {
  font-size: 1.875em;
  padding-top: 1.25em;
}
.HomePage section.experience p {
  font-size: 1.125em;
  padding: 0.625em 0;
  color: #3f4347;
}
.HomePage section.experience p strong {
  font-weight: 700;
}
.HomePage section.experience p:last-child {
  text-align: center;
  padding-top: 1.25em;
}
.HomePage section.experience p:nth-last-child(2) {
  padding-bottom: 0;
}
.HomePage section.experience .tri-image {
  position: relative;
  position: relative;
  overflow: visible;
  padding-bottom: 56.25%;
}
.HomePage section.experience .tri-image .fg, .HomePage section.experience .tri-image .bg {
  display: block;
  position: absolute;
  padding-bottom: 56.25%;
  width: 100%;
  line-height: 0px;
}
.HomePage section.experience .tri-image .fg {
  background: url("/resources/themes/rms/images/home-experience-photo@2x.jpg") top left no-repeat;
  background-size: 100% 100%;
  top: 0;
  left: 0;
}
.HomePage section.experience .tri-image .bg {
  top: 0.5em;
  left: 0.5em;
  background-color: #aedfe5;
  z-index: -1;
}
@media (min-width: 601px) {
  .HomePage section.experience .tri-image {
    width: 40%;
    height: auto;
    min-height: 350px;
    padding-bottom: 0;
  }
  .HomePage section.experience .tri-image .fg, .HomePage section.experience .tri-image .bg {
    max-width: 550px;
    padding-bottom: 103%;
  }
  .HomePage section.experience .tri-image .fg {
    background-image: url("/resources/themes/rms/images/home-rounded-tri-graphic.png");
    background-size: 100% auto;
  }
  .HomePage section.experience .tri-image .bg {
    top: 2.5em;
    left: -1em;
    background: url("/resources/themes/rms/images/light-blue-triangle-graphic.png") top left no-repeat;
    background-size: 100% auto;
  }
}
@media (min-width: 601px) {
  .HomePage section.experience .content-wrap {
    box-sizing: border-box;
    width: 80%;
    max-width: 840px;
    margin: 0 auto;
    padding-right: 25%;
  }
  .HomePage section.experience .content-wrap h4 {
    padding-top: 0;
  }
  .HomePage section.experience p:last-child {
    text-align: left;
    padding-top: 3em;
  }
  .HomePage section.experience .tri-image {
    position: absolute;
    right: -2.25em;
    top: -3em;
  }
}
@media (min-width: 901px) {
  .HomePage section.experience .content-wrap {
    padding-right: 27%;
  }
  .HomePage section.experience .tri-image {
    top: -4.5em;
  }
}
@media (min-width: 1101px) {
  .HomePage section.experience .tri-image {
    top: -4.5em;
  }
  .HomePage section.experience .tri-image .bg, .HomePage section.experience .tri-image .fg {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1251px) {
  .HomePage section.experience .content-wrap {
    padding-right: 22%;
  }
}
@media (min-width: 1451px) {
  .HomePage section.experience .content-wrap {
    padding-right: 18%;
  }
}

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