html{
  font-size: 16px;
}
@media screen and (min-width: 1200px) {
  html{
    font-size: 20px;
  }
}
@media screen and (min-width: 800px) and (max-width:1199.98px) {
  html{
    font-size: 18px;
  }
}

body {
  margin: 0;
  background-color: #98A1A9;
  margin: 0;
  font-family: Lato, sans-serif;
  color: #1D2F3B;
}

.uw-background {
  background-color: white;
  margin: auto;

  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1921px){
  .uw-background {
    max-width: 1920px;
  }
}
* {
  box-sizing: border-box;
}

/* generic */
a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

@media screen and (max-width:399px){
  img{
    max-width: min(340px, 100%) !important;
  }
}

ul.feature-list {
  padding-left: 1em;
  margin: 0;
}

li::marker {
  color: #465865;
}

h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

h2 {
  font-size: 2rem;
  font-weight: 400;
  margin: 1.5rem auto;
}

@media screen and (max-width: 450px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
}

h2.size-remapped, h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-block-end: 1.2rem;
}

p {
  margin: 0.5em 0;
  line-height: 1.2em;
}

.button {
  margin: 0 auto;
  padding: 0.4em 1.2em;
  border-radius: 2px !important;
  display: inline-block;
  background-color: #fbaf0b;
  color: #1D2F3B;
  box-shadow: 0 2px 5px #1D2F3B1A;
}

.button:hover {
  background-color: #DC7100;
}

.button.inverted {
  border: 1px solid #fbaf0b;
  color: #fbaf0b;
  padding: 0.4em 1.5em;
  display: inline-block;
  margin: 0.25em 0 0.25em 0.5em;
  background-color: unset;
}
.button.inverted:hover {
  color: #1D2F3B;
  background-color: #fbaf0b;
}

.button.inverted-blue {
  border: 1px solid #38b3f9;
  padding: 0.4em 1.5em;
  display: inline-block;
  margin: 0.25em 0 0.25em 0.5em;

  color: #1D2F3B;
  background-color: #38b3f9;
}
.button.inverted-blue:hover {
  color: #38b3f9;
  background-color: unset;
}

.button.inverted-blue:focus {
  /* background-color: #0099CC;
  color: #1D2F3B!important;
  border: 1px solid #38b3f9; */

  color: #38b3f9;
  background-color: unset;
}

.button:focus, .button.inverted:focus {
  background-color: #DC7100;
  color: #1D2F3B;
  border: 1px solid #fbaf0b;
}

.primary {
  font-size: 1.2rem;
}

.fade-in {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: .7s;
}
.fade-in-fast {
  opacity: 1;
  animation-name: fadeInOpacity;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-duration: .3s;
}

@keyframes fadeInOpacity {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* end generic */

/* navigation */
nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: 100%;

}
.navigation {
  display: flex;
  flex-direction: column;
}
nav a {
  margin: 0.25em 0;
  padding: 0.25em 0.75em;
}
nav .signup.button {
  display: none;
}
/* switch to hamburger on mobile */
.navbar-toggle {
  padding: 0.8em;
  cursor: pointer;
  align-self: flex-end;
}
.peekaboo {
  display: none;
}
.active {
  align-self: flex-end;
}
@media screen and (min-width: 800px)  {
  nav {
    align-items: flex-end;
    padding: 0.5em 1em;
  }
  .navbar-toggle {
    display: none;
  }
  .peekaboo {
    display: flex;
    align-self: flex-end;
  }
  .navigation a:not(.button):hover {
    color: #dc9804
  }
  .navigation {
    display: flex;
    flex-direction: row;
    text-align: right;
    align-items: center;
  }
  nav .signup.button {
    display: unset;
  }
}
/* end navigation */

/* LAYOUT */
@media screen and (max-width:799px) {
  #animation, #lockWidgetWrapper {
    display: none;
  }
}

#animation, #hero-animation, #lockWidgetWrapper, #lockWidgetTemplate {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
}

#animation, #lockWidgetWrapper, #lockWidgetTemplate {
  z-index: 1;
}

#lockWidgetWrapper {
  z-index: 10;
}

path.animate {
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash 1s linear;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

path.animate4000 {
  stroke-dasharray: 4000;
  stroke-dashoffset: 0;
  animation: dash4000 2.5s linear;
}

@keyframes dash4000 {
  from {
    stroke-dashoffset: 4000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* force every element to be higher than the canvas */
h1, h2, h3, h4, h5, h6, span, a, p, ul, pre, .carousel, strong, em, small, aside, .divider, svg.logo, header nav .peekaboo, img {
  z-index: 100;
  position: sticky;
}
/* Hide snakk animation from hero section objects background */
header nav .peekaboo, header .hero .divider, header .hero svg.logo, header .hero h1, header .hero .hero-about > p  {
  background-color: #1D2F3B;
}

header {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #1D2F3B;
}
.hero {
  margin: auto;
  display: flex;
  justify-content: center;
  margin: 1rem 3rem;
}

.hero .logo {
  max-width: 17.5rem;
}

@media screen and (max-width: 799px) {
  .hero .logo {
    max-width: 15rem;
  }
}

.headline {
  color: #38b3f9;
  font-weight: 400;
}

.hero h1 {
  font-weight: 400;
  font-size:2rem;
  margin: 0;
}

h1.headline {
  margin-bottom: 2rem;
  display: inline-block;
}

.hero-main {
  padding: 3rem 1rem;
  margin-bottom: 3rem;
}
.hero-about {
  max-width: 21.5rem;
  display: flex;
  align-items: center;
}
.hero-about p {
  line-height: 1.4;
  font-weight: 300;
}

.hero .divider {
  width: 7px;
  background-color: transparent;
  background-image: linear-gradient(to bottom,
   #DEE2E600,#DEE2E6, #DEE2E600);
   margin: 2rem;
}
@media screen and (min-width: 750px) and (max-width: 1054px) {
  .hero .logo {
    max-width: 12rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero-about {
    max-width: 19rem;
  }
}
@media screen and (max-width: 749px) {
  .hero {
    flex-direction: column;
  }
  .hero-main {
    margin: 0 auto;
    padding: 0;
  }
  .hero .logo {
    max-width: 100%;
  }
  .hero h1 {
    font-size: 1.7rem;
  }
  h1.headline {
    margin-bottom: 1rem;
  }
  .hero .divider {
    height: 7px;
    width: 100%;
    margin: 2rem auto;
    background-image: linear-gradient(to right,
   #DEE2E600,#DEE2E6, #DEE2E600);
  }
  .hero-about {
    margin: auto;
    padding-bottom: 2rem;
  }
}

.text-container {
  max-width: calc(1100px + 3rem);
  margin: auto;
  padding: 0 1.5rem;
}

hr {
  height: 1px;
  color: #DEE2E6;
  background-color: #DEE2E6;
  border: none;
}

.feature-title {
  display: inline-block;
  margin-bottom: 2rem;
}

.feature-title.animate-start h1 {
  animation-name: fadeInLeft;
  opacity: 0;
  animation-delay: 0.3s;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-50%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

section h1 {
  margin-bottom: 0;
  padding: 0 2rem 0 1rem;
}

section h1 + hr {
  margin-top: 1rem;
  border-bottom: 1px solid #DEE2E6;
}

.feature-title.animate-start h1 + hr {
  transform-origin: top left;
  animation-name: growFromLeft;
  animation-delay: 0.8s;
  animation-timing-function: ease-in;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}


@keyframes growFromLeft {
  0% { transform: scale(0, 1);}
  100% { transform: scale(1, 1); }
}


.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: auto;
  margin-bottom: 3rem;
  align-items: flex-start;
  justify-content: center;
}

.flex-row .column {
  display: flex;
  flex-direction: column;
}

.flex-row h3, .flex-row h2.size-remapped {
  margin-top: 0;
}

.flex-row .column > div:nth-child(2) {
  margin-top: 2.5rem;
}

@media screen and (max-width: 1037px) {
  .flex-row .column {
    max-width: 300px;
  }
}

@media screen and (max-width: 663px) {
  .flex-row .column {
    display: contents;
  }
  .flex-row .column img {
    order: 2;
    margin: 2rem;
    padding: 0 1rem;
  }
  .flex-row .column > div:nth-child(2) {
    order: 3;
    margin-top: 0;
  }
}

.badge-target {
  background-color: rgb(45, 45, 45);
  border-radius: 20px;
  padding: 0 0.5rem 0.25rem;
}
.callout {
  margin: auto;
  max-width: 1000px!important;
  padding: 0 1rem;
}
.callout hr {
  height: 7px;
  background-color: transparent;
  background-image: linear-gradient(to right,
   #DEE2E600,#DEE2E6, #DEE2E600);
   margin: 2.5rem auto;
}

.callout.animate-start hr{
  animation-name: widthScale;
  animation-delay: 0.3s;
  animation-timing-function: ease-out;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.callout.animate-start p, .callout.animate-start h2 {
  animation-name: fadeInOpacity;
  animation-delay: 0.2s;
  animation-timing-function: ease-in;
  animation-duration: .5s;
  animation-fill-mode: both;
}

@keyframes widthScale {
  0% { width: 0%; }
  100% { width: 100%; }
}

@media screen and (max-width: 567px) {
 .callout {
    margin: auto !important;
    padding: 2rem 1rem;
  }
}

/* fancy-schmancy code display */
/* CODE coloring */

.code-snippet {
  font-size: .9em;
   color: #ccc;
   background: none;
   font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
   text-align: left;
   word-spacing: normal;
   word-break: normal;
   word-wrap: normal;
   line-height: 1.5;

   -moz-tab-size: 4;
   -o-tab-size: 4;
   tab-size: 4;

   -webkit-hyphens: none;
   -moz-hyphens: none;
   -ms-hyphens: none;
   hyphens: none;

   height: 225px;
}

@media screen and (min-width: 1100px) {
  .code-snippet {
    height: 250px;
  }
}

code[class*="language-"],
pre[class*="language-"] {
    font-size: .9em;
   color: #ccc;
   background: none;
   font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
   text-align: left;
   white-space: pre;
   word-spacing: normal;
   word-break: normal;
   word-wrap: normal;
   line-height: 1.2;

   -moz-tab-size: 2;
   -o-tab-size: 2;
   tab-size: 2;

   -webkit-hyphens: none;
   -moz-hyphens: none;
   -ms-hyphens: none;
   hyphens: none;
}

 /* Code blocks */
pre[class*="language-"] {
   padding: 0em;
   margin:  0;
   overflow: auto;
}

.code-snippet,
:not(pre) > code[class*="language-"],
pre[class*="language-"] {
  background: #2d2d2d;
}

 /* Inline code */
:not(pre) > code[class*="language-"] {
  padding: .1em;
  border-radius: .3em;
  white-space: normal;
}

.token.comment,
.token.block-comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #999;
}

.token.punctuation {
  color: #ccc;
}

.token.tag,
.token.attr-name,
.token.namespace,
.token.deleted {
  color: #e2777a;
}

.token.function-name {
  color: #6196cc;
}

.token.boolean,
.token.number,
.token.function {
  color: #f08d49;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
  color: #fbaf0b;
}

.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
  color: #38b3f9;
}

.token.string,
.token.char,
.token.attr-value,
.token.regex,
.token.variable {
  color: #7ec699;
}

.token.operator,
.token.entity,
.token.url {
  color: #67cdcc;
}

.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}

.token.entity {
  cursor: help;
}

.token.inserted {
  color: green;
}

/* END fancy-schmancy code display */

#user-data-safety {
  display: flex;
  flex-direction: column;
  margin: auto;
  border-radius: 15px;
  background-image: linear-gradient(#DEE2E6, #DEE2E600)
}
#user-data-safety ul {
  margin: auto;
  font-size: 1.2rem;
  padding: 0 2rem;
}
#user-data-safety h2 {
  padding: 2.5rem;
}

#testimonials {
  background-color: #465865;
}

#testimonials h1 {
  color: white;
  font-weight: 400;
}

/* Testimonials */
.carousel-wrapper {
  width: 550px;
  max-width: 80vw;
  margin: auto;
  overflow: hidden;
}

.carousel {
  position: relative;
  overflow-x: hidden;
  height: 17rem;
}

@media screen and (max-width: 528px) and (min-width: 410px) {
  .carousel {
    height: 22rem;
  }
  .speech-bubble {
    padding-bottom: 4em !important;
  }
  .sig {
    margin-top: -3.5em !important;;
  }
}

@media screen and (max-width: 409.98px) {
  .carousel {
    height: 30rem;
  }
  .speech-bubble {
    padding-bottom: 4em !important;
  }
  .sig {
    margin-top: -5em !important;;
  }
}

:root {
  --testimonial-duration: 40s;
}

.carousel-nav {
  display: inline-block;
  background-color: #98A1A9;
  margin: 0.2em;
  width: 0.7em;
  height: 0.7em;
  border-radius: 100em;
  animation: dot-color var(--testimonial-duration) ease-in-out infinite;
}

.carousel-nav:nth-child(1) {
  animation-delay: -2s;
}

.carousel-nav:nth-child(2) {
  animation-delay: Calc(var(--testimonial-duration) * 1 / 5 - 2s);
}
.carousel-nav:nth-child(3) {
  animation-delay: Calc(var(--testimonial-duration) * 2 / 5 - 2s);
}
.carousel-nav:nth-child(4) {
  animation-delay: Calc(var(--testimonial-duration) * 3 / 5 - 2s);
}
.carousel-nav:nth-child(5) {
  animation-delay: Calc(var(--testimonial-duration) * 4 / 5 - 2s);
}

@keyframes dot-color {
  0% {background-color: #98A1A9;}
  4%, 20% {background-color: #DEE2E6;}
  24%, 100% {background-color: #98A1A9;}
}

.carousel > .testimonial-wrapper {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  height: 100%;
  width: 550px;
  max-width: 80vw;
  animation: carousel var(--testimonial-duration) ease-in-out infinite;
  transform: translateX(110%);
}

@media screen and (max-width: 567px) {
  .carousel > .testimonial-wrapper {
    align-items: center;
    width: 100%;
  }
}

.carousel > .testimonial-wrapper:nth-child(1) {
  animation-name: carousel;
  animation-duration: var(--testimonial-duration);
  animation-iteration-count: infinite;
  animation-delay: -2s;
  transform: translateX(0%);
}
.carousel > .testimonial-wrapper:nth-child(2) {
  animation-delay: Calc(var(--testimonial-duration) * 1 / 5 - 2s);
}
.carousel > .testimonial-wrapper:nth-child(3) {
  animation-delay: Calc(var(--testimonial-duration) * 2 / 5 - 2s);
}
.carousel > .testimonial-wrapper:nth-child(4) {
  animation-delay: Calc(var(--testimonial-duration) * 3 / 5 - 2s);
}
.carousel > .testimonial-wrapper:nth-child(5) {
  animation-delay: Calc(var(--testimonial-duration) * 4 / 5 - 2s);
}

@keyframes carousel {
  0% { transform: translateX(110%); }
  /* Second percentage number here represents 100% / N, where N is the number of testimonials */
  5.5%, 20% { transform: translateX(0); }
  25.5%, 100% { transform: translateX(-110%); }
}

.speech-bubble {
  background-color: #F0F2F4;
  padding: 1em 1.5em;
  border-radius: 1em 1em 1em 0;
  padding-bottom: 2.5em;
}

.speech-bubble p {
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0;
}

.sig {
  margin-top: -3em;
  margin-left: 3em;
  display: flex;
  align-items: top;
  justify-content: space-between;
  font-size: 0.8rem;
}
.sig p {
  margin-right: 1.2em;
}

.avatar {
  height: 70px;
  border-radius: 100px;
  margin-right: 2em;
}
/* END Testimonials */

#benefits {
  max-width: 970px;
  margin: auto;
  padding: 0 1rem;
}
#benefits > div {
  padding: 1.5rem 1rem;
}
#benefits h3, #benefits h2.size-remapped {
  font-weight: 400;
  margin-bottom: 0.5rem;
  display: inline-block;
}
#benefits ul{
  margin-left: 0.5rem;
}

#benefits-get-started {
  padding: 0!important;
  margin-left: 50%;
  margin-top: -1rem;
}

@media screen and (max-width: 500px) {
  #benefits-get-started {
    padding: 0!important;
    display: flex;
    margin: 1rem auto;
  }
}

#pricing .text-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 2rem;
}
#pricing h2 {
  max-width: calc(1100px + 4rem);
  margin: 4rem auto 1rem auto;
  border-radius: 15px;
  padding: 2rem;
  background-image: linear-gradient(#DEE2E6, #DEE2E600);
}
#pricing img {
  max-width: min(100%, 800px);
  border-radius: 15px;
  margin: auto;
  margin-top: 2rem;
  box-shadow: 0 2px 5px #1D2F3B1A;
}
#pricing img.animate-start {
  animation-name: fadeInOpacity;
  animation-delay: 0.3s;
  animation-timing-function: ease-in;
  animation-duration: 0.7s;
  animation-fill-mode: both;
}

#pricing ul, #SLAs ul {
  font-size: 1.2rem;
}
#pricing ul li, #SLAs ul li {
  margin-top: 0.3rem;
}

#SLAs .text-container {
  margin: 2rem auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
#SLAs ul {
  margin: auto;
}


/* Contact Aside */
.contact-group {
  position: sticky;
  bottom: 1em;
  align-self: flex-end;
  margin-bottom: 1em;
  max-height: 0px;
}

.contact-button {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #fbaf0b;
  color: #1D2F3B;
  width: 3rem;
  height: 2.6rem;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
  box-shadow: 0 2px 5px #1D2F3B1A;
  cursor: pointer;
  z-index: 10000;
}

.contact-group.expanded .contact-button svg {
  display: none;
}
.contact-group .contact-button .close-contact-button {
  display: none;
}
.contact-group.expanded .contact-button .close-contact-button {
  display: block;
  color: white;
}

.contact-button:hover {
  background-color: #DC7100;
}

.contact-container {
  transform-origin: bottom right;
  max-height: 0;
  max-width: 0;
  /*
  height: 0;
  width: 0;
  opacity: 0; */
  position: relative;
  /* bottom: 7.0rem;
  */
  top: -1rem;
  right: 2rem;
  /* display: flex; */
  flex-direction: column;
  background-color: white;
  border-style: none;
  border: 1px #fbaf0b;
  border-radius: 5px;
  border-top-left-radius: 35px;
  border-bottom-right-radius: 35px;
  box-shadow: 0 2px 5px #1D2F3B1A;
  direction: rtl;
  overflow: hidden;
  transition: transform 1s, max-height 1s, max-width 1s;
  animation-duration: reverse;
}

.contact-container * {
  direction: ltr;
}

@keyframes contactGrow {
  0% {
    top: -1rem;
    right: 2rem;
    border-style: none;
  }
  10% {
    right: 0.5rem;
  }
  50% {
    top: -5.7rem;
    right: 0.5rem;
    border-style: solid;
    max-height: 5.8rem;
  }
  100% {
    right: 0.5rem;
    top: -5.7rem;
    border-style: solid;
    max-height: 20rem;
    max-width: 15rem;
  }
}

.contact-group.expanded .contact-container {
  animation: contactGrow 1s both;
  animation-duration: normal;
}

.contact-group.collapsed .contact-container {
  animation-duration: reverse;
}

.contact-info {
  padding: 0.2em 2em 1em 2em;
  overflow: hidden;
}
.contact-info a {
  width: 300px;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  margin: 0.3em 0;
}
.contact-info a:hover {
  color: #fbaf0b;
}
.contact-info .email {
  font-size: 0.8em;
}
.contact-info a > b, .contact-info .email > svg, .contact-info * > span {
  padding-right: 0.25em;
}

.contact-info img {
  max-height: 1.5rem;
}
.contact-info svg {
  color: #38b3f9
}
/* END Contact Aside */

footer {
  background-color:#1D2F3B;
  color:#f1f4f5;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1.2em;
}

.footer__title {
  font-size: 20px;
  font-weight: 700;
}
.footer__items {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.footer-nav {
  flex-grow:1;
  display:flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

.footer-nav a {
  border-left: 1px solid #f1f4f5;
}
.footer-nav a:hover {
  color: #fbaf0b;
}
.footer-nav a:nth-child(1) {
  border: none;
}

footer li {
  margin-top: 0.75rem;
}

@media screen and (max-width: 567px) {
  .footer-nav {
    display: flex;
    flex-direction: column;
    margin: 1em 0;
  }
}

.hide-overflow {
  overflow: hidden;
}

@media screen and (prefers-reduced-motion: reduce) {
  .animate-start {
    animation: none !important;
  }
}
