* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation; }

*:focus:not(.focus-visible) {
  outline: none; }

html,
body {
  margin: 0;
  padding: 0; }

ul {
  margin: 0;
  padding: 0;
  list-style: none; }

p,
figure {
  margin: 0; }

img {
  max-width: 100%; }

img,
svg {
  user-select: none; }

button {
  padding: 0;
  font: inherit;
  line-height: 0;
  background-color: transparent;
  border: none; }

button:active,
a:active {
  outline: none; }

button:focus,
a:focus {
  outline: none; }

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/roboto-v18-latin-regular.eot");
  src: local("Roboto"), local("Roboto-Regular"), url("/assets/fonts/roboto-v18-latin-regular.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/roboto-v18-latin-regular.woff2") format("woff2"), url("/assets/fonts/roboto-v18-latin-regular.woff") format("woff"), url("/assets/fonts/roboto-v18-latin-regular.ttf") format("truetype"), url("/assets/fonts/roboto-v18-latin-regular.svg#Roboto") format("svg"); }

@font-face {
  font-family: Roboto;
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/roboto-v18-latin-700.eot");
  src: local("Roboto Bold"), local("Roboto-Bold"), url("/assets/fonts/roboto-v18-latin-700.eot?#iefix") format("embedded-opentype"), url("/assets/fonts/roboto-v18-latin-700.woff2") format("woff2"), url("/assets/fonts/roboto-v18-latin-700.woff") format("woff"), url("/assets/fonts/roboto-v18-latin-700.ttf") format("truetype"), url("/assets/fonts/roboto-v18-latin-700.svg#Roboto") format("svg"); }

.hero__image {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover; }

.collapsible__button, .slider__button {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1rem 3px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  cursor: pointer;
  transition: color .1s ease-in-out; }
  .collapsible__button::after, .slider__button::after {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 3px;
    background-color: #32a0b4;
    border-radius: 5px;
    content: '';
    transition: height .1s ease-in-out; }
  .collapsible__button:hover, .slider__button:hover {
    color: #39317f; }
    .collapsible__button:hover::after, .slider__button:hover::after {
      height: 2rem; }
  .collapsible__button:active, .slider__button:active {
    transform: translateY(2px); }

.container, .hero__container, .section__container, .footer__container, .nav__container {
  display: block;
  max-width: 73rem;
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem; }

.hero__card, .section__card {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 15px 75px -9px rgba(57, 49, 127, 0.15); }

.flexList {
  display: flex;
  align-items: center;
  flex-flow: row wrap;
  justify-content: center; }

.subheading, .card__title, .collapsible__title, .slider__title {
  margin: 0 0 1.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2; }

.hero__name, .article__date, .slider__label {
  margin: 0;
  font-size: .85rem;
  font-weight: 700;
  color: #32a0b4; }

.progressbar__text, .article__text, .article__subtitle, .slider__text {
  margin: 0;
  font-size: .9rem;
  font-weight: 400;
  line-height: 1.5;
  color: #908ca2; }

.footer__item, .nav__text, .feature__text, .progressbar__title, .card__item, .collapsible__date, .article__title {
  margin: 0;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .5px; }

.heading {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 2rem;
  text-align: center; }
  @media only screen and (min-width: 48rem) {
    .heading {
      margin-bottom: 6rem;
      font-size: 3.75rem;
      text-align: left; }
      .heading--centered {
        text-align: center; } }

.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(45deg, #272f75 0%, #423283 80%); }
  .hero::before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 80%;
    height: 100%;
    background-image: url("/assets/images/heroBackground.png");
    background-repeat: no-repeat;
    background-size: contain;
    content: ''; }
  .hero__container {
    padding: 2rem; }
  .hero__card {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-bottom: -6rem;
    overflow: hidden;
    color: #908ca2; }
    @media only screen and (min-width: 48rem) {
      .hero__card {
        flex-direction: row;
        margin-top: 4rem; } }
  .hero__column {
    position: relative;
    flex: 0 0 100%;
    padding: 2rem;
    overflow: hidden; }
    .hero__column:first-child {
      padding-top: 100%;
      padding-bottom: 0;
      background-color: #32a0b4; }
    @media only screen and (min-width: 48rem) {
      .hero__column {
        flex: 0 0 50%;
        min-height: 48rem;
        padding: 6rem 4rem; }
        .hero__column:first-child {
          padding-top: 0; }
        .hero__column:last-child::before {
          position: absolute;
          bottom: 6rem;
          left: 4rem;
          width: 40px;
          height: 3px;
          background-color: #32a0b4;
          border-radius: 5px;
          content: '';
          transition: height .1s ease-in-out; } }
  @media only screen and (max-width: 47.84rem) {
    .hero__image {
      top: 65%; } }
  .hero__title {
    margin: 0;
    padding-bottom: 1rem;
    font-size: 2rem;
    line-height: 1.1;
    color: #39317f; }
    @media only screen and (min-width: 73rem) {
      .hero__title {
        padding-bottom: 1.5rem;
        font-size: 3rem; } }
  .hero__name {
    margin-bottom: .5rem; }
  .hero__text {
    font-size: 1rem;
    line-height: 1.5; }
    @media only screen and (min-width: 48rem) {
      .hero__text {
        font-size: 1.13rem; } }
  @media only screen and (min-width: 48rem) {
    .hero::before {
      width: 40%; } }

.section {
  color: #d8d6e1; }
  .section__container {
    padding-top: 4rem;
    padding-bottom: 4rem;
    font-size: .85rem; }
    @media only screen and (min-width: 48rem) {
      .section__container {
        padding-top: 8rem;
        padding-bottom: 8rem;
        font-size: .9rem; } }
  .section__row + .section__row {
    padding-top: 2rem; }
  .section__row--flex {
    display: flex;
    align-items: center;
    flex-direction: column; }
    @media only screen and (min-width: 48rem) {
      .section__row--flex {
        align-items: stretch;
        flex-flow: row wrap;
        justify-content: center;
        margin-right: -1rem;
        margin-left: -1rem; } }
    @media only screen and (min-width: 73rem) {
      .section__row--flex {
        justify-content: flex-start; } }
  @media only screen and (min-width: 48rem) {
    .section__row + .section__row {
      padding-top: 8rem; } }
  .section__column {
    flex: 0 0 calc((100% - 1 * 2rem) / 1);
    width: 100%;
    margin: 1rem; }
    @media only screen and (max-width: 47.84rem) {
      .section__column {
        max-width: 25rem; } }
    @media only screen and (min-width: 48rem) {
      .section__column {
        flex: 0 0 calc((100% - 2 * 2rem) / 2);
        width: 100%;
        margin: 1rem; } }
  @media only screen and (min-width: 48rem) and (max-width: 47.84rem) {
    .section__column {
      max-width: 25rem; } }
    @media only screen and (min-width: 73rem) {
      .section__column--spacingLeft {
        padding-left: 8rem; }
      .section__column--spacingRight {
        padding-right: 8rem; } }
  .section__card {
    position: relative;
    margin-top: -6rem;
    margin-bottom: -4rem;
    padding: 2rem; }
    .section__card::before {
      position: absolute;
      top: -70px;
      right: 0;
      width: 400px;
      height: 300px;
      background-image: url("/assets/images/mediaManager.png");
      background-repeat: no-repeat;
      background-size: contain;
      content: '';
      transform: scale(0);
      transition: transform .3s ease-in-out; }
    @media only screen and (min-width: 48rem) {
      .section__card {
        margin-top: -12rem;
        margin-bottom: -8rem;
        padding: 6rem 4rem; } }
    @media only screen and (min-width: 73rem) {
      .section__card::before {
        transform: scale(1); } }
  .section--dark {
    color: #fff;
    background: linear-gradient(45deg, #272f75 0%, #423283 80%); }
  .section--gray {
    background: linear-gradient(45deg, #f8f8ff 0%, #f8f8f8 100%); }
  .section--spacedTop {
    border-bottom: 2px solid rgba(216, 214, 225, 0.2); }
    .section--spacedTop .section__container {
      padding-top: 6rem; }
      @media only screen and (min-width: 48rem) {
        .section--spacedTop .section__container {
          padding-top: 10rem; } }
  .section--spacedBottom .section__container {
    padding-bottom: 6rem; }
    @media only screen and (min-width: 48rem) {
      .section--spacedBottom .section__container {
        padding-bottom: 10rem; } }

.footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: linear-gradient(45deg, #272f75 0%, #423283 80%); }
  .footer__container {
    padding-top: 2rem;
    padding-bottom: 2rem; }
  .footer__list {
    display: flex;
    flex-direction: column; }
  .footer__item {
    flex: 0 0 100%; }
    .footer__item + .footer__item {
      margin-top: 1.5rem; }
  .footer__text {
    display: block;
    font-size: .9rem;
    color: #fff;
    text-decoration: none; }
    .footer__text + .footer__text {
      padding-top: .5rem; }
    .footer__text > span {
      color: #32a0b4; }
  .footer__image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 70%;
    transform: translate(40%, 0); }
  @media only screen and (min-width: 48rem) {
    .footer {
      text-align: left; }
      .footer__container {
        padding-top: 8rem;
        padding-bottom: 8rem; }
      .footer__list {
        flex-direction: row; }
      .footer__item {
        flex: 0 0 calc(100% / 3); }
        .footer__item + .footer__item {
          margin-top: 0;
          padding-right: 1rem; }
      .footer__image {
        transform: translate(0, 0); } }

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px); }
  100% {
    transform: translateY(0); } }

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  color: #fff;
  transform: translateY(0);
  transition: transform .4s ease-in-out; }
  .nav__container {
    padding-top: 2rem;
    padding-bottom: 2rem; }
  .nav__list {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: .85rem; }
  .nav__burger {
    position: absolute;
    top: .5rem;
    right: .5rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    color: #fff;
    background-color: #32a0b4;
    border-radius: 100%; }
    .nav__burger:active {
      transform: translateY(2px); }
  .nav__text {
    position: relative;
    z-index: 1;
    padding: 2rem 0;
    font-size: 1.5rem;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    border-radius: 5px;
    transition: opacity .2s ease-in-out; }
    .nav__text::after {
      position: absolute;
      bottom: calc(2rem - 5px);
      left: 0;
      z-index: -1;
      width: 100%;
      height: 3px;
      background-color: #32a0b4;
      border-radius: 5px;
      content: '';
      transform: scaleX(0);
      transition: transform .2s ease-in-out; }
    .nav__text:hover {
      opacity: .7; }
    .nav__text:focus {
      outline: 1px solid rgba(57, 49, 127, 0.2); }
  .nav__text.active::after {
    transform: scaleX(1); }
  .nav__icon {
    position: absolute;
    top: calc((100% - 3px) / 2);
    left: calc((100% - 50%) / 2);
    width: 50%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: transform .3s ease-in-out; }
    .nav__icon:first-child::before, .nav__icon:first-child::after {
      position: absolute;
      left: 0;
      width: 100%;
      height: 3px;
      background: #fff;
      border-radius: 5px;
      content: '';
      transition: transform .2s ease-in-out .1s;
      transform-origin: 50% 50%; }
    .nav__icon:first-child::before {
      top: 7px; }
    .nav__icon:first-child::after {
      bottom: 7px; }
  .nav--fixed {
    color: #39317f;
    animation: smoothScroll .5s forwards; }
    .nav--fixed .nav__container {
      padding-top: 1rem;
      padding-bottom: 1rem; }
  @media only screen and (max-width: 47.84rem) {
    .nav__navigation {
      position: fixed;
      top: 0;
      left: 100%;
      z-index: 10;
      width: 100vw;
      height: 100vh;
      padding: 0;
      overflow-x: hidden;
      overflow-y: scroll;
      color: #fff;
      text-align: center;
      background: #32a0b4;
      transition: transform .3s; }
      .nav__navigation::-webkit-scrollbar {
        width: 1px; }
      .nav__navigation::-webkit-scrollbar-track, .nav__navigation::-webkit-scrollbar-thumb {
        background: transparent; }
    .nav__list {
      position: absolute;
      top: 15%;
      left: 0;
      width: 100%; }
    .nav__item {
      display: block;
      margin: 1rem 0;
      font-size: 1.5rem; }
    .nav__text::after {
      background-color: #fff; }
    .nav--active .nav__navigation {
      transform: translateX(-100%); }
    .nav--active .nav__burger {
      position: fixed; }
    .nav--active .nav__icon:first-child {
      transform: rotate(45deg); }
    .nav--active .nav__icon:last-child {
      transform: rotate(-45deg); }
    .nav--active .nav__icon::before,
    .nav--active .nav__icon::after {
      transform: scaleX(0); } }
  @media only screen and (min-width: 48rem) {
    .nav--fixed {
      background-color: #fff;
      box-shadow: 0 15px 75px -9px rgba(57, 49, 127, 0.15); }
    .nav__list {
      flex-flow: row wrap;
      justify-content: flex-end; }
    .nav__item + .nav__item {
      margin-left: 1rem; }
    .nav__text {
      padding: .8rem .5rem;
      font-size: .9rem; }
      .nav__text::after {
        bottom: 8px; }
    .nav__burger {
      pointer-events: none;
      visibility: hidden;
      transform: scale(0); } }

.feature {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 2rem 2rem;
  color: #908ca2; }
  .feature__text {
    margin-top: 1rem;
    text-align: center; }
    @media only screen and (min-width: 48rem) {
      .feature__text {
        margin-top: 2rem; } }

.progressbar__title {
  color: #39317f;
  text-transform: lowercase; }

.progressbar__text {
  margin-bottom: 1rem;
  text-transform: lowercase; }

.progressbar__bar {
  position: relative;
  width: 100%;
  height: 7px;
  overflow: hidden;
  background-color: rgba(216, 214, 225, 0.5);
  border-radius: 5px; }

.progressbar__measure {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 7px;
  background-color: #39317f;
  border-radius: 5px;
  transition: width 1s cubic-bezier(0, 0.82, 0.4, 1.14); }

.progressbar + .progressbar {
  margin-top: 2rem; }

.card {
  width: 100%;
  margin-top: 2rem;
  padding: 2.5rem 1.5rem;
  color: #39317f;
  border-radius: 5px;
  box-shadow: 0 15px 75px -9px rgba(57, 49, 127, 0.15); }
  .card__title {
    color: #32a0b4; }
  .card__item {
    padding-bottom: .4rem; }
  .card--dark {
    color: #fff;
    background: linear-gradient(45deg, #272f75 0%, #423283 80%); }
  @media only screen and (min-width: 73rem) {
    .card {
      float: left;
      width: calc(50% - 1rem);
      height: 100%;
      margin-top: 0; }
      .card + .card {
        margin-left: 1rem; } }

.collapsible {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  height: 100%;
  padding: 2rem;
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px; }
  .collapsible__body {
    margin-bottom: 3rem; }
  .collapsible__date {
    margin-bottom: .2rem;
    font-size: .85rem; }
  .collapsible__title {
    color: #32a0b4;
    text-transform: lowercase; }
  .collapsible__tags {
    margin: 1.6rem 0; }
  .collapsible__tag {
    display: inline-block;
    margin-right: .3rem;
    margin-bottom: .4rem;
    padding: .3rem 1rem;
    font-size: .6rem;
    background-color: #4c3d9d;
    border-radius: 30px;
    box-shadow: 0 15px 75px -9px rgba(57, 49, 127, 0.15); }
  .collapsible__text {
    line-height: 1.5;
    opacity: .8; }

.article__date {
  color: #32a0b4; }

.article__title {
  margin: .4rem 0 .2rem;
  color: #39317f;
  text-transform: lowercase; }

.article__subtitle {
  margin: 0 0 1.5rem;
  letter-spacing: .2px;
  color: #39317f; }

.article + .article {
  margin-top: 2rem; }

.slider {
  position: relative;
  width: 100%;
  margin-top: 4em; }
  .slider__frame {
    position: relative;
    margin: -1rem;
    overflow: hidden; }
  .slider__slides {
    display: flex; }
  .slider__card {
    position: relative;
    justify-content: flex-start;
    height: 100%;
    padding: 2rem;
    border: 3px solid transparent;
    border-radius: 5px; }
    @media only screen and (max-width: 47.84rem) {
      .slider__card {
        color: #fff;
        background: linear-gradient(45deg, #272f75 0%, #423283 80%); } }
  .slider__label {
    padding-bottom: 1rem; }
  .slider__text {
    color: inherit; }
  .slider__item {
    flex: 1 0 100%;
    width: auto;
    padding: 0 1rem; }
  .slider__dots {
    display: flex;
    justify-content: center;
    margin-top: 4rem; }
  .slider__dot {
    position: relative;
    width: 6px;
    height: 6px;
    cursor: pointer;
    background-color: #d8d6e1;
    border: 0;
    border-radius: 10px; }
    .slider__dot::before {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #39317f;
      border-radius: 10px;
      content: '';
      transform: scaleX(0);
      transition: transform 0.5s cubic-bezier(0, 0.43, 0.19, 1.38);
      transform-origin: 0 0; }
    .slider__dot--active::before {
      transform: scaleX(1); }
  .slider__dot + .slider__dot {
    margin-left: 10px; }
  .slider__button {
    position: absolute;
    bottom: 0;
    color: #39317f;
    cursor: pointer; }
    .slider__button--left {
      left: 0; }
    .slider__button--right {
      right: 0; }
  @media only screen and (min-width: 48rem) {
    .slider {
      margin-top: 6em; }
      .slider__card {
        min-height: 350px;
        color: #39317f; }
        .slider__card::before {
          position: absolute;
          top: 0;
          left: 0;
          z-index: -1;
          width: 100%;
          height: 100%;
          background: transparent;
          border: 3px solid #39317f;
          border-radius: 5px;
          content: '';
          transition: transform 0.4s cubic-bezier(0.51, 0.47, 0.29, 1.26) 0.1s; }
      .slider__item {
        padding: 4rem .7em; }
        .slider__item--active .slider__card {
          color: #fff;
          background: transparent; }
          .slider__item--active .slider__card::before {
            background: linear-gradient(45deg, #272f75 0%, #423283 80%);
            border-color: transparent;
            transform: scaleY(1.2); }
      .slider__dots {
        margin-top: 2rem; }
      .slider__dot {
        width: 30px;
        height: 4px; } }
  @media only screen and (min-width: 768px) {
    .slider__item {
      flex: 1 0 calc(100% / 3); } }

.modal {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  visibility: hidden; }
  .modal::-webkit-scrollbar {
    width: 7px;
    border-radius: 30px; }
  .modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 30px; }
  .modal::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px; }
  .modal__container {
    position: absolute;
    top: 2rem;
    left: calc((100% - 80%) / 2);
    display: block;
    width: 80%;
    min-height: 80%;
    margin-bottom: 2rem;
    padding: 2rem;
    color: #39317f;
    background: #fff;
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all .1s ease-in; }
    @media only screen and (min-width: 48rem) {
      .modal__container {
        top: 3rem;
        left: calc((100% - 700px) / 2);
        width: 700px;
        padding: 6rem; } }
  .modal__button {
    position: fixed;
    top: -1.5rem;
    right: -1.5rem;
    z-index: 10;
    width: 3rem;
    height: 3rem;
    font-size: 0;
    color: #fff;
    background-color: #32a0b4;
    border-radius: 100%; }
    .modal__button:active {
      transform: translateY(2px); }
    @media only screen and (min-width: 48rem) {
      .modal__button {
        position: absolute; } }
  .modal__icon {
    position: absolute;
    top: calc((100% - 3px) / 2);
    left: calc((100% - 50%) / 2);
    width: 50%;
    height: 3px;
    background: #fff;
    border-radius: 5px;
    transition: transform .3s ease-in-out; }
    .modal__icon:first-child {
      transform: rotate(45deg); }
    .modal__icon:last-child {
      transform: rotate(-45deg); }
  .modal__item {
    position: relative;
    padding-left: 1.5rem; }
    .modal__item::before {
      position: absolute;
      top: 8px;
      left: 0;
      width: 6px;
      height: 6px;
      background: #32a0b4;
      border-radius: 100%;
      content: ''; }
    .modal__item + .modal__item {
      margin-top: .8rem; }
  .modal__body {
    margin-top: 2rem;
    padding-right: 1rem;
    padding-bottom: 2rem; }
  .modal--active {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100vw;
    height: 100%;
    background: rgba(57, 49, 127, 0.97);
    visibility: visible; }
    .modal--active .modal__container {
      opacity: 1;
      visibility: visible;
      transform: translateY(0); }

html,
body {
  font-family: Roboto, sans-serif;
  font-weight: 400; }

body {
  overflow-x: hidden; }

*::-moz-selection {
  color: #fff;
  background: #32a0b4; }

*::selection {
  color: #fff;
  background: #32a0b4; }
