/* Reset */


	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block;
	}

	body {
		line-height: 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: none;
	}

	ol, ul {
		list-style: none;
	}

	blockquote, q {
		quotes: none;
	}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}


/* Box Model */

	*, *:before, *:after {
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}


body > section {
  padding-left: 32px;
  padding-right: 32px;
}

body {
  background-color: #002f5c;
  color: white;
  font-family: 'Roboto', Camphor, Open Sans, Segoe UI, sans-serif;
  margin: 0;
  padding: 0
}


.navbar {
  display: flex;
  padding: 8px 16px;
}

  .navbar__logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
  }

    .navbar__img {
      width: 24px;
      height: 24px;
      margin-right: 8px;
      border-radius: 50%;
      border: 2px solid white;
    }

    .navbar__title {
      font-size: 22px;
      line-height: 24px;
      font-weight: 500;
      text-decoration: none;
      color: white;
    }

    .navbar__title:hover, .navbar__title:visited {
      color: white;
      text-decoration: none;
    }

  .navbar__menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .navbar__menu_github {
    display: flex;
  }

  .navbar__menu_puppetry {
    display: flex;
  }


  .navbar__menu_github > * {
    margin-left: 8px;
  }

  .navbar__menu_puppetry > .btn {
    margin-left: 8px;
  }

  .navbar__menu_puppetry > .btn:first-child {
    margin-left: 24px;
  }

.banner {
  padding-bottom: 32px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}


  .banner .banner__btns {
    margin: 16px 0;
  }

  .banner .banner__btns .btn + .btn {
    margin-left: 16px;
  }

  .banner h1 {
    font-size: 48px;
    line-height: 72px;
    font-weight: 400;
    margin-top: 32px;
    text-align: center;
  }

  .banner h2 {
    font-size: 24px;
    line-height: 40px;
    font-weight: 300;
    opacity: 0.7;
    text-align: center;
  }

  .banner__img {
    margin: 32px 0;
    display: block;
    width: 620px;
    height: 384px;
    box-shadow: 4px 4px 8px 0px rgba( 0,0,0,0.4 );
    border-radius: 4px;
  }


.hero-grid {
  display: flex;
  align-items: flex-start;
}

img.lazyload:not([src]) {
	visibility: hidden;
}

.blur-up {
  -webkit-filter: blur(5px);
  filter: blur(5px);
  transition: filter 400ms, -webkit-filter 400ms;
}

.blur-up.lazyloaded {
  -webkit-filter: blur(0);
  filter: blur(0);
}

@media screen and (max-width: 992px) {
  .hero-grid {
    flex-flow: column nowrap;
  }
}

@media screen and (max-width: 652px) {
  .navbar__logo {
    display: none;
  }
  .navbar, .navbar__menu {
    flex-direction: column;
  }
  .navbar__menu, .navbar__menu_github {
    margin-top: 8px;
  }

  .navbar__menu_puppetry  {
    display: none;
    /* width: calc(100vw - 32px) !important; */
  }

  .banner h1 {
    font-size: 40px;
    line-height: 48px;
    margin-top: 32px;
  }



  .hero-card > h3 {
    height: auto !important;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
  }

  .banner .banner__btns {
    display: flex;
    flex-flow: column;
    align-items: center;
  }

  .banner .banner__btns .btn {
    display: block;
    width: 120px;
  }

  .banner .banner__btns .btn + .btn {
    margin-left: 0;
    margin-top: 8px;
  }

  .feature__ic {
    text-align: center;
  }

  .banner__img, .feature__img {
    width: calc(100vw - 32px) !important;
    height: auto;
  }
  .footer {
    flex-direction: column;
  }
  .footer__links {
    margin-top: 16px;
  }
}

  .hero-grid h3 {
    font-size: 24px;
    line-height: 32px;
    margin-top: 16px;
    height: 64px;
  }


  .hero-card {
    flex: 1 1 33%;
    padding: 16px;
    text-align: center;
  }

  .hero-card__icon {
    width: 100%;
    max-width: 80px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-card p {
    font-size: 16px;
    color: rgba(255, 2555, 255, 0.55);
    line-height: 24px;
  }

  .hero-card p a {
    color: rgba(255, 2555, 255, 0.55);
    text-decoration: underline;
  }
  .hero-card p a:hover {
    color: white;
  }

.feature {
  display: flex;
  margin: 64px 0;
}

  .feature h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 500;
    padding-bottom: 16px;
  }

  .feature__img {
    max-width: 800px;
    width: 100%;
  }

  .feature p, .p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 24px;
  }

  .feature p a, .p a {
    color: rgba(255, 2555, 255, 0.55);
    text-decoration: underline;
  }

  .feature p a:hover, .p a:hover {
    color: white;
  }

  .feature.feature--left > div:first-child {
    flex: 1 1 70%;
  }
  .feature.feature--left > div:last-child {
    flex: 1 1 30%;
    padding: 0 32px;
  }

  .feature.feature--right > div:last-child {
    flex: 1 1 70%;
  }
  .feature.feature--right > div:first-child {
    flex: 1 1 30%;
    padding: 0 32px;
  }

@media screen and (max-width: 992px) {
  .feature {
    flex-flow: column nowrap;
  }

  .feature.feature--left > div:last-child {
    padding: 32px;
  }
  .feature.feature--right > div:last-child {
    order: 1;
  }
  .feature.feature--right > div:first-child {
    order: 2;
    padding: 32px;
  }
}

.section--welcome {
  background: #7b4397;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #dc2430, #7b4397);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #dc2430, #7b4397); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  padding-bottom: 64px;
}

.section--features {
  padding: 64px 0;
}

.section--features h2 {
  font-size: 32px;
  line-height: 48px;
  font-weight: 300;
  text-align: center;
  opacity: 0.7;
}

.section--integration {
  background-color: #001529;
}

.section--footer {
  background-color: white;
  color: black;
}

.footer {
  display: flex;
  padding: 0;
  align-items: center;
}

  .footer a {
    color: #00529e;
    text-decoration: none;
  }
  .footer a:hover, .footer a:focus {
      color: #001529;
      text-decoration: underline;
  }
  .footer__copyright {
    flex: 1 0 auto;
    line-height: 24px;
  }
  .footer__nav {
    line-height: 24px;
  }
  .footer__links {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .layout-icon {
    display: block;
  }
  .layout-icon svg {
    fill: black;
    width: 24px;
    height: 24px;
    margin-left: 8px;
  }

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.btn--sm {
    font-size: 13px;
    border-radius: 2px;
    height: 32px;
    line-height: 32px;
    min-width: 32px;
    padding: 0 8px;
}

.btn--md {
  font-size: 14px;
  border-radius: 2px;
  height: 40px;
  line-height: 40px;
  min-width: 40px;
  padding: 0 12px;
}
.btn--secondary {
  border: 1px solid white;
  background-color: transparent;
  color: white;
  transition: background-color .2s ease;
}
.btn--secondary:hover {
  background-color: white;
  color: #d6619c;
  text-decoration: none;
}

.btn {
    text-decoration: none;
    font-size: 15px;
    white-space: nowrap;
    border-radius: 3px;
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    outline: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.feature__img-frame {
  display: inline-block;
  position: relative;
}
.feature__img-frame::after {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: no-repeat url("/assets/img/v3/frame.png");
  background-size: 100% 100%;
}


.MuiSvgIcon-root {
    fill: currentColor;
    display: inline-block;
    user-select: none;
}

.jss688 {
    color: #fff;
    cursor: pointer;
    margin: 0;
    padding: 0;
    font-size: 76px;
    width: 76px;
    height: 76px;
}

.video-thumb {
  margin: 16px 0;
  width: 200px;
  height: 113px;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid white;
}

.video-thumb img {
  width: 200px;
  height: 113px;
  transition: transform .3s ease;
  will-change: transition;
  border-radius: 8px;
}

.video-thumb:hover img {
  transform: scale(1.04);
  filter: brightness(120%);
}


.p  strong {
  font-weight: bold;
}

.p code {
    display: inline-block;
    padding: 3px 6px;
    font-size: 95%;
    border-radius: 3px;
    background-color: #0059af;
    box-decoration-break: clone;
}

.feature ul {
  list-style: disc;
  padding-left: 16px;
}
.feature ul li, .section__intro {
  font-size: 16px;
  opacity: 0.8;
  line-height: 24px;
}

.section__intro {
  padding-top: 16px;
}

.section--features .section__intro a {
    color: rgba(255, 2555, 255, 0.55);
    text-decoration: underline;
  }

  .section--features .section__intro a:hover, .section--features .section__intro  a:hover {
    color: white;
  }