@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-Light.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo/Archivo-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "ArchivoExpanded";
  src: url("../fonts/archivo/ArchivoExpanded-Light.woff2") format("woff2");
  font-weight: 300;
}
@font-face {
  font-family: "ArchivoExpanded";
  src: url("../fonts/archivo/ArchivoExpanded-LightItalic.woff2") format("woff2");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "ArchivoExpanded";
  src: url("../fonts/archivo/ArchivoExpanded-Regular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "ArchivoExpanded";
  src: url("../fonts/archivo/ArchivoExpanded-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "ArchivoExpanded";
  src: url("../fonts/archivo/ArchivoExpanded-Medium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "ArchivoExpanded";
  src: url("../fonts/archivo/ArchivoExpanded-MediumItalic.woff2") format("woff2");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "ArchivoExpanded";
  src: url("../fonts/archivo/ArchivoExpanded-Bold.woff2") format("woff2");
  font-weight: 700;
}
@font-face {
  font-family: "ArchivoExpanded";
  src: url("../fonts/archivo/ArchivoExpanded-BoldItalic.woff2") format("woff2");
  font-weight: 700;
  font-style: italic;
}
[data-aos] body[data-aos-easing=cubic], [data-aos][data-aos][data-aos-easing=cubic] {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos=smooth-slide-up] {
  transform: translateY(25%);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=smooth-slide-up].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

[data-aos=smooth-slide-left] {
  transform: translateX(25%);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=smooth-slide-left].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos=smooth-slide-right] {
  transform: translateX(-25%);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=smooth-slide-right].aos-animate {
  transform: translateX(0);
  opacity: 1;
}

[data-aos=smooth-slide-down] {
  transform: translateY(-25%);
  opacity: 0;
  transition-property: transform, opacity;
}
[data-aos=smooth-slide-down].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

@keyframes growWidth {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@keyframes smoothSlideUp {
  0% {
    transform: translateY(15%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes smoothSlideDown {
  0% {
    transform: translateY(-15%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.responsive-font-size {
  font-size: 16px;
}
@media (max-width: 767px) and (orientation: portrait) {
  .responsive-font-size {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 767px) and (orientation: landscape) {
  .responsive-font-size {
    font-size: 1.8vw;
  }
}
@media (min-width: 768px) and (max-width: 1280px) and (orientation: portrait) {
  .responsive-font-size {
    font-size: 1.25vw;
  }
}
@media (min-width: 768px) and (max-width: 1440px) and (orientation: landscape) {
  .responsive-font-size {
    font-size: 1.1111111111vw;
  }
}

.no-scroll {
  overflow: hidden;
}

.text--centered {
  text-align: center;
}

.bg-color--tea-green {
  background-color: #dff7d5;
}

.bg-color--mint-tulip {
  background-color: #C9F4F4;
}

.bg-color--snuff {
  background-color: #e8e2f2;
}

.bg-color--pale-rose {
  background-color: #ffdce9;
}

.bg-color--cruise {
  background-color: #bbeeee;
}

.max-width-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: 20px;
  padding-right: 20px;
}
.max-width-container--920 {
  max-width: 920px;
}
.max-width-container--1040 {
  max-width: 1040px;
}
.max-width-container--1120 {
  max-width: 1120px;
}
.max-width-container--1200 {
  max-width: 1200px;
}

.flex {
  margin: 0 auto;
  display: flex;
}
.flex.flex--wrap {
  flex-wrap: wrap;
}
.flex.flex--align-center {
  align-items: center;
}
.flex.flex--align-end {
  align-items: flex-end;
}
.flex.flex--columns {
  flex-direction: column;
}
.flex.flex--justify-start {
  justify-content: flex-start;
}
.flex.flex--justify-center {
  justify-content: center;
}
.flex.flex--justify-between {
  justify-content: space-between;
}

a {
  color: #095860;
  text-decoration: underline;
}
a:hover {
  color: #2A6970;
}

h1 span, .h1 span, h2 span, .h2 span, h3 span, .h3 span {
  display: inline-block;
  position: relative;
  z-index: 0;
}
h1 span:after, .h1 span:after, h2 span:after, .h2 span:after, h3 span:after, .h3 span:after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  width: 100%;
  opacity: 0.5;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: normal;
}

h1, .h1, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "ArchivoExpanded", sans-serif;
}

h2, .h2 {
  font-family: "Archivo", sans-serif;
}

h1, .h1, h3, .h3 {
  font-weight: 500;
}

h1, .h1 {
  font-size: 1.875em;
  line-height: 1.1em;
}

h2, .h2 {
  font-size: 1.3125em;
  line-height: 1.238095em;
  font-weight: 300;
  letter-spacing: 0.025em;
}

h3, .h3 {
  font-size: 1.375em;
  line-height: 1.090909em;
}

h4, .h4 {
  font-size: 0.6875em;
  line-height: 1.090909em;
  font-weight: 700;
}

h5, .h5 {
  font-size: 1.125em;
  line-height: 1.333em;
  font-weight: 300;
}

h6, .h6 {
  font-size: 0.9375em;
  line-height: 1.6em;
}

p, ul, ol {
  font-size: 0.875em;
  line-height: 1.714285em;
  font-weight: 300;
  letter-spacing: 0.053571em;
}
p:not(:last-child), ul:not(:last-child), ol:not(:last-child) {
  margin-bottom: 1em;
}

ul:not(.sortable-list), ol:not(.sortable-list) {
  margin-left: 2.142857em;
}
ul:not(.sortable-list) li, ol:not(.sortable-list) li {
  padding-left: 1em;
}
ul:not(.sortable-list) li:not(:last-child), ol:not(.sortable-list) li:not(:last-child) {
  padding-bottom: 0.5em;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .h1--large {
    font-size: calc(30/16 * 1em);
    line-height: calc(32/30 * 1em);
  }

  .h1--mobile, .h2--ultra-mobile {
    font-family: "ArchivoExpanded", sans-serif;
  }

  .h1--mobile {
    font-size: 1.125em;
    line-height: calc(24/18 * 1em);
    font-weight: 500;
  }

  .h2--ultra-mobile {
    font-size: calc(14/16 * 1em);
    line-height: 1em;
    letter-spacing: calc(0.22272727/16 * 1em * -1);
  }

  h1 span:after, .h1 span:after, h2 span:after, .h2 span:after, h3 span:after, .h3 span:after {
    bottom: 0px;
    height: 6px;
  }

  .p2 p, .p2 ul, .p2 ol, p.p2, ul.p2, ol.p2 {
    font-size: calc(18/16 * 1em);
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .h1--large {
    font-size: calc(60/16 * 1em);
    line-height: 1em;
    letter-spacing: -0.024241em;
  }

  .h2--ultra {
    font-family: "ArchivoExpanded", sans-serif;
    font-size: calc(30/16 * 1em);
    letter-spacing: calc( 0.47727272/30 * 1em * -1);
    font-weight: 400;
  }

  .h1--super {
    font-size: calc(44/16 * 1em);
  }

  h1 span:after, .h1 span:after, h2 span:after, .h2 span:after, h3 span:after, .h3 span:after {
    bottom: -3px;
    height: 10px;
  }

  .p2 p, .p2 ul, .p2 ol, p.p2, ul.p2, ol.p2 {
    font-size: calc(21/16 * 1em);
  }
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-family: "ArchivoExpanded";
  font-size: 0.75em;
  font-weight: 500;
  line-height: 1em;
  text-transform: uppercase;
  letter-spacing: 0.083333em;
  min-height: 2.833333em;
  padding: 0.5em 1.6666667em;
  transition: all 0.15s ease-in-out;
}
.cta:not(.cta--bordered) {
  border: 2px solid #095860;
  background-color: #095860;
  color: #bbeeee;
}
.cta:not(.cta--bordered) svg {
  display: block;
}
.cta:not(.cta--bordered) svg path {
  fill: #bbeeee;
}
.cta:not(.cta--bordered):hover {
  background-color: #fff;
  border-color: #fff;
  color: #095860;
}
.cta:not(.cta--bordered):hover svg path {
  transition: fill 0.15s ease-in-out;
  fill: #095860;
}
.cta.cta--fullwidth {
  width: 100%;
}
.cta.cta--bordered {
  background-color: transparent;
  border: 2px solid #095860;
  color: #095860;
}
.cta.cta--bordered:hover {
  background-color: #095860;
  color: #fff;
}
.cta.cta--white:not(.cta--bordered) {
  border: 2px solid #fff;
  background-color: #fff;
  color: #095860;
}
.cta.cta--white:not(.cta--bordered) svg {
  display: block;
}
.cta.cta--white:not(.cta--bordered) svg path {
  fill: #095860;
}
.cta.cta--white:not(.cta--bordered):hover {
  background-color: #bbeeee;
  border-color: #bbeeee;
}
.cta.cta--white:not(.cta--bordered):hover svg path {
  transition: fill 0.15s ease-in-out;
  fill: #095860;
}
.cta.cta--white.cta--bordered {
  border: 2px solid #fff;
  color: #fff;
}
.cta.cta--white.cta--bordered:hover {
  background-color: #fff;
  color: #095860;
}
.cta.cta--light-purple:not(.cta--bordered) {
  border: 2px solid #e8e2f2;
  background-color: #e8e2f2;
  color: #095860;
}
.cta.cta--light-purple:not(.cta--bordered) svg {
  display: block;
}
.cta.cta--light-purple:not(.cta--bordered) svg path {
  fill: #9999C6;
}
.cta.cta--light-purple:not(.cta--bordered):hover {
  background-color: #9999C6;
  border-color: #9999C6;
  color: #fff;
}
.cta.cta--light-purple:not(.cta--bordered):hover svg path {
  transition: fill 0.15s ease-in-out;
  fill: #fff;
}
.cta.cta--light-purple.cta--bordered {
  border: 2px solid #9999C6;
  color: #9999C6;
}
.cta.cta--light-purple.cta--bordered:hover {
  background-color: #9999C6;
  color: #fff;
}
.cta.cta--light-green:not(.cta--bordered) {
  border: 2px solid #dff7d5;
  background-color: #dff7d5;
  color: #095860;
}
.cta.cta--light-green:not(.cta--bordered) svg {
  display: block;
}
.cta.cta--light-green:not(.cta--bordered) svg path {
  fill: #095860;
}
.cta.cta--light-green:not(.cta--bordered):hover {
  background-color: #5D979C;
  border-color: #5D979C;
  color: #fff;
}
.cta.cta--light-green:not(.cta--bordered):hover svg path {
  transition: fill 0.15s ease-in-out;
  fill: #fff;
}
.cta.cta--light-green.cta--bordered {
  border: 2px solid #dff7d5;
  color: #5D979C;
}
.cta.cta--light-green.cta--bordered:hover {
  background-color: #dff7d5;
}
.cta.cta--light-gray:not(.cta--bordered) {
  border: 2px solid #e8eeee;
  background-color: #e8eeee;
  color: #095860;
}
.cta.cta--light-gray:not(.cta--bordered) svg {
  display: block;
}
.cta.cta--light-gray:not(.cta--bordered) svg path {
  fill: #095860;
}
.cta.cta--light-gray:not(.cta--bordered):hover {
  background-color: transparent;
  border-color: #5D979C;
}
.cta.cta--light-gray.cta--bordered {
  border: 2px solid #e8eeee;
  color: #095860;
}
.cta.cta--light-gray.cta--bordered:hover {
  background-color: #e8eeee;
}
.cta.cta--large {
  padding: 1.25em 1.6666667em;
}
.cta.cta--larger {
  font-size: calc(16/16 * 1em);
  padding: 1em 1.6em;
  height: calc(50/16 *1em);
}
.cta.cta--x-large {
  font-size: calc(16/16 * 1em);
  padding: 1em 1.6em;
  height: calc(70/16 *1em);
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .cta.cta--larger {
    min-width: calc(238/16 * 1em);
  }
  .cta.cta--x-large {
    min-width: calc(312/16 * 1em);
  }
}

.checkbox-container {
  display: block;
  position: relative;
  padding-left: 1.875em;
  cursor: pointer;
  user-select: none;
  font-size: 1em;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkbox-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.125em;
  width: 1.125em;
  background-color: #eee;
}
.checkbox-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 7px;
  height: 12px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.checkbox-container:hover input ~ .checkmark {
  background-color: #bbeeee;
}
.checkbox-container input:checked ~ .checkmark {
  background-color: #095860;
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.radio-container {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  font-size: 1em;
  min-height: 22px;
}
.radio-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-container .radio-container__center {
  position: absolute;
  top: 0;
  left: 0;
  height: 22px;
  width: 22px;
  background-color: #fff;
  border: 2px solid #095860;
  border-radius: 50%;
}
.radio-container .radio-container__center:after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  background-color: #095860;
  border-radius: 50%;
  margin: 3px;
}
.radio-container input:checked ~ .radio-container__center:after {
  display: block;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Archivo", sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #095860;
  overflow-x: hidden;
}

strong {
  font-weight: bold;
}

img {
  width: 100%;
}

svg {
  display: block;
}

summary {
  list-style: none;
}

.bg-image-wrapper, .zoom-image {
  display: block;
  position: relative;
}
.bg-image-wrapper img, .zoom-image img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zoom-image {
  overflow: hidden;
  transform: scale(1);
}
.zoom-image img {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.zoom-image:hover img {
  transform: scale(1.1);
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .section-padding {
    padding-top: 3.125em;
    padding-bottom: 3.75em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .section-padding {
    padding-top: 5.625em;
    padding-bottom: 7.5em;
  }
}

video[poster] {
  object-fit: cover;
}

.responsive-video-wrapper, .video-container {
  width: 100%;
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
.responsive-video-wrapper iframe, .responsive-video-wrapper video, .video-container iframe, .video-container video {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scroll-margin-top {
  scroll-margin-top: 7.0625em;
}
.scroll-margin-top.scroll-margin-top--text {
  scroll-margin-top: calc(7.0625em + 30px);
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .scroll-margin-top {
    scroll-margin-top: 8em;
  }
  .scroll-margin-top.scroll-margin-top--text {
    scroll-margin-top: calc(8em + 30px);
  }
}

.header__alert {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1.25em;
  text-align: center;
  min-height: 2.8125em;
  opacity: 0;
  animation: 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.15s 1 normal forwards running smoothSlideDown;
}
.header__alert.header__alert--dark {
  background-color: #04393F;
  color: #fff;
  z-index: 1;
}
.header__alert.header__alert--dark a {
  color: #fff;
}
.header__alert.header__alert--light {
  background-color: #fff;
  color: #095860;
  z-index: 0;
  animation: 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0.5s 1 normal forwards running smoothSlideDown;
}
.header__alert.header__alert--light a {
  color: #095860;
}
.header__alert p {
  font-size: 0.875em;
  line-height: 1em;
}
.header__alert a {
  text-decoration: underline;
}

.header__webinar {
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .header__webinar p a {
    border-left: 1px solid #095860;
    padding-left: calc(20/14 * 1em);
    margin-left: calc(20/14 * 1em);
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .body--basic-page, .body--full-spk-list, .body--trending {
    padding-top: 7.0625em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .body--basic-page, .body--full-spk-list, .body--trending {
    padding-top: 13.0625em;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  transition: all 0.15s ease-in-out;
}
.header .header__inner {
  opacity: 0;
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.15s 1 normal forwards running smoothSlideDown;
  transition: all 0.15s ease-in-out;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .header .header__inner {
    padding: 0.875em 0;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .header .header__inner {
    display: flex;
    align-items: center;
    height: 7.6vw;
    max-height: 10.25em;
  }
}
.header__container {
  justify-content: space-between;
  flex-direction: row;
}
.header__logo {
  display: block;
  width: 0.915em;
  height: 1em;
  transition: all 0.25s ease-in-out;
}
.header__logo svg path {
  fill: #095860;
  transition: fill 0.25s ease-in-out;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .header__logo {
    font-size: 2.5em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .header__logo {
    font-size: 3.75em;
    margin-top: calc(.5 * 1em * -1);
    margin-bottom: calc(.5 * 1em * -1);
  }
}
.header__nav {
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .header__nav {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5em 0;
    transition: all 200ms cubic-bezier(0.77, 0, 0.175, 1);
    background: #2A6970;
    transform: translate3d(100%, 0, 0);
    width: 0;
    overflow: hidden;
    display: none;
  }
  .header__nav--active {
    width: 100%;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .header__nav {
    font-size: 1em;
  }
}
.header__link--dropdown .header__dropdown-label {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.header__link--dropdown .header__dropdown {
  position: absolute;
  top: 100%;
  width: fit-content;
  display: none-;
  height: 0;
  overflow: hidden;
}
.header__link--dropdown .header__dropdown .header__dropdown-links {
  transition: margin 0.15s ease-in-out;
  margin-top: 16px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__link--dropdown .header__dropdown a {
  display: block;
  padding: calc(10/12 *1em) calc(16/12 *1em);
  text-decoration: none;
  text-transform: none;
  white-space: nowrap;
  background-color: #fff;
}
.header__link--dropdown .header__dropdown a:not(:last-child) {
  border-bottom: 1px solid #e8eeee;
}
.header__link--dropdown .header__dropdown a:hover {
  background-color: #095860;
  color: #fff;
}
.header__link--dropdown:focus-within .header__dropdown, .header__link--dropdown:hover .header__dropdown {
  height: auto;
  overflow: visible;
}
.header__link--dropdown:focus-within .header__dropdown .header__dropdown-links, .header__link--dropdown:hover .header__dropdown .header__dropdown-links {
  opacity: 1;
  transform: translateY(0);
}
.header__link {
  position: relative;
  align-items: center;
  text-decoration: none;
  transition: all 200ms ease-in-out;
  text-transform: uppercase;
  font-family: "ArchivoExpanded", sans-serif;
  font-weight: 400;
  letter-spacing: 0.083333em;
}
.header__link svg {
  margin-left: 12px;
  font-size: 0.666667em;
  width: 1em;
  height: 1em;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .header__link {
    display: flex;
    color: #fff;
    font-size: 0.875em;
  }
  .header__link svg path {
    fill: #fff;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .header__link {
    display: inline-flex;
    color: #095860;
    font-size: 0.75em;
    margin-left: 2.5em;
  }
  .header__link.header__link--dropdown {
    font-size: 0.75em;
  }
  .header__link svg path {
    fill: #095860;
  }
  .header__link:not(:last-child) {
    margin-right: 2.5em;
  }
  .header__link:after {
    background: #095860;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    transform: translateY(3px);
    width: 0;
  }
  .header__link:hover:after {
    opacity: 0.25;
    transition: 300ms ease-in-out;
    width: 100%;
  }
}
.header__link--bold {
  font-weight: 700;
}
.header__link--highlighted {
  border: 2px solid;
  padding: 0.666667em 1.666667em;
}
.header__link--highlighted:after {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .header__link--highlighted {
    border-color: #fff;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .header__link--highlighted {
    border-color: #095860;
    margin-top: -20px;
    margin-bottom: -20px;
  }
  .header__link--highlighted:hover {
    background-color: #095860;
    color: #fff;
  }
}
.header--scrolling {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}
.header--scrolling .header__webinar {
  padding: 0 1.25em;
  height: 0;
  min-height: 0;
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .header--scrolling .header__inner {
    height: calc(68/16 * 1em);
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .header--scrolling .header__logo {
    font-size: 2.5em;
  }
}
.header--scrolling .header__link--dropdown .header__dropdown-links {
  margin-top: calc(27/12 * 1em);
}
.header--scrolling .header__link--dropdown .header__dropdown a:first-child {
  border-top: 1px solid #e8eeee;
}
.open-mobile-nav .header {
  background: transparent;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}
.open-mobile-nav .header__logo svg path {
  fill: #fff;
}

.menu-icon {
  cursor: pointer;
  display: block;
  height: 1.25em;
  transform: translate3d(0, 0, 0);
  transition: transform 250ms ease-in-out;
  width: 2em;
  z-index: 4;
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .menu-icon {
    display: none;
  }
}
.menu-icon__stripe {
  background: #095860;
  display: block;
  height: 0.125em;
  left: 0;
  opacity: 1;
  position: absolute;
  transform: rotate(0deg);
  transition: all 250ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 2em;
}
.menu-icon__stripe:nth-child(1) {
  top: 0;
}
.menu-icon__stripe:nth-child(2), .menu-icon__stripe:nth-child(3) {
  top: 0.5rem;
}
.menu-icon__stripe:nth-child(4) {
  top: 1rem;
}
.menu-icon--active .menu-icon__stripe {
  background: #fff;
}
.menu-icon--active .menu-icon__stripe:nth-child(1) {
  left: 50%;
  top: 1rem;
  width: 0;
}
.menu-icon--active .menu-icon__stripe:nth-child(2) {
  transform: rotate(45deg);
}
.menu-icon--active .menu-icon__stripe:nth-child(3) {
  transform: rotate(-45deg);
}
.menu-icon--active .menu-icon__stripe:nth-child(4) {
  left: 50%;
  top: 1rem;
  width: 0;
}

.header__nav-container {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: -100%;
  z-index: 10;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 1;
  background-color: rgba(0, 0, 0, 0);
  transition: opacity 0.15s ease-in-out, background-color 0.15s ease-in-out 0.1s;
}
.header__nav-container .header__nav-container-outer {
  display: table;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100%;
  background-color: #2A6970;
  transition: left 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav-container .header__nav-container-outer .header__nav-container-inner {
  position: relative;
  display: table-cell;
  padding: 2.8125em 0 0 0;
  text-align: left;
  overflow-y: auto;
}
.header__nav-container .header__nav-container-outer .header__nav-container-inner.header__nav-container-inner--alert {
  padding-top: 9.375em;
}
.header__nav-container .header__nav-container-outer .header__nav-container-inner .header__mobile-nav {
  height: calc(100vh - 2.8125em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.125em 3.75em;
}
.header__nav-container .header__nav-container-outer .header__nav-container-inner .header__mobile-nav .header__link {
  justify-content: center;
}
.header__nav-container .header__nav-container-outer .header__nav-container-inner .header__mobile-nav .header__link:hover {
  color: #fff;
}
.header__nav-container .header__nav-container-outer .header__nav-container-inner .header__mobile-nav .header__link:not(.header__link--highlighted) {
  padding: 1em 0;
}
.header__nav-container .header__nav-container-outer .header__nav-container-inner .header__mobile-nav .header__link--highlighted {
  margin-top: 1.5em;
}
.header__nav-container.header__nav-container--active {
  background-color: rgba(0, 0, 0, 0);
  left: 0;
}
.header__nav-container.header__nav-container--active.header__nav-container--open .header__nav-container-outer {
  left: 0;
}
@media (min-width: 768px) {
  .header__nav-container {
    display: none;
  }
}

.input.other-field {
  display: none;
}
.input.other-field.active {
  display: block;
}
.input:focus {
  border-color: #095860;
}

.footer {
  background-color: #095860;
  color: #fff;
}
.footer__container {
  margin: 0 auto;
  max-width: 425px;
  text-align: center;
}
.footer__logo {
  display: inline-block;
  width: 0.915em;
  height: 1em;
}
.footer__logo svg path {
  fill: #fff;
}
.footer__copyright {
  margin-top: 1.428571em;
  padding-left: 10px;
  font-size: 0.875em;
  letter-spacing: 0.053571em;
}
.footer__copyright a {
  color: #fff;
  text-decoration: none;
}
.footer__copyright a:hover {
  color: #bbeeee;
  text-decoration: underline;
}
.footer__nav-wrapper {
  border-top: 2px solid #fff;
  display: flex;
  justify-content: space-between;
  margin-top: 4em;
}
.footer__nav {
  text-align: left;
  padding-top: 1.875em;
}
.footer__nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 0.8745em;
  padding: 0.714285em 0;
}
.footer__nav a:hover {
  color: #bbeeee;
  text-decoration: underline;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .footer {
    padding: 5em 1.25em 3.25em 1.25em;
  }
  .footer__logo {
    font-size: 2.5em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .footer {
    padding: 5.625em 1.25em 7.5em 1.25em;
  }
  .footer__logo {
    font-size: 3.75em;
  }
}

.social-links .social-link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 1em;
}
.social-links .social-link svg {
  width: 2em;
  height: 2em;
}
.social-links .social-link svg path, .social-links .social-link svg polygon {
  fill: #000;
}
.social-links .social-link:hover svg path, .social-links .social-link:hover svg polygon {
  fill: var(--color-spk-blue);
}
.social-links .social-link:first-child {
  margin-left: 0;
}
.social-links .social-link:last-child {
  margin-right: 0;
}
.social-links.social-links--white .social-link svg path, .social-links.social-links--white .social-link svg polygon {
  fill: #fff;
}
.social-links.social-links--white .social-link:hover svg path, .social-links.social-links--white .social-link:hover svg polygon {
  fill: #bbeeee;
}

.hero {
  background-color: #bbeeee;
  min-height: 55vw;
}
.hero .video-container {
  position: relative;
  padding-bottom: 129.8%;
  border-radius: 1.125em;
  overflow: hidden;
}
.hero .hero__play-button {
  position: absolute;
  bottom: 9.25%;
  left: 5%;
  display: block;
  width: 18.52%;
  z-index: 1;
  padding: 4%;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.hero .hero__play-button img {
  display: block;
  width: 100%;
}
.hero .hero__play-button:hover {
  transform: scale(1.1);
}
.hero .hero__link {
  font-size: 0.875em;
}
.hero .hero__ctas {
  margin-top: 3.75em;
}
.hero .hero__heading span:after {
  width: 0;
  background-color: #5db2b2;
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.25s 1 normal forwards running growWidth;
}
.hero .hero__heading, .hero .hero__sub-heading {
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .hero {
    padding: 7.5em 0 3.125em 0;
    text-align: center;
  }
  .hero .hero__video {
    width: 80%;
    margin: 0 auto 2.5em auto;
  }
  .hero .hero__ctas {
    justify-content: center;
    flex-direction: column;
  }
  .hero .hero__ctas *:not(:last-child) {
    margin-bottom: 2em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .hero {
    padding: 12.5em 0 6.625em 0;
  }
  .hero .hero__video {
    width: 38%;
    order: 1;
  }
  .hero .hero__content {
    order: 0;
    width: 62%;
    padding-right: 7.5em;
  }
  .hero .hero__ctas {
    width: 100%;
    align-items: center;
  }
  .hero .hero__ctas *:not(:last-child) {
    margin-right: 3.333em;
  }
}

.organizations {
  background-color: #2A6970;
  padding: 3.75em 0 3.125em 0;
  color: #fff;
  text-align: center;
}
.organizations .logo-list {
  margin-top: 0.75em;
}

.logo-list img {
  display: block;
  width: auto;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .logo-list img {
    margin: 0 0.625em;
    max-height: 3.75em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .logo-list img {
    margin: 0 1.875em;
    max-height: 5.625em;
  }
}

.platform {
  background-color: #e0cac2;
  text-align: center;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.platform .platform__heading {
  margin-bottom: 1.066667em;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.platform .platform__display {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  max-width: 930px;
}
.platform .platform__button {
  position: relative;
  display: inline-flex;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.platform .platform__button svg {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.platform .platform__button svg path {
  transition: fill 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.platform .platform__button[data-state=front] {
  pointer-events: none;
  color: #B4968B;
}
.platform .platform__button[data-state=front] svg {
  margin-right: 1em;
}
.platform .platform__button[data-state=front] svg path {
  fill: #B4968B;
}
.platform .platform__button[data-state=front]:hover {
  transform: translateX(-6px);
}
.platform .platform__button[data-state=front]:hover svg {
  transform: translateX(-10px);
}
.platform .platform__button[data-state=back] {
  color: #095860;
}
.platform .platform__button[data-state=back] svg {
  transform: scaleX(-1);
  margin-left: 1em;
}
.platform .platform__button[data-state=back] svg path {
  fill: #095860;
}
.platform .platform__button[data-state=back]:hover {
  transform: translateX(6px);
}
.platform .platform__button[data-state=back]:hover svg {
  transform: translateX(10px) scaleX(-1);
}
.platform .platform__button svg {
  font-size: 1.375em;
  width: 0.604em;
  height: 1em;
}
.platform .platform__display-center {
  width: 100%;
  margin: 0 auto;
  max-width: 500px;
}
.platform .platform__image-wrapper {
  padding-bottom: 140%;
  position: relative;
}
.platform .platform__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  perspective: 100em;
  cursor: pointer;
}
.platform .platform__image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.75s;
  transform-style: preserve-3d;
  transform: rotateY(0);
}
.platform .platform__image-front, .platform .platform__image-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}
.platform .platform__image-back {
  transform: rotateY(180deg);
}
.platform.platform--flipped {
  background-color: #095860;
}
.platform.platform--flipped .platform__heading {
  color: #e0cac2;
}
.platform.platform--flipped .platform__image-inner {
  transform: rotateY(180deg);
}
.platform.platform--flipped .platform__button:after {
  background: #e0cac2;
}
.platform.platform--flipped .platform__button[data-state=front] {
  pointer-events: all;
  color: #e0cac2;
}
.platform.platform--flipped .platform__button[data-state=front] svg path {
  fill: #e0cac2;
}
.platform.platform--flipped .platform__button[data-state=back] {
  pointer-events: none;
  color: #5D979C;
}
.platform.platform--flipped .platform__button[data-state=back] svg path {
  fill: #5D979C;
}
@media screen and (max-width: 959px) {
  .platform .platform__button svg {
    font-size: 1.875em;
  }
  .platform .platform__button .platform__button-label {
    display: none;
  }
}

.action .action__items {
  display: grid;
  gap: 3px;
  background-color: #095860;
}
.action .action__items .action__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.action .action__items .action__item .action__heading {
  max-width: 12em;
  padding: 0 20px;
  text-align: center;
}
.action .action__items .action__item svg {
  position: absolute;
  width: 1em;
  height: 1em;
}
.action .action__items .action__item svg path, .action .action__items .action__item svg polygon {
  fill: #095860;
}
.action .action__items .action__item img {
  display: block;
  width: 100%;
}
.action .action__items .action__item.action__link img, .action .action__items .action__item.action__link .action__heading {
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.action .action__items .action__item.action__link:hover {
  background-color: #C9F4F4;
}
.action .action__items .action__item.action__link:hover img, .action .action__items .action__item.action__link:hover .action__heading {
  transform: scale(1.15);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .action .action__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .action .action__items .action__item svg {
    font-size: 1.875em;
    bottom: 0.75em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .action .action__items {
    grid-template-columns: repeat(4, 1fr);
  }
  .action .action__items .action__item svg {
    font-size: 3.75em;
    bottom: 1em;
  }
}

.use-cases {
  text-align: center;
}
.use-cases .use-cases__heading {
  margin-bottom: 0.9em;
}
.use-cases .use-cases-list {
  display: grid;
}
.use-cases .use-case .use-case__icon {
  margin: 0 auto;
  width: 7.25em;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .use-cases .use-cases__sub-heading {
    margin-bottom: 2.5em;
  }
  .use-cases .use-cases-list {
    column-gap: 1.875em;
    row-gap: 1.875em;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .use-cases .use-cases__sub-heading {
    margin-bottom: 3.42em;
  }
  .use-cases .use-cases-list {
    column-gap: 6.25em;
    row-gap: 1.875em;
    grid-template-columns: repeat(4, 1fr);
  }
}

.emc {
  text-align: center;
  background-color: #fcfad2;
}
.emc .emc__heading {
  margin-bottom: 0.9em;
}
.emc .emc__slider h3, .emc .emc__slider input[type=text] {
  width: 100%;
  font-size: 3em;
  font-weight: 300;
  text-align: center;
  color: #095860;
}
.emc .emc__slider input[type=text] {
  width: 200px;
}
.emc .emc__slider input[type=text]:focus {
  outline: none;
  outline: 1px solid #d6aa745e;
}
.emc .emc__slider:not(:last-child) {
  margin-bottom: 2.5em;
}
.emc .input-range-wrapper {
  margin-top: 4px;
}
.emc .emc__slider-value-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.625em;
}
.emc .emc__slider-value-labels > div {
  position: relative;
  height: 1.25em;
}
.emc .emc__slider-value-labels > div h6 {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-50%);
  font-weight: 700;
}
.emc .emc__results__box {
  color: #fff;
  border-radius: 1.25em;
}
.emc .emc__results__logo svg {
  display: block;
  width: 0.915em;
  height: 1em;
  font-size: 60px;
  margin-bottom: 0.5em;
}
.emc .emc__results__logo svg path {
  fill: #fcfad2;
}
.emc .emc__result {
  position: relative;
}
.emc .emc__result h2 {
  font-family: "ArchivoExpanded";
  font-size: 3em;
  font-weight: 300;
  color: #fcfad2;
  letter-spacing: -1.4117647px;
}
.emc .emc__result h3 {
  line-height: 1.5em;
}
.emc .emc__result:last-child:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 2px;
  width: 24%;
  transform: translate(-50%, -50%);
  background-color: #fcfad2;
}
.emc .emc__more {
  text-align: left;
}
.emc .emc__more h3, .emc .emc__more strong {
  color: #fcfad2;
}
.emc .emc__more h3 {
  margin-bottom: 1em;
}
.emc .emc__more p {
  font-size: 1em;
  line-height: 1.75em;
  font-weight: 400;
}
.emc .emc__more p:not(:last-child) {
  margin-bottom: 1.25em;
}
.emc .emc__more p strong {
  font-family: "ArchivoExpanded";
  font-size: calc(13/16 * 1em);
  text-transform: uppercase;
}
.emc .emc__learn-more {
  display: inline-flex;
  align-items: center;
  color: #095860;
  margin-top: 1.875em;
}
.emc .emc__learn-more .back {
  display: none;
}
.emc .emc__learn-more svg {
  display: block;
  width: 1.875em;
  height: 1.875em;
  margin-right: 0.75em;
}
.emc .emc__learn-more svg path {
  fill: #095860;
}
.emc .emc__learn-more span {
  text-decoration: underline;
}
.emc .emc__learn-more:hover {
  color: #4c7e81;
}
.emc .emc__learn-more:hover svg path {
  fill: #4c7e81;
}
.emc .emc__flipper-wrapper {
  position: relative;
}
.emc .emc__flipper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  perspective: 100em;
}
.emc .emc__flipper-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.75s;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}
.emc .emc__flipper-front, .emc .emc__flipper-back {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  /* Safari */
  backface-visibility: hidden;
}
.emc .emc__flipper-front {
  background-color: #095860;
  align-items: center;
}
.emc .emc__flipper-back {
  transform: rotateY(180deg);
  background-color: #4c7e81;
}
.emc .emc__flipper__close {
  position: absolute;
}
.emc .emc__flipper__close svg {
  display: block;
  cursor: pointer;
  transition: transform 0.15s ease-in-out;
}
.emc .emc__flipper__close svg path {
  stroke: #fcfad2;
  transition: stroke 0.15s ease-in-out;
}
.emc .emc__flipper__close:hover svg {
  transform: scale(1.2);
}
.emc .emc__flipper__close:hover svg path {
  stroke: #fff;
}
.emc .emc__results--flipped .emc__flipper-inner {
  transform: rotateY(180deg);
}
.emc .emc__results--flipped .emc__learn-more .more {
  display: none;
}
.emc .emc__results--flipped .emc__learn-more .back {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .emc .emc__columns {
    margin-top: 3.125em;
    font-size: 0.75em;
  }
  .emc .emc__sliders {
    padding: 0 1.875em;
  }
  .emc .emc__results {
    margin-top: 2.5em;
  }
  .emc .emc__result:last-child {
    margin-top: 1.25em;
    padding-top: 1.25em;
  }
  .emc .emc__flipper-wrapper {
    padding-bottom: 100%;
  }
  .emc .emc__flipper__close {
    top: 1.25em;
    right: 1.25em;
  }
  .emc .emc__flipper__close svg {
    width: 1.25em;
    height: 1.25em;
  }
  .emc .emc__flipper-front, .emc .emc__flipper-back {
    padding: calc(20/12 * 1em);
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .emc .emc__columns {
    display: flex;
    margin-top: 5em;
  }
  .emc .emc__columns > * {
    width: 50%;
  }
  .emc .emc__result:last-child {
    margin-top: 2.5em;
    padding-top: 2.5em;
  }
  .emc .emc__flipper-wrapper {
    padding-bottom: 114%;
  }
  .emc .emc__flipper__close {
    top: 1.875em;
    right: 1.875em;
  }
  .emc .emc__flipper-front {
    padding: 1.875em;
  }
  .emc .emc__flipper-back {
    padding: 1.875em 2.5em;
  }
  .emc .emc__results {
    padding-left: 5em;
    text-align: left;
  }
}

.video {
  text-align: center;
  background-color: #dff7d5;
}
.video h2 span:after {
  opacity: 0.7;
  background-color: #a5d3a9;
  width: 0;
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.75s 1 normal forwards running growWidth;
}
.video .video__thumbnail {
  position: relative;
  display: block;
  margin: 2.5em auto 0 auto;
  max-width: 640px;
  border-radius: 1.25em;
  overflow: hidden;
}
.video .video__thumbnail img {
  display: block;
}
.video .video__thumbnail:hover .video__play {
  transform: translate(-50%, -50%) scale(1.1);
}
.video .video__play {
  position: absolute;
  max-width: 168px;
  width: 13.125%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact {
  text-align: center;
}
.contact .contact__heading span:after {
  opacity: 0.7;
  background-color: #e0cac2;
  width: 0;
}
.contact.animate .contact__heading span:after {
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.75s 1 normal forwards running growWidth;
}
.contact .contact__form {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin: 3.75em auto 0 auto;
}
.contact .contact__form > * {
  width: 100%;
}
.contact .contact__form-fieldset {
  margin-bottom: 2.375em;
}
.contact input, .contact textarea {
  width: 100%;
  font-size: 16px;
  color: #095860;
  outline: none;
  font-weight: 300;
}
.contact .input {
  padding: 0.5em 0;
  border-bottom: 2px solid #095860;
  font-family: "ArchivoExpanded";
}
.contact .input.other-field {
  display: none;
}
.contact .input.other-field.active {
  display: block;
}
.contact .input:focus {
  border-color: #5D979C;
}
.contact textarea {
  padding: 1.25em;
  font-family: "Archivo";
  background-color: #e8eeee;
  min-height: 11.25em;
  resize: none;
}
.contact label {
  display: block;
  text-transform: uppercase;
  margin-top: 1em;
  text-align: left;
}
.contact .contact__button-container {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 1.25em;
}
.contact .contact__loader {
  display: none;
  height: 1.875em;
  fill: #095860;
  margin-left: 1rem;
  width: 1.875em;
}
.contact .contact__loader--active {
  display: block;
}
.contact .contact__success {
  background: #5D979C;
  color: #fff;
  display: none;
  font-family: "ArchivoExpanded";
  font-weight: 300;
  font-size: 1em;
  margin-top: 2.5em;
  padding: 1em 0.625em;
}
.contact .contact__success--active {
  display: block;
}
.contact .cta {
  min-width: 16.666667em;
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .contact .contact__form {
    width: 60%;
    max-width: 520px;
  }
}

.contact-cta {
  color: #fff;
  text-align: center;
  background-color: #2A6970;
}
.contact-cta .contact-cta__heading {
  color: #EDDAD3;
  margin-bottom: 1.363636em;
}
.contact-cta .social-links {
  margin-top: 2.5em;
}
.contact-cta a {
  color: #fff;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .contact-cta {
    padding: 3.125em 0 3.75em 0;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .contact-cta {
    padding: 3.75em 0 5.625em 0;
  }
}

.how-it-works {
  position: relative;
  transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-it-works .max-width-container > * {
  position: relative;
  z-index: 1;
}
.how-it-works .how-it-works__step {
  transition: color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.how-it-works .how-it-works__image {
  opacity: 0;
}
.how-it-works .how-it-works__image img {
  display: block;
  margin-bottom: 1.875em;
}
.how-it-works .how-it-works__image .how-it-works__caption {
  opacity: 0;
}
.how-it-works .how-it-works__image p {
  color: #095860;
}
.how-it-works .video-container {
  position: relative;
  padding-bottom: 65.1354534747%;
  margin-bottom: 1.875em;
  overflow: hidden;
  border-radius: 1.25em;
}
.how-it-works[data-index="1"] .how-it-works__step[data-index="1"] {
  color: #095860;
}
.how-it-works[data-index="1"] .how-it-works__step[data-index="2"], .how-it-works[data-index="1"] .how-it-works__step[data-index="3"] {
  color: #9999C6;
}
.how-it-works[data-index="1"] .how-it-works__image[data-index="1"] {
  opacity: 1;
}
.how-it-works[data-index="1"] .how-it-works__image[data-index="1"] .how-it-works__caption {
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s 1 normal forwards running smoothSlideUp;
}
.how-it-works[data-index="2"] .how-it-works__step[data-index="2"] {
  color: #095860;
}
.how-it-works[data-index="2"] .how-it-works__step[data-index="1"], .how-it-works[data-index="2"] .how-it-works__step[data-index="3"] {
  color: #C68BA6;
}
.how-it-works[data-index="2"] .how-it-works__image[data-index="2"] {
  opacity: 1;
}
.how-it-works[data-index="2"] .how-it-works__image[data-index="2"] .how-it-works__caption {
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s 1 normal forwards running smoothSlideUp;
}
.how-it-works[data-index="3"] .how-it-works__step[data-index="3"] {
  color: #095860;
}
.how-it-works[data-index="3"] .how-it-works__step[data-index="1"], .how-it-works[data-index="3"] .how-it-works__step[data-index="2"] {
  color: #5DB2B2;
}
.how-it-works[data-index="3"] .how-it-works__image[data-index="3"] {
  opacity: 1;
}
.how-it-works[data-index="3"] .how-it-works__image[data-index="3"] .how-it-works__caption {
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s 1 normal forwards running smoothSlideUp;
}
.how-it-works .how-it-works__images {
  position: relative;
  display: flex;
  align-items: center;
}
.how-it-works .how-it-works__image[data-index="2"], .how-it-works .how-it-works__image[data-index="3"] {
  position: absolute;
  top: 0;
}
.how-it-works[data-index="1"] {
  background-color: #e8e2f2;
}
.how-it-works[data-index="2"] {
  background-color: #ffdce9;
}
.how-it-works[data-index="3"] {
  background-color: #bbeeee;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .how-it-works .max-width-container {
    padding-left: 0;
    padding-right: 0;
  }
  .how-it-works .max-width-container .section-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
  .how-it-works .how-it-works__content {
    transition: background-color 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .how-it-works .how-it-works__images {
    padding: 1.875em;
  }
  .how-it-works .how-it-works__image[data-index="2"], .how-it-works .how-it-works__image[data-index="3"] {
    top: 1.875em;
    right: 1.875em;
    left: 1.875em;
    bottom: 1.875em;
  }
  .how-it-works .how-it-works__heading {
    margin-bottom: 0.5em;
  }
  .how-it-works .how-it-works__steps {
    margin-top: 2.5em;
  }
  .how-it-works .how-it-works__step:not(:last-child) {
    margin-bottom: 1.25em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .how-it-works {
    background-color: #095860;
  }
  .how-it-works .max-width-container {
    display: flex;
    align-items: center;
  }
  .how-it-works .max-width-container > * {
    width: 50%;
  }
  .how-it-works .how-it-works__heading {
    margin-bottom: 1em;
  }
  .how-it-works .how-it-works__steps {
    margin-top: 4.75em;
  }
  .how-it-works .how-it-works__step {
    cursor: pointer;
  }
  .how-it-works .how-it-works__step:not(:last-child) {
    margin-bottom: 3.125em;
  }
  .how-it-works .how-it-works__content {
    padding-right: 5em;
  }
  .how-it-works .how-it-works__images {
    padding-left: 6.875em;
  }
}

.full-list {
  text-align: center;
}
.full-list .full-list__heading span:after {
  opacity: 0.7;
  background-color: #cccce2;
  width: 0;
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.75s 1 normal forwards running growWidth;
}
.full-list .full-list__group {
  min-height: 100vh;
}
.full-list .contact {
  background-color: #e8e2f2;
}
.full-list .contact textarea {
  background-color: #d8d3e9;
}
.full-list .contact .contact__heading span:after {
  background-color: #c0bddb;
}
.full-list .contact-cta .contact-cta__heading {
  color: #fff;
}
.full-list .contact-cta .contact-cta__heading span:after {
  opacity: 0.7;
  background-color: #517892;
  width: 0;
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.75s 1 normal forwards running growWidth;
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .full-list .full-list__heading {
    margin-top: -0.333em;
  }
}

.alph-list__loader {
  display: inline-flex;
  width: 1em;
  height: 1em;
  font-size: 70px;
  margin: 0.5em 0 -1.5em 0;
  opacity: 0;
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s 1 normal forwards running fadeIn;
  pointer-events: none;
}
.alph-list__loader.alph-list__loader--loaded {
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1 normal forwards running fadeOut;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.alph-list {
  opacity: 0;
}
.alph-list:not(:first-child) {
  margin-top: 4.375em;
}
.alph-list.alph-list--loaded {
  animation: 0.66s cubic-bezier(0.4, 0, 0.2, 1) 0.15s 1 normal forwards running smoothSlideUp;
}
.alph-list .alph-list__letter:not(:last-child) {
  margin-bottom: 2.5em;
}
.alph-list .alph-list__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25em;
}
.alph-list .alph-list__heading {
  text-transform: uppercase;
}
.alph-list .alph-list__expand {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  color: #095860;
}
.alph-list .alph-list__expand svg {
  display: block;
  margin-left: 14px;
  font-size: 32px;
  width: 1em;
  height: 0.788em;
  transition: background-color 0.15s ease-in-out;
}
.alph-list .alph-list__expand svg path, .alph-list .alph-list__expand svg polygon, .alph-list .alph-list__expand svg rect {
  fill: #095860;
  transition: fill 0.15s ease-in-out;
}
.alph-list .alph-list__expand:hover svg {
  background-color: #095860;
}
.alph-list .alph-list__expand:hover svg path, .alph-list .alph-list__expand:hover svg polygon, .alph-list .alph-list__expand:hover svg rect {
  fill: #fff;
}
.alph-list .alph-list__load-more svg {
  margin-left: 12px;
  font-size: 1em;
  width: 1em;
  height: 1em;
}
.alph-list .alph-list__load-more svg path {
  fill: #095860;
}
.alph-list .alph-list__load-more:hover {
  color: #5D979C;
}
.alph-list .alph-list__load-more:hover svg path {
  fill: #5D979C;
}
.alph-list .alph-list__item-label, .alph-list .alph-list__expand {
  font-family: "ArchivoExpanded", sans-serif;
  font-size: 0.75em;
  line-height: 1em;
}
.alph-list .alph-list__item {
  position: relative;
}
.alph-list .alph-list__item button {
  justify-content: space-between;
  width: 100%;
  color: #095860;
}
.alph-list .alph-list__item-label {
  display: flex;
  align-items: center;
  height: 5.333333em;
  border-top: 1px solid #095860;
  justify-content: space-between;
  text-align: left;
}
.alph-list .alph-list__item-label svg {
  display: none;
  width: 0.604em;
  height: 1em;
  transform: scaleX(-1);
  transition: all 0.25s ease-in-out;
  opacity: 0.25;
}
.alph-list .alph-list__item-label svg path {
  fill: #095860;
}
.alph-list .alph-list__item-info {
  display: none;
  opacity: 0;
  background-color: #e8e2f2;
  padding: 1.875em 1.25em;
}
.alph-list .cta {
  width: 16.666em;
}
.alph-list .alph-list__item[has-blurb] {
  cursor: pointer;
}
.alph-list .alph-list__item[has-blurb] .alph-list__item-label svg {
  display: block;
}
.alph-list .alph-list__item[has-blurb] .alph-list__item-text {
  position: relative;
  z-index: 0;
}
.alph-list .alph-list__item[has-blurb] .alph-list__item-text:after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -4px;
  left: 0;
  height: 6px;
  width: 0;
  background-color: #e8e2f2;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.alph-list .alph-list__item[has-blurb].alph-list__item--active .alph-list__item-text, .alph-list .alph-list__item[has-blurb]:hover .alph-list__item-text {
  position: relative;
  z-index: 0;
}
.alph-list .alph-list__item[has-blurb].alph-list__item--active .alph-list__item-text:after, .alph-list .alph-list__item[has-blurb]:hover .alph-list__item-text:after {
  opacity: 1;
  width: 100%;
}
.alph-list .alph-list__item[has-blurb].alph-list__item--active .alph-list__item-label svg, .alph-list .alph-list__item[has-blurb]:hover .alph-list__item-label svg {
  opacity: 1;
}
.alph-list .alph-list__item[has-blurb].alph-list__item--active .alph-list__item-info, .alph-list .alph-list__item[has-blurb]:hover .alph-list__item-info {
  display: block;
  animation: 0.33s cubic-bezier(0.4, 0, 0.2, 1) 1 normal forwards running smoothSlideUp;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .alph-list .alph-list__item-info {
    margin-bottom: 1em;
  }
  .alph-list .alph-list__item-heading {
    margin-bottom: 1em;
  }
  .alph-list .cta {
    margin-top: 2em;
  }
  .alph-list .alph-list__item[has-blurb] .alph-list__item-label svg {
    transform: scaleX(-1) rotate(-90deg);
    margin-right: 4px;
  }
  .alph-list .alph-list__item[has-blurb].alph-list__item--active .alph-list__item-label svg, .alph-list .alph-list__item[has-blurb]:hover .alph-list__item-label svg {
    transform: scaleX(-1) rotate(90deg);
  }
}
@media screen and (min-width: 768px) and (max-width: 1700px) {
  .alph-list .alph-list__item:not([data-index="3"]) .alph-list__item-info {
    left: calc(100% + .5em);
  }
  .alph-list .alph-list__item:not([data-index="3"]) .alph-list__item-info:before {
    right: 100%;
    border-right: 0.9375em solid #e8e2f2;
  }
  .alph-list .alph-list__item:not([data-index="3"]) .alph-list__item-info:after {
    right: 100%;
  }
  .alph-list .alph-list__item[data-index="3"] .alph-list__item-info {
    right: calc(100% + .5em);
    left: auto;
  }
  .alph-list .alph-list__item[data-index="3"] .alph-list__item-info:before {
    left: 100%;
    border-left: 0.9375em solid #e8e2f2;
  }
  .alph-list .alph-list__item[data-index="3"] .alph-list__item-info:after {
    left: 100%;
  }
}
@media screen and (min-width: 1701px) {
  .alph-list .alph-list__item .alph-list__item-info {
    left: calc(100% + .5em);
  }
  .alph-list .alph-list__item .alph-list__item-info:before {
    right: 100%;
    border-right: 0.9375em solid #e8e2f2;
  }
  .alph-list .alph-list__item .alph-list__item-info:after {
    right: 100%;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .alph-list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5em;
    margin-right: -0.5em;
  }
  .alph-list .alph-list__item-info {
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 1;
    top: -2.5em;
    width: calc(100% - 1em);
  }
  .alph-list .alph-list__item-info:before {
    position: absolute;
    top: 3.625em;
    content: "";
    width: 0;
    height: 0;
    border-top: 0.9375em solid transparent;
    border-bottom: 0.9375em solid transparent;
  }
  .alph-list .alph-list__item-info:after {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    width: 1em;
  }
  .alph-list .alph-list__item-heading {
    margin-bottom: 2em;
  }
  .alph-list .cta {
    margin-top: 3.83333em;
  }
  .alph-list .alph-list__item-label svg {
    margin-right: 0;
  }
  .alph-list .alph-list__item.alph-list__item--active .alph-list__item-info {
    display: block;
    animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1 normal forwards running smoothSlideUp;
  }
  .alph-list .alph-list__item[has-blurb].alph-list__item--active .alph-list__item-label svg, .alph-list .alph-list__item[has-blurb]:hover .alph-list__item-label svg {
    margin-right: 1em;
  }
  .alph-list .alph-list__letter {
    padding: 0 0.5em;
    width: 33.333%;
  }
  .alph-list .alph-list__letter .alph-list__items {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.5em;
    margin-right: -0.5em;
  }
  .alph-list .alph-list__letter .alph-list__items .alph-list__item {
    padding: 0 0.5em;
  }
  .alph-list .alph-list__letter:not(.alph-list__letter--fullwidth) .alph-list__items .alph-list__item {
    width: 100%;
  }
  .alph-list .alph-list__letter.alph-list__letter--fullwidth {
    width: 100%;
  }
  .alph-list .alph-list__letter.alph-list__letter--fullwidth .alph-list__items .alph-list__item {
    width: 33.333%;
  }
  .alph-list .alph-list__letter.alph-list__letter--fullwidth .alph-list__items .alph-list__item.alph-list__item--load-more {
    width: 100%;
  }
  .alph-list .alph-list__letter.alph-list__letter--fullwidth .alph-list__items .alph-list__item.alph-list__item--load-more button {
    margin: 0 auto;
    width: calc( 33.333% - 1em );
  }
}

.cta-block {
  background-color: #095860;
}
.cta-block .cta-block__heading {
  color: #fff;
  font-family: "ArchivoExpanded", sans-serif;
  font-weight: 500;
}
.cta-block .cta-block__heading span:after {
  opacity: 0.7;
  background-color: #517892;
  width: 0;
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.75s 1 normal forwards running growWidth;
}
.cta-block .cta-block__ctas {
  margin-top: 3em;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .cta-block {
    padding-top: 3.125em;
    padding-bottom: 3.75em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .cta-block {
    padding-top: 3.75em;
    padding-bottom: 5em;
  }
}

.overlay {
  align-items: center;
  background: rgba(4, 57, 63, 0.9);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  animation: 0.25s cubic-bezier(0.4, 0, 0.2, 1) 1 normal forwards running fadeIn;
}
.overlay__container {
  position: relative;
  max-height: calc(100vh - 110px);
  overflow: auto;
  opacity: 0;
  animation: 0.15s cubic-bezier(0.4, 0, 0.2, 1) 0.125s 1 normal forwards running zoomIn;
  box-shadow: 0 0 5em rgba(0, 0, 0, 0.65);
}
.overlay__container .overlay__close line {
  stroke: #000;
}
.overlay__close {
  cursor: pointer;
  height: 0.875rem;
  right: 1.25rem;
  position: absolute;
  top: 1.25rem;
  width: 0.875rem;
}
.overlay__close line {
  stroke: #fff;
  stroke-linecap: round;
  stroke-width: 8px;
}
@media screen and (min-width: 60rem) {
  .overlay__close:hover line {
    stroke: #da5579;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  100% {
    opacity: 1;
    transform: scale();
  }
}
.strategy-session {
  align-items: center;
  background: #04393F;
  bottom: 0;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  right: 0;
  top: 0;
  z-index: 100;
}
.strategy-session--active {
  opacity: 1;
  visibility: visible;
}
.strategy-session--active .strategy-session__inner {
  transform: translateY(0);
}
.strategy-session__container {
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 1.25em;
}
.strategy-session__bottom-right {
  pointer-events: none;
  background-color: transparent;
}
.strategy-session__bottom-right .strategy-session__container {
  padding: 20px 30px;
  justify-content: flex-end;
  align-items: flex-end;
  max-width: 100vw;
}
.strategy-session__bottom-right .strategy-session__container .strategy-session__inner {
  pointer-events: auto;
  padding: 2em;
  max-width: 320px;
}
.strategy-session__bottom-right .strategy-session__container .strategy-session__inner .strategy-session__heading {
  margin-bottom: 0.25em;
}
.strategy-session__bottom-right .strategy-session__container .strategy-session__inner .strategy-session__close {
  right: 1em;
  top: 1em;
}
.strategy-session__inner {
  background: #fff;
  border: 1px solid #f4f4f4;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  padding: 2.5em;
  position: relative;
  text-align: center;
  width: 35%;
  transform: translateY(calc(100% + 1.5em));
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}
.strategy-session__inner.strategy-session__inner--success .strategy-session__heading, .strategy-session__inner.strategy-session__inner--success .strategy-session__subheading, .strategy-session__inner.strategy-session__inner--success input, .strategy-session__inner.strategy-session__inner--success .strategy-session__button-container, .strategy-session__inner.strategy-session__inner--success .strategy-session__close {
  display: none;
}
.strategy-session__heading {
  margin-bottom: 0.75em;
}
.strategy-session__subheading {
  color: #333333;
  margin-bottom: 1em;
}
.strategy-session__subheading--bold {
  color: #5b9bce;
  font-weight: 700;
}
.strategy-session form .input {
  width: 100%;
  font-size: 16px;
  border: 1px solid #d0d0d0;
  margin-bottom: 0.5em;
  padding: 0.5em 1em;
}
.strategy-session form select {
  padding-right: 24px;
  background-image: url("../images/select-triangle.png");
  background-size: 10px;
  background-position: calc(100% - 8px) center;
}
.strategy-session form select option {
  padding: 0;
}
.strategy-session form select:invalid {
  color: #767676;
}
.strategy-session__button-container {
  align-items: center;
  display: flex;
  justify-content: center;
}
.strategy-session__button {
  margin-top: 1.25em;
}
.strategy-session__loader {
  display: none;
  height: 2.5rem;
  fill: #095860;
  margin-left: 12rem;
  position: absolute;
  width: 2.5rem;
}
.strategy-session__loader--active {
  display: block;
}
.strategy-session__form-fields--inactive {
  display: none;
}
.strategy-session__success {
  color: #2A6970;
  display: none;
}
.strategy-session__success--active {
  display: block;
}
.strategy-session__close {
  cursor: pointer;
  height: 0.875rem;
  right: 1.25rem;
  position: absolute;
  top: 1.25rem;
  width: 0.875rem;
}
.strategy-session__close line {
  stroke: #095860;
  stroke-linecap: round;
  stroke-width: 8px;
}
@media screen and (min-width: 60rem) {
  .strategy-session__close:hover line {
    stroke: #da5579;
  }
}
@media screen and (max-width: 768px) and (orientation: portrait) {
  .strategy-session__inner {
    width: 100%;
  }
}
.strategy-session.enterprise-demo .input {
  padding: 0.5em;
  margin-bottom: 0.25rem;
}

.body--top10earnedmediatips {
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f7f7f7 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f7f7f7 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#f7f7f7",GradientType=0 );
  min-height: 100vh;
}

.whitepaper-landing {
  display: flex;
  flex-wrap: wrap;
}
.whitepaper-landing__form-column {
  position: relative;
  z-index: 1;
  width: 35%;
}
.whitepaper-landing__form-column form {
  font-size: 1rem;
  background-color: #ebebeb;
  border-radius: 15px 15px 5px 5px;
}
.whitepaper-landing__form-column form .whitepaper-landing__form-success {
  display: none;
}
.whitepaper-landing__form-column form.success .whitepaper-landing__form-fields {
  display: none;
}
.whitepaper-landing__form-column form.success .whitepaper-landing__form-success {
  display: block;
}
.whitepaper-landing__content-column {
  position: relative;
  width: 65%;
  padding-left: 50px;
}
.whitepaper-landing__content-column-bg {
  position: absolute;
  z-index: 0;
  right: 0;
  width: 50%;
}
.whitepaper-landing .whitepaper-landing__form-messages {
  display: none;
  text-align: center;
  padding-bottom: 1em;
  font-size: 0.875em;
  font-weight: 700;
}
.whitepaper-landing .whitepaper-landing__form-messages--warning, .whitepaper-landing .whitepaper-landing__form-messages--success {
  display: block;
}
.whitepaper-landing .whitepaper-landing__form-messages--warning {
  color: #cc0000;
}
.whitepaper-landing .whitepaper-landing__form-messages--success {
  color: #61b962;
}
.whitepaper-landing__form-heading {
  padding: 0.708em 0.5em 0.6666em 0.5em;
  background: #095860;
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#439dd6", endColorstr="#6ac2fb",GradientType=1 );
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1em;
}
.whitepaper-landing__form-padding {
  padding: 20px 30px 30px 30px;
}
.whitepaper-landing__form-success {
  text-align: center;
}
.whitepaper-landing__form-success .whitepaper-landing__form-success-headline {
  font-size: 2.4em;
  line-height: 1em;
  color: #095860;
  margin: 0 0 0.25em 0;
}
.whitepaper-landing__form-success .whitepaper-landing__form-success-sub-headline {
  font-size: 1.4em;
  line-height: 1em;
  margin: 0 0 0.25em 0;
  color: #095860;
  text-transform: uppercase;
}
.whitepaper-landing__form-success p {
  font-size: 0.9em;
  line-height: 1.25em;
}
.whitepaper-landing__form-success p a {
  color: #095860;
  text-decoration: none;
}
.whitepaper-landing__form-success p a:hover {
  text-decoration: underline;
}
.whitepaper-landing__form-success p.learn-more {
  font-size: 1.125em;
}
.whitepaper-landing__form-input-wrap {
  margin-bottom: 8px;
}
.whitepaper-landing__form-input-wrap input, .whitepaper-landing__form-input-wrap select {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 0.75em 20px;
  font-size: 1em;
  line-height: 1em;
  color: #000000;
}
.whitepaper-landing__form-input-wrap select {
  background-image: url("../images/select-triangle.png");
  background-size: 10px;
  background-position: 96% center;
}
.whitepaper-landing__form-input-wrap select option {
  padding: 0;
}
.whitepaper-landing__form-input-wrap .whitepaper-landing__form-error {
  font-size: 0.875em;
  line-height: 1em;
  color: #cc0000;
  padding: 0.25em 0 0 0;
  display: none;
}
.whitepaper-landing__form-input-wrap--active .whitepaper-landing__form-error {
  display: block;
}
.whitepaper-landing__form-submit {
  margin: 20px 0;
  width: 100%;
}
.whitepaper-landing__form-legal {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.whitepaper-landing__form-legal p {
  font-size: 0.75em;
  line-height: 1.166em;
}
.whitepaper-landing__form-legal p a {
  color: #095860;
}
.whitepaper-landing .whitepaper-landing-content {
  font-size: 1rem;
  padding: 1em 0 0 0;
}
.whitepaper-landing .whitepaper-landing-content__subheading {
  margin: 0 0 1em 0;
  font-weight: 300;
  font-size: 1.875em;
  padding-right: 45%;
}
.whitepaper-landing .whitepaper-landing-content__heading {
  padding-right: 45%;
  margin: 0 0 0.5em 0;
  font-size: 3.125em;
}
.whitepaper-landing .whitepaper-landing-content__heading:not(:first-child) {
  margin-top: 0;
}
.whitepaper-landing .whitepaper-landing-content__copy {
  padding-right: 50%;
}
.whitepaper-landing .whitepaper-landing-content__copy p {
  margin: 0 0 1em 0;
}
@media screen and (max-width: 767px) {
  .whitepaper-landing__form-column, .whitepaper-landing__content-column {
    width: 100%;
  }
  .whitepaper-landing__form-column {
    order: 1;
    margin-bottom: 20px;
  }
  .whitepaper-landing__content-column {
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .whitepaper-landing__form-column form {
    font-size: 3.2vw;
  }
  .whitepaper-landing__content-column-bg {
    top: auto;
    bottom: 1.25em;
    right: 0%;
    width: 50%;
    transform: translateX(10%);
  }
  .whitepaper-landing .whitepaper-landing-content {
    font-size: 3.2vw;
    padding-bottom: 1em;
  }
  .whitepaper-landing .whitepaper-landing-content__subheading, .whitepaper-landing .whitepaper-landing-content__heading {
    padding-right: 0;
  }
  .whitepaper-landing .whitepaper-landing-content__copy {
    padding-right: 45%;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .whitepaper-landing__form-column form {
    font-size: 2.2vw;
  }
  .whitepaper-landing__content-column-bg {
    top: 0;
    bottom: auto;
    right: -12%;
    width: 55%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1170px) {
  .whitepaper-landing__form-column form {
    font-size: 1.4vw;
  }
  .whitepaper-landing .whitepaper-landing-content {
    font-size: 1.4vw;
  }
}
@media screen and (min-width: 768px) {
  .whitepaper-landing__content-column-bg {
    top: 60%;
    transform: translate(10%, -50%);
    -moz-transform: translate(10%, -50%);
    -webkit-transform: translate(10%, -50%);
  }
}

.homepage-popup {
  justify-content: center;
  align-items: center;
  background: rgba(4, 57, 63, 0.8);
  bottom: 0;
  left: 0;
  opacity: 0;
  position: fixed;
  visibility: hidden;
  right: 0;
  top: 0;
  z-index: 10;
  overflow-y: auto;
}
.homepage-popup--active {
  opacity: 1;
  visibility: visible;
}
.homepage-popup__container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 20px;
}
.homepage-popup__close {
  cursor: pointer;
  height: 1rem;
  right: 0.75em;
  position: absolute;
  top: 0.75em;
  width: 1rem;
}
.homepage-popup__close line {
  stroke: #095860;
  stroke-linecap: round;
  stroke-width: 8px;
}
@media screen and (min-width: 60rem) {
  .homepage-popup__close:hover line {
    stroke: #da5579;
  }
}
.homepage-popup__whitepaper {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  max-width: 1000px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  background-image: url("../images/whitepaper/spk-whitepaper-popup-bg.jpg");
  background-position: bottom right;
  background-size: 49.1%;
  padding: 30px 0 0 4%;
}
@media screen and (max-width: 768px) {
  .homepage-popup__whitepaper {
    padding: 20px 4% 0 4%;
    background-image: none;
  }
}
.homepage-popup__whitepaper-free {
  margin: 0 0 0.25em 0;
  color: #095860;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .homepage-popup__whitepaper-free {
    margin: 0 0 0.25em 0;
    font-size: 1.25em;
  }
}
.homepage-popup__whitepaper-subheading {
  margin: 0 0 0.5em 0;
}
.homepage-popup__whitepaper-heading {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .homepage-popup__whitepaper-heading {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .homepage-popup__whitepaper-heading {
    font-size: 2.5em;
    width: 70%;
    max-width: 600px;
  }
}
.homepage-popup .rounded-form--whitepaper {
  font-size: 0.888rem;
}
@media screen and (min-width: 768px) and (orientation: landscape) {
  .homepage-popup .rounded-form--whitepaper {
    max-width: 380px;
  }
}
.homepage-popup .rounded-form--whitepaper .rounded-form__form-legal {
  width: 70%;
}

.rounded-form {
  position: relative;
  background-color: #ebebeb;
}
.rounded-form__form-success {
  display: none;
}
.rounded-form--success .rounded-form__form-fields {
  opacity: 0;
}
.rounded-form--success .rounded-form__form-success {
  display: block;
  position: absolute;
  top: 1.8em;
  left: 2em;
  right: 2em;
}
.rounded-form__form-messages {
  display: none;
  text-align: center;
  padding-bottom: 1em;
  font-size: 0.875em;
  font-weight: 700;
}
.rounded-form__form-messages--warning, .rounded-form__form-messages--success {
  display: block;
}
.rounded-form__form-messages--warning {
  color: #cc0000;
}
.rounded-form__form-messages--success {
  color: #61b962;
}
.rounded-form__form-heading {
  padding: 0.708em 0.5em 0.6666em 0.5em;
  background: #439dd6;
  background: -moz-linear-gradient(left, #439dd6 0%, #6ac2fb 100%);
  background: -webkit-linear-gradient(left, #439dd6 0%, #6ac2fb 100%);
  background: linear-gradient(to right, #439dd6 0%, #6ac2fb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#439dd6", endColorstr="#6ac2fb",GradientType=1 );
  border-radius: 10px 10px 0 0;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.5em;
  line-height: 1em;
}
.rounded-form__form-heading:empty {
  display: none;
}
.rounded-form__form-padding {
  padding: 1.8em 2em;
}
.rounded-form__form-success {
  text-align: center;
}
.rounded-form__form-success .rounded-form__form-success-headline {
  font-size: 2em;
  line-height: 1em;
  color: #095860;
  margin: 0 0 0.25em 0;
}
.rounded-form__form-success .rounded-form__form-success-sub-headline {
  font-size: 1.4em;
  line-height: 1em;
  margin: 0 0 0.25em 0;
  color: #e65377;
  text-transform: uppercase;
}
.rounded-form__form-success p {
  font-size: 0.9em;
  line-height: 1.25em;
}
.rounded-form__form-success p a {
  color: #095860;
  text-decoration: none;
  text-decoration: underline;
}
.rounded-form__form-success p a:hover {
  color: #0d838f;
}
.rounded-form__form-success p.learn-more {
  font-size: 1.125em;
}
.rounded-form__form-input-wrap {
  margin-bottom: 8px;
}
.rounded-form__form-input-wrap input, .rounded-form__form-input-wrap select {
  display: block;
  width: 100%;
  background-color: #fff;
  border: 1px solid #dddddd;
  border-radius: 5px;
  padding: 0.6666em 20px;
  font-size: 1.125em;
  line-height: 1em;
  color: #000000;
}
.rounded-form__form-input-wrap select {
  padding: 0.5em 20px;
  background-image: url("../images/select-triangle.png");
  background-size: 10px;
  background-position: 96% center;
}
.rounded-form__form-input-wrap select option {
  padding: 0;
}
.rounded-form__form-input-wrap .rounded-form__form-error {
  font-size: 0.875em;
  line-height: 1em;
  color: #cc0000;
  padding: 0.25em 0 0 0;
  display: none;
}
.rounded-form__form-input-wrap--active .rounded-form__form-error {
  display: block;
}
.rounded-form__form-submit {
  display: block;
  margin: 20px 0;
  width: 100%;
}
.rounded-form__form-legal {
  text-align: center;
  width: 80%;
  margin: 0 auto;
}
.rounded-form__form-legal p {
  font-size: 0.75em;
  line-height: 1.166em;
}
.rounded-form__form-legal p a {
  color: #095860;
}

.body--nonprofits .use-cases, .body--ntc .use-cases {
  background-color: #dff7d5;
}

.page-content {
  min-height: 60vh;
  padding-bottom: 5em;
}
.page-content .page-title {
  margin-bottom: 1em;
}
.page-content h1, .page-content .h1, .page-content h2, .page-content .h2, .page-content h3, .page-content .h3, .page-content h4, .page-content .h4, .page-content h5, .page-content .h5, .page-content h6, .page-content .h6 {
  font-weight: 500;
  margin-bottom: 0.5em;
}
.page-content h1:not(:first-child), .page-content .h1:not(:first-child), .page-content h2:not(:first-child), .page-content .h2:not(:first-child), .page-content h3:not(:first-child), .page-content .h3:not(:first-child), .page-content h4:not(:first-child), .page-content .h4:not(:first-child), .page-content h5:not(:first-child), .page-content .h5:not(:first-child), .page-content h6:not(:first-child), .page-content .h6:not(:first-child) {
  margin-top: 1em;
}
.page-content h3, .page-content .h3 {
  font-size: 1em;
  line-height: 1.090909em;
}

.faq-video-container {
  margin-top: 1em;
  max-width: 800px;
}

/* RESPONSIVE HTML5 VIDEO
===============================================*/
.responsive-video-wrapper {
  position: relative;
  padding-bottom: 52.55%;
  background-color: #000;
}
.responsive-video-wrapper .video__play-button {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
  width: 20%;
  cursor: pointer;
}
.responsive-video-wrapper .video__play-button svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.15s ease-in-out;
}
.responsive-video-wrapper .video__play-button .play {
  display: none;
}
.responsive-video-wrapper .video__play-button .pause {
  display: inline-block;
}
.responsive-video-wrapper .video__play-button:hover {
  opacity: 1;
}
.responsive-video-wrapper .video__play-button:hover svg {
  transform: scale(1.05);
  -moz-transform: scale(1.05);
  -webkit-transform: scale(1.05);
}
.responsive-video-wrapper .video__play-button:active svg {
  transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
}
.responsive-video-wrapper video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.responsive-video-wrapper.active .video__play-button {
  opacity: 0.75;
}
.responsive-video-wrapper.active .video__play-button .play {
  display: inline-block;
}
.responsive-video-wrapper.active .video__play-button .pause {
  display: none;
}
.responsive-video-wrapper.active .video__play-button:hover {
  opacity: 1;
}

/* TAB SECTIONS
===============================================*/
.tabbed-content .tabbed-content-sections .tab-section {
  display: none;
}
.tabbed-content .tabbed-content-sections .tab-section.active {
  display: block;
}

/* FAQS STYLES
===============================================*/
#faq-content .tabbed-content-nav {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 1.25em;
}
#faq-content .tabbed-content-nav .page-title, #faq-content .tabbed-content-nav .tab-link {
  display: inline-block;
  margin: 0;
}
#faq-content .tabbed-content-nav .page-title:not(:last-child), #faq-content .tabbed-content-nav .tab-link:not(:last-child) {
  padding-right: 1em;
}
#faq-content .tabbed-content-nav .tab-link {
  font-family: "ArchivoExpanded", sans-serif;
  color: #b2b2b2;
  text-decoration: none;
  opacity: 1;
  transition: all 0.15s ease-in-out;
}
#faq-content .tabbed-content-nav .tab-link:not(.active):hover {
  color: #095860;
  opacity: 0.5;
}
#faq-content .tabbed-content-nav .tab-link.active {
  color: #095860;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  #faq-content .tabbed-content-nav {
    flex-wrap: wrap;
  }
  #faq-content .tabbed-content-nav .page-title {
    margin-bottom: 0.5em;
    width: 100%;
  }
}
#faq-content .tab-section .question-wrapper {
  border-bottom: 1px solid #e5e5e5;
  padding: 1em 0;
}
#faq-content .tab-section .question-wrapper summary {
  display: flex;
  justify-content: space-between;
  position: relative;
}
#faq-content .tab-section .question-wrapper .title, #faq-content .tab-section .question-wrapper .answer {
  padding-right: 3em;
}
#faq-content .tab-section .question-wrapper .title {
  margin: 0;
  cursor: pointer;
  font-size: 0.875em;
  line-height: 1.4em;
}
#faq-content .tab-section .question-wrapper .expand-icon {
  display: block;
  cursor: pointer;
}
#faq-content .tab-section .question-wrapper .expand-icon svg {
  display: block;
  font-size: 1.125em;
  width: 1em;
  height: 1em;
  transition: transform 0.2s linear;
}
#faq-content .tab-section .question-wrapper .expand-icon svg path {
  fill: #095860;
}
#faq-content .tab-section .question-wrapper[open] .expand-icon svg {
  transform: rotate(180deg);
}
#faq-content .tab-section .question-wrapper[open] .title {
  margin-bottom: 1em;
}

.faq details summary:after, .faqs__category-links .faqs__category-links-header:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve"><path fill="%23095860" d="M928.6,393.4H607.1V71.9c0-39.4-32-71.4-71.4-71.4h-71.4c-39.4,0-71.4,32-71.4,71.4v321.4H71.4C32,393.4,0,425.3,0,464.8v71.4c0,39.4,32,71.4,71.4,71.4h321.4v321.4c0,39.4,32,71.4,71.4,71.4h71.4c39.4,0,71.4-32,71.4-71.4V607.6h321.4c39.4,0,71.4-32,71.4-71.4v-71.4C1000,425.3,968,393.4,928.6,393.4z"/></svg>') no-repeat 50% 50%;
  width: 12px;
  height: 12px;
}

.faq details[open] summary:after, .faqs__category-links.active .faqs__category-links-header:after {
  transform: translateY(-50%);
  background: url('data:image/svg+xml;utf8,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 1000 1000" style="enable-background:new 0 0 1000 1000;" xml:space="preserve"><path fill="%23095860" d="M928.6,393.4H71.4C32,393.4,0,425.3,0,464.8v71.4c0,39.4,32,71.4,71.4,71.4h857.1c39.4,0,71.4-32,71.4-71.4v-71.4C1000,425.3,968,393.4,928.6,393.4z"/></svg>') no-repeat 50% 50%;
}

.faq .page-title {
  text-align: center;
}
.faq .faq__columns {
  margin-top: 3.125em;
}
.faq .faqs__group h3 {
  margin-bottom: 1em;
}
.faq .faqs__category-link {
  text-decoration: none;
}
.faq details summary {
  position: relative;
  cursor: pointer;
}
.faq details summary::-webkit-details-marker {
  display: none;
}
.faq .faqs__items details {
  border-top: 1px solid #095860;
}
.faq .faqs__items details summary {
  padding: 1.5em 0;
}
.faq .faqs__items details summary:hover h2 {
  color: #5D979C;
}
.faq .faqs__items details:last-child {
  border-bottom: 1px solid #095860;
}
.faq .faqs__items .expand-icon svg {
  width: 20px;
  height: 20px;
}
.faq .faqs__answer {
  padding: 0 0 1.5em;
}
.faq .faqs__item {
  position: relative;
}
.faq .faqs__title {
  padding-right: 40px;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .faq .faqs__category-links {
    border-top: 1px solid #095860;
    border-bottom: 1px solid #095860;
    margin-bottom: 2.5em;
  }
  .faq .faqs__category-links.active .faqs__category-links-items {
    display: block;
  }
  .faq .faqs__category-links-header {
    position: relative;
    padding: 1.125em 0;
    cursor: pointer;
    font-size: 1em;
  }
  .faq .faqs__category-links-items {
    display: none;
  }
  .faq .faqs__category-link {
    display: block;
    padding-bottom: 1em;
  }
  .faq .faqs__group:not(:last-child) {
    margin-bottom: 3.125em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .faq .page-title {
    margin-top: -0.333em;
  }
  .faq .faq__columns {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr 4fr;
    grid-template-rows: auto auto;
    gap: 0px 3.125em;
    grid-template-areas: "sidebar content";
  }
  .faq .faqs__category-links {
    grid-area: sidebar;
    position: sticky;
    top: 13.0625em;
    align-self: flex-start;
  }
  .faq .faqs__category-links-header {
    display: none;
  }
  .faq .faqs__category-links-items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .faq .faqs__category-link {
    display: inline-block;
    position: relative;
    font-size: 1.375em;
    line-height: 1.090909em;
  }
  .faq .faqs__category-link:after {
    background: #095860;
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    transform: translateY(3px);
    width: 0;
    transition: 300ms ease-in-out;
  }
  .faq .faqs__category-link:hover:after, .faq .faqs__category-link.active:after {
    opacity: 0.25;
    width: 100%;
  }
  .faq .faqs__category-link:not(:last-child) {
    margin-bottom: 1em;
  }
  .faq .faqs__groups {
    grid-area: content;
  }
  .faq .faqs__group:not(:last-child) {
    margin-bottom: 5em;
  }
}

/* TRENDING
===============================================*/
.trending-spks {
  padding-bottom: 5em;
}
.trending-spks .trending-spk {
  text-align: left;
}
.trending-spks .trending-spk a {
  text-decoration: none;
}
.trending-spks .trending-spk .trending-spk__image {
  margin-bottom: 0.625em;
  padding-bottom: 18.3016105417%;
  border: 1px solid #e7e7e7;
}
.trending-spks .trending-spk .trending-spk__title {
  font-size: 1em;
  margin-bottom: 0.25em;
}
.trending-spks .trending-spk .trending-spk__info {
  font-size: 0.75em;
  line-height: 1.25em;
  color: #808080;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .trending-spks .trending-spk-list {
    margin: 2.5em 0;
  }
  .trending-spks .trending-spk:not(:last-child) {
    margin-bottom: 1.875em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .trending-spks .trending-spk-list {
    margin: 5em 0;
    display: grid;
    column-gap: 1.25em;
    row-gap: 2.5em;
    grid-template-columns: repeat(1, 1fr);
  }
}

/* RANGE INPUT
===============================================*/
input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  /* creating a custom design */
  width: 100%;
  cursor: pointer;
  outline: none;
  margin: 3px 0;
  font-size: 1em;
}
input[type=range]::-moz-range-thumb, input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 1.125em;
  width: 1.125em;
  background-color: #095860;
  border-radius: 50%;
  border: 4px solid #fcfad2;
  outline: 1px solid rgba(9, 88, 96, 0.25);
  box-shadow: 0px 7px 4px -2px #a78a67;
}

input[type=range], input[type=range]::-webkit-slider-runnable-track, input[type=range]::-moz-range-track {
  height: 1.875em;
  background: #d6aa74;
}

.input-range-wrapper {
  position: relative;
}
.input-range-wrapper input[type=range] {
  position: relative;
  width: calc(100% + 24px);
  margin-left: -12px;
  margin-right: -12px;
  z-index: 1;
}
.input-range-wrapper input[type=range], .input-range-wrapper input[type=range]::-webkit-slider-runnable-track, .input-range-wrapper input[type=range]::-moz-range-track {
  background-color: transparent;
}
.input-range-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #d6aa74;
  transform: translateY(-50%);
  z-index: 0;
}

/* PAID LANDING
===============================================*/
body.body--paid-landing .strategy-session__bottom-right {
  display: none;
}
body.body--paid-landing header {
  background-color: #fff;
}
body.body--paid-landing header .header__alert, body.body--paid-landing header .menu-icon, body.body--paid-landing header .header__nav {
  display: none;
}
body.body--paid-landing header .header__logo {
  font-size: 2.5em;
}
body.body--paid-landing header .header__inner {
  padding: 1em 0;
}
body.body--paid-landing header .cta {
  opacity: 0;
  color: #fff;
}
body.body--paid-landing header .cta:hover {
  background-color: #bbeeee;
}
body.body--paid-landing header.header--past-hero .cta {
  opacity: 1;
}

.paid-landing .organizations {
  background-color: #095860;
}
.paid-landing .organizations__heading {
  color: #dff7d5;
  margin-bottom: 20px;
}
.paid-landing video {
  width: 100%;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .paid-landing .faq {
    padding: calc(90/16 * 1em) 0 calc(140/16 * 1em) 0;
  }
  .paid-landing .faq .faqs__items {
    margin: calc(60/16 * 1em) 0 calc(50/16 * 1em) 0;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .paid-landing .faq {
    padding: calc(130/16 * 1em) 0 calc(200/16 * 1em) 0;
  }
  .paid-landing .faq .faqs__items {
    margin: calc(90/16 * 1em) 0;
  }
}

.landing-hero {
  min-height: 55vw;
  background-color: #dff7d5;
}
.landing-hero .landing-hero__sub-heading span:after {
  width: 0;
  background-color: #5db2b2;
  animation: 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1.25s 1 normal forwards running growWidth;
  background-color: rgba(106, 173, 125, 0.6);
}
.landing-hero .landing-hero__image {
  overflow: hidden;
}
.landing-hero .landing-hero__image video, .landing-hero .landing-hero__image p {
  position: relative;
}
.landing-hero .landing-hero__image video {
  z-index: 1;
}
.landing-hero .landing-hero__image p {
  z-index: 0;
  background-color: #f4ffe8;
}
.landing-hero .cta {
  color: #dff7d5;
}
.landing-hero .landing-hero__tag {
  display: inline-flex;
  width: fit-content;
  justify-content: center;
  align-items: center;
  background-color: #b1e0b3;
  padding: calc(10/11 * 1em) calc(20/11 * 1em);
  font-family: "ArchivoExpanded", sans-serif;
  color: #095860;
  font-size: calc(11/16 * 1em);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.9166667px;
}
.landing-hero .landing-hero__tag:not(:last-child) {
  margin-bottom: calc(20/11 * 1em);
}
.landing-hero .landing-hero__cta--hidden {
  height: 0;
  margin-top: 0;
  overflow: hidden;
}
.landing-hero.landing-hero--no-alpha .landing-hero__image p {
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
}
.landing-hero.landing-hero--no-alpha .landing-hero__image .video-bg-feathering:after {
  z-index: 1;
  box-shadow: inset 0 0 2.5em 1em #dff7d5;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .landing-hero {
    padding: calc(72/16 * 1em) 0 calc(100/16 * 1em) 0;
  }
  .landing-hero .landing-hero__content {
    margin-top: 3.75em;
  }
  .landing-hero .landing-hero__heading {
    margin-bottom: 1em;
  }
  .landing-hero .landing-hero__image {
    margin-left: -1.25em;
    margin-right: -1.25em;
    width: calc(100% + 2.5em);
  }
  .landing-hero .landing-hero__image img {
    margin-bottom: calc(90/16 * 1em * -1);
  }
  .landing-hero .landing-hero__image p {
    margin-top: calc(20/16 * 1em);
    padding: calc(20/12 * 1em) calc(24/12 * 1em);
    font-size: calc(12/16 * 1em);
    line-height: calc(20/12 * 1em);
    margin-bottom: calc(60/12 * 1em);
    margin-right: calc(20/12 * 1em);
    margin-left: calc(20/12 * 1em);
  }
  .landing-hero .landing-hero__image video {
    transform: translateX(4.75%) scale(1.275);
    margin-top: calc(20/16 * 1em * -1);
    margin-bottom: calc(20/16 * 1em * -1);
  }
  .landing-hero .cta {
    width: 100%;
  }
  .landing-hero.landing-hero--no-alpha .landing-hero__image .video-bg-feathering:after {
    bottom: calc(50/16 * 1em * -1);
    height: auto;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .landing-hero {
    padding: calc(72/16 * 1em) 0 calc(110/16 * 1em) 0;
  }
  .landing-hero .landing-hero__grid {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: calc(640/1160 * 100%) calc(490/1160 * 100%);
    grid-template-rows: auto auto;
    gap: 0 30px;
    grid-template-areas: "content image" "cta image";
  }
  .landing-hero .landing-hero__content, .landing-hero .landing-hero__cta {
    transform: translateY(calc(40/16 * 1em));
  }
  .landing-hero .landing-hero__content {
    grid-area: content;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }
  .landing-hero .landing-hero__heading {
    margin-bottom: 0.5em;
  }
  .landing-hero .landing-hero__image {
    grid-area: image;
  }
  .landing-hero .landing-hero__image img {
    width: 85%;
    margin-top: 10px;
    margin-bottom: calc(172/16 * 1em * -1);
  }
  .landing-hero .landing-hero__image video {
    transform: translateX(4.35%) scale(1.21);
    margin-top: calc(50/16 * 1em * -1);
    margin-bottom: calc(86/16 * 1em * -1);
  }
  .landing-hero .landing-hero__cta {
    grid-area: cta;
    margin-top: calc(60/18 * 1em);
  }
  .landing-hero .landing-hero__image p {
    padding: calc(60/21 * 1em) calc(56/21 * 1em);
    font-size: calc(21/16 * 1em);
    line-height: calc(30/21 * 1em);
  }
  .landing-hero.landing-hero--no-alpha .landing-hero__image .video-bg-feathering {
    margin-bottom: calc(28/16 * 1em * -1);
  }
  .landing-hero.landing-hero--no-alpha .landing-hero__image .video-bg-feathering:after {
    bottom: calc(50/16 * 1em * -1);
    height: auto;
  }
  .landing-hero.landing-hero--no-alpha .landing-hero__image video {
    margin-bottom: calc(46/16 * 1em * -1);
  }
}

@media not screen and (max-width: 767px) and (orientation: portrait) {
  .paid-landing--webinar .landing-hero__heading {
    font-size: calc(44/16 * 1em);
    line-height: calc(48/44 * 1em);
  }
  .paid-landing--webinar .landing-hero__content {
    padding-right: 1.25em;
  }
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .how-spks-works {
    padding: calc(90/16 * 1em) 0;
  }
  .how-spks-works .h1--large {
    margin-bottom: calc(40/30 * 1em);
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .how-spks-works {
    padding: calc(140/16 * 1em) 0;
  }
  .how-spks-works .h1--large {
    margin-bottom: 1em;
  }
}

.video-bg-feathering {
  position: relative;
}
.video-bg-feathering > img, .video-bg-feathering > video {
  position: relative;
  z-index: 0;
}
.video-bg-feathering:after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 2.5em 1em;
}

.round-card {
  position: relative;
  z-index: 0;
  text-align: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1), margin 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.round-card .round-card__single-column {
  text-align: center;
  max-width: calc(600/16 *1em);
  margin: 0 auto;
}
.round-card .round-card__content {
  position: relative;
}
.round-card .round-card__content p, .round-card .round-card__content ul, .round-card .round-card__content ol {
  line-height: calc(30/21 * 1em);
}
.round-card.bg-color--tea-green .video-bg-feathering:after {
  box-shadow: inset 0 0 2.5em 1em #dff7d5;
}
.round-card.bg-color--snuff .video-bg-feathering:after {
  box-shadow: inset 0 0 2.5em 1em #e8e2f2;
}
.round-card.bg-color--pale-rose .video-bg-feathering:after {
  box-shadow: inset 0 0 2.5em 1em #ffdce9;
}
.round-card.bg-color--cruise .video-bg-feathering:after {
  box-shadow: inset 0 0 2.5em 1em #bbeeee;
}
.round-card.in-view {
  z-index: 1;
  transform: translateX(0.625em);
}
.round-card.in-view.bg-color--tea-green {
  box-shadow: calc(30/16 * 1em * -1) calc(35/16 * 1em) calc(55/16 * 1em) rgba(99, 157, 106, 0.5);
}
.round-card.in-view.bg-color--snuff {
  box-shadow: calc(30/16 * 1em * -1) calc(35/16 * 1em) calc(55/16 * 1em) rgba(154, 132, 192, 0.5);
}
.round-card.in-view.bg-color--pale-rose {
  box-shadow: calc(30/16 * 1em * -1) calc(35/16 * 1em) calc(55/16 * 1em) rgba(188, 133, 154, 0.5);
}
.round-card.in-view.bg-color--cruise {
  box-shadow: calc(30/16 * 1em * -1) calc(35/16 * 1em) calc(55/16 * 1em) rgba(95, 156, 167, 0.5);
}
@media screen and (min-width: 1200px) {
  .round-card.in-view {
    transform: translateX(2.5em);
  }
  .round-card.in-view.bg-color--tea-green {
    box-shadow: calc(40/16 * 1em * -1) calc(60/16 * 1em) calc(64/16 * 1em) rgba(99, 157, 106, 0.5);
  }
  .round-card.in-view.bg-color--snuff {
    box-shadow: calc(40/16 * 1em * -1) calc(60/16 * 1em) calc(64/16 * 1em) rgba(154, 132, 192, 0.5);
  }
  .round-card.in-view.bg-color--pale-rose {
    box-shadow: calc(40/16 * 1em * -1) calc(60/16 * 1em) calc(64/16 * 1em) rgba(188, 133, 154, 0.5);
  }
  .round-card.in-view.bg-color--cruise {
    box-shadow: calc(40/16 * 1em * -1) calc(60/16 * 1em) calc(64/16 * 1em) rgba(95, 156, 167, 0.5);
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .round-card {
    border-radius: 1.25em;
  }
  .round-card:not(:last-child) {
    margin-bottom: 1.25em;
  }
  .round-card:not(:last-child).in-view {
    margin-bottom: 1.875em;
  }
  .round-card.round-card--columns {
    padding: 0 2.5em calc(70/16 * 1em) 2.5em;
  }
  .round-card.round-card--columns .h1--large {
    margin-bottom: 0.5em;
  }
  .round-card.round-card--single-column {
    padding: calc(90/16 * 1em) 2.25em calc(100/16 * 1em) 2.25em;
  }
  .round-card.round-card--single-column .h1--large {
    margin-bottom: calc(40/30 * 1em);
  }
  .round-card.round-card--single-column .cta {
    margin-top: 40px;
  }
  .round-card .round-card__image {
    margin: 0 -2.5em -1.25em -2.5em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .round-card {
    display: flex;
    align-items: center;
    border-radius: 2em;
  }
  .round-card:not(:last-child) {
    margin-bottom: 2em;
  }
  .round-card:not(:last-child).in-view {
    margin-bottom: 3.75em;
  }
  .round-card.round-card--columns {
    padding: calc(76/16 * 1em) 1.25em;
  }
  .round-card.round-card--columns .h1--large {
    margin-bottom: 0.5em;
  }
  .round-card.round-card--single-column {
    padding: calc(120/16 * 1em) 2.5em calc(140/16 * 1em) 2.5em;
  }
  .round-card.round-card--single-column .h1--large {
    margin-bottom: calc(50/60 * 1em);
  }
  .round-card.round-card--single-column .cta {
    margin-top: 70px;
  }
  .round-card .round-card__image {
    width: 50%;
  }
  .round-card .round-card__content {
    width: 45%;
  }
  .round-card.round-card--right {
    justify-content: flex-end;
  }
  .round-card.round-card--right .round-card__content {
    order: o;
  }
  .round-card.round-card--right .round-card__image {
    order: 1;
  }
}

.profile {
  background-color: #F4FFE8;
}
.profile .profile__headshot h3 {
  margin-bottom: calc(28/21 * 1em);
}
.profile .profile__headshot img {
  display: block;
  border-radius: 1.25em;
}
.profile .profile__heading {
  margin-bottom: calc(24/30 * 1em);
}
.profile .profile__sub-heading {
  margin-bottom: calc(30/21 * 1em);
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .profile {
    padding: calc(50/16 * 1em) 0;
  }
  .profile .profile__headshot {
    margin-bottom: calc(30/16 * 1em);
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .profile {
    padding: calc(80/16 * 1em) 0;
  }
  .profile p {
    font-size: calc(21/16 * 1em);
    line-height: calc(30/21 * 1em);
  }
  .profile .profile__columns {
    display: flex;
    justify-content: space-between;
  }
  .profile .profile__headshot {
    width: 25%;
    flex: 1 0 auto;
    margin-right: 3.125em;
  }
  .profile .profile__headshot h3 {
    margin-top: calc(4/21 * 1em);
  }
}

.webinar__form {
  position: relative;
  border-radius: 1.25em;
  padding: 1.875em 1.875em 2.5em 1.875em;
  background: #ffffff;
}
.webinar__form .webinar__field, .webinar__form .radio-container__text {
  font-family: "ArchivoExpanded", sans-serif;
}
.webinar__form .webinar__field {
  display: block;
  width: 100%;
  border-bottom: 2px solid #095860;
  font-size: calc(18/16 * 1em);
  line-height: calc(24/18 * 1em);
  height: calc(44/18 * 1em);
  outline: none;
}
.webinar__form .webinar__field[required] {
  background-image: url("../images/paid-landing/input-asterisk.png");
  background-size: 7px;
  background-position: right center;
}
.webinar__form .webinar__field:not(:last-child) {
  margin-bottom: calc(10/18 * 1em);
}
.webinar__form .webinar__field:focus {
  border-color: #b1e0b3;
}
.webinar__form .radio-container {
  margin-top: 26px;
}
.webinar__form .radio-container .radio-container__text {
  text-transform: uppercase;
  font-size: calc(11/16 * 1em);
  font-weight: 700;
  letter-spacing: 0.9166667px;
}
.webinar__form .webinar__success {
  display: none;
}
.webinar__form .webinar__success h2 {
  margin-bottom: calc(10/30 * 1em);
}
.webinar__form #valid-msg, .webinar__form #error-msg {
  right: 16px;
}
.webinar__form .loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 6em;
  width: 1em;
  height: 1em;
  transform: translate(-50%, -50%);
}
.webinar__form .webinar__sessions {
  margin: 1.25em 0 0 0;
}
.webinar__form .webinar__sessions .webinar__session:not(:last-child) {
  margin-bottom: 1em;
}
.webinar__form .webinar__sessions p {
  margin-bottom: 6px;
}
.webinar__form .webinar__sessions .cta {
  margin-top: 6px;
}
.webinar__form.webinar__form--loading .loader {
  display: block;
}
.webinar__form.webinar__form--loading .webinar__fields {
  opacity: 0.1;
  pointer-events: none;
}
.webinar__form.webinar__form--success {
  padding: 1.875em;
}
.webinar__form.webinar__form--success .webinar__fields {
  display: none;
}
.webinar__form.webinar__form--success .webinar__success {
  display: block;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .webinar__form {
    margin: 2.5em 0 0 0;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .webinar__form {
    max-width: 80%;
    margin: 3.125em 0 0 0;
  }
}

.testimonials .testimonials__items {
  position: relative;
}
.testimonials .testimonial__name {
  margin-bottom: 4px;
}
.testimonials .testimonial__title {
  font-weight: 400;
  line-height: 1.25em;
}
.testimonials .testimonial__logo {
  width: auto;
}
.testimonials .testimonial__content, .testimonials .testimonial__title {
  color: #020202;
}
.testimonials .testimonial__content {
  position: relative;
}
.testimonials .testimonial__content:before, .testimonials .testimonial__content:after {
  content: '"';
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .testimonials {
    text-align: center;
    padding-bottom: 5em;
  }
  .testimonials .testimonials__items {
    padding: 0 1.875em;
  }
  .testimonials .testimonial__image {
    width: 50%;
    display: block;
    margin: 0 auto 1.25em auto;
  }
  .testimonials .testimonial__logo {
    max-height: calc(50/16 * 1em);
  }
  .testimonials .testimonial__content {
    margin-top: calc(20/16 * 1em);
  }
  .testimonials .testimonial__name {
    font-size: 1.25em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .testimonials .testimonials__items {
    padding: 0 10.9126984127%;
  }
  .testimonials .testimonial {
    display: grid;
    grid-auto-flow: row dense;
    grid-auto-columns: 1fr;
    grid-template-columns: 30.4568527919% 1fr;
    grid-template-rows: auto 1fr auto auto;
    grid-gap: 0px 6.345177665%;
    grid-template-areas: "image logo" "image content" "image name" "image title";
    min-height: calc(280/16 * 1em);
  }
  .testimonials .testimonial__image {
    grid-area: image;
    height: 100%;
    object-fit: contain;
    margin-left: 1px;
  }
  .testimonials .testimonial__logo {
    grid-area: logo;
    width: auto;
    max-height: calc(80/16 * 1em);
  }
  .testimonials .testimonial__content {
    grid-area: content;
    margin-top: calc(30/16 * 1em);
  }
  .testimonials .testimonial__name {
    grid-area: name;
  }
  .testimonials .testimonial__title {
    grid-area: title;
  }
}

.flickity-viewport {
  transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.flickity-button:focus {
  box-shadow: none;
}

.flickity-prev-next-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(44/16 * 1em);
  height: calc(44/16 * 1em);
}
.flickity-prev-next-button .flickity-button-icon {
  position: relative;
  left: auto;
  top: auto;
}
.flickity-prev-next-button .flickity-button-icon path {
  fill: #095860;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .flickity-prev-next-button .flickity-button-icon {
    width: 1em;
    height: 1em;
  }
  .flickity-prev-next-button.previous {
    left: -20px;
  }
  .flickity-prev-next-button.next {
    right: -20px;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  .flickity-prev-next-button .flickity-button-icon {
    width: calc(24/16 * 1em);
    height: calc(24/16 * 1em);
  }
  .flickity-prev-next-button.previous {
    left: -10px;
  }
  .flickity-prev-next-button.next {
    right: -10px;
  }
}

ol.flickity-page-dots {
  font-size: 1em;
  margin: 0;
  left: 0;
  right: 0;
  bottom: auto;
  top: 100%;
}
ol.flickity-page-dots .dot {
  width: 0.875em;
  height: 0.875em;
  opacity: 1;
  background-color: transparent;
  border: 2px solid #095860;
}
ol.flickity-page-dots .dot.is-selected {
  background-color: #095860;
}
ol.flickity-page-dots li {
  padding: 0;
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  ol.flickity-page-dots {
    padding-top: 1.25em;
  }
}
@media not screen and (max-width: 767px) and (orientation: portrait) {
  ol.flickity-page-dots {
    padding-top: 2.5em;
  }
}

/*# sourceMappingURL=homepage-2022.css.map */
