@charset "UTF-8";
:root {
  --max-width: 1200px;
  --top-height: calc(100vh - 85px);

  /* THEME COLORS */
  --accent-color-1: #39a745;
  --accent-color-2: #215daa;

  /* BACKGROUND */
  --background: white;
  --background-alt: #f5f5f5;
  --border-color: #c8e0d7;

  /* BUTTON COLORS */
  --button-color: #3cb42d;
  --button-text: white;
  --button-hover-color: #43d630;
  --button-hover-text: white;

  /* FONTS */
  --font-default: "Lato", Arial, Helvetica, sans-serif;
  --font-heading: "Lato", Impact, Arial, Helvetica, sans-serif;

  /* TEXT COLOR */
  --text-default: #333;
  --text-default-dark: whitesmoke;

  /* SEARCH BOX */
  --searchbox-background: white;
  --searchbox-border: 1px solid lightgray;
  --searchbox-text: black;

  /* FOOTER */
  --footer-background: black;
  --footer-text: whitesmoke;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-default);
  width: 100%;

  /* CUSTOMIZE */
  background: var(--background);
  color: var(--text-default);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: bold;
}

a,
.button {
  cursor: pointer;
  text-decoration: none;
}

p {
  line-height: 1.7;
}

/* Quick classes */

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #e1e1e1;
}

hr.spacer {
  border: none;
  margin: 25px;
}

/* HEADER */

header {
  width: 100%;
  background: none;
}

header::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background: linear-gradient(to right, #34c1f5, #327ed9);
}

header .navbar {
  padding: 15px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.navbar-site-title {
  display: none;
}

.navbar-logo {
  flex: 1;
}

.navbar-logo img {
  width: auto;
  max-height: 50px;
}

/* DEFAULTS */

#content {
  margin: auto;
  width: 100%;
}

section {
  padding: 100px 30px;
}

section#features,
section#tools {
  display: flex;
  min-height: 100vh;
  align-items: center;
  text-align: center;
}

section > .container {
}

section.alt {
  background: var(--background-alt);
}

.container {
  width: 100%;
  margin: auto;
  max-width: var(--max-width);
}

.section-heading {
  font-size: 26pt;
  margin: 0 0 50px;
  font-weight: 900;
}

.grid,
.list {
  display: grid;
  gap: 15px;
}

.flex {
  display: flex;
  gap: 15px;
}

.btn {
  border: none;
  /* width: auto; */
  display: inline-block;
  padding: 8px 20px;
  background: var(--button-color);
  border: none;
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--button-text);
  /* border-radius: 5px; */
  transition: all 0.2s;
  font-weight: bold;
  text-align: center;
}

.btn:hover {
  background: var(--button-hover-color);
  color: var(--button-hover-text);
}

/* CTA */

header .cta {
  padding: 10px 20px;
}

section .cta {
  padding: 10px 40px;
  font-size: 40pt;
  line-height: 1.5;
}

.cta-caption {
  font-size: 10pt;
  color: gray;
}

a {
  color: var(--accent-color-2);
}

a:hover {
  color: var(--accent-color-1);
}

/* TOP */

section#top {
  display: flex;
  align-items: center;
  min-height: var(--top-height);
}

section#top > .container {
  max-width: 800px;
}

.top-heading {
  margin: 0 auto 10px;
  font-size: 28pt;
  font-weight: 900;
}

.top-subheading {
  font-size: 14pt;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-cta {
  margin: 50px auto 0;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

/* STEPS */
ul.steps {
  display: none;
  width: 100%;
  flex-direction: row;
  padding: 0;
  /* margin: 30px auto 0; */
  justify-content: center;
}

ul.steps li {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: darkslategray;
}

.steps .step-number {
  display: flex;
  background: #ccc;
  border-radius: 100%;
  font-weight: bold;
  font-size: 14pt;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 80px;
  position: relative;
}

.steps .step-number i {
  margin-bottom: 0;
  font-size: 35px;
}

.steps .step-number::after {
  content: "";
  position: absolute;
  background: #ccc;
  width: 160px;
  height: 5px;
  right: 50px;
}

ul.steps .step:first-child .step-number::after {
  display: none;
}

.step.steady .step-number {
  background: var(--accent-color-1);
}

.step.active .step-number {
  animation-name: blink;
  animation-duration: 2s;
  background: var(--accent-color-1);
  animation-iteration-count: infinite;
}

.step.active .step-text {
  color: var(--accent-color-1);
}

.step.steady .step-text {
  color: var(--accent-color-1);
}

@keyframes blink {
  0% {
    background-color: #3cb42d;
  }
  50% {
    background-color: #72f062;
  }
  100% {
    background-color: #3cb42d;
  }
}

/* FEATURES */

.grid-features {
  gap: 50px;
}

.grid-features .grid-item {
  font-size: 14pt;
  padding: 0 30px;
}

.grid-features .grid-item:last-child {
  border: none;
}

.feature-icon {
  max-height: 60px;
}

.feature-heading {
  display: flex;
  min-height: 55px;
  font-weight: bold;
  /* color: var(--accent-color-2); */
  align-items: center;
  justify-content: center;
}

.feature-text {
  font-size: 12pt;
}

/* TOOLS */

.tools-wrapper {
  margin: auto;
  /* max-width: 1000px; */
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.main-window {
  margin: 20px auto;
  max-width: 80%;
}

.main-window img {
  width: 100%;
  max-height: 500px;
  border-radius: 5px;
  border: 1px solid #d9dfe8;
  box-shadow: 1px 1px 10px 1px rgb(7 71 134 / 14%);
}

section#tools p {
  margin-left: auto;
  margin-right: auto;
  font-size: 14pt;
  max-width: 800px;
}

.tools-group {
  display: inline-flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  top: 0;
  min-width: 400px;
  justify-content: center;
}

.tools-group .tools-item {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  gap: 7px;
  padding: 15px 25px;
  background: white;
  /* border: 2px solid var(--border-color); */
  min-width: 350px;
  justify-content: center;
  /* border-radius: 10px; */
  box-shadow: 1px 1px 15px 2px rgb(7 71 134 / 34%);
}

.tools-item .tool-icon {
  height: 30px;
}

/* BOTTOM GRID */

/* section#bottom > .container {
max-width: 1000px;
} */

.grid-outro {
  gap: 50px;
  justify-content: center;
  text-align: center;
}

.sysreq-heading {
  font-weight: bold;
  font-size: 20pt;
  margin-bottom: 20px;
  color: var(--accent-color-2);
}

.sysreq ul {
  margin: 0;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  gap: 10px;
  list-style: none;
}

.sysreq ul > li {
  color: slategray;
}

.sysreq ul > li .reqlabel {
  color: darkslategray;
  font-weight: bold;
}

.outro-text {
  font-size: 16pt;
}

.outro .section-heading {
  margin-bottom: 0;
}

.bottom-cta {
  margin: 30px 0 10px;
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}

/* FOOTER */

footer {
  padding: 20px 30px 20px;
  font-size: 10pt;

  /* CUSTOMIZE */
  background: var(--footer-background);
  color: var(--footer-text);
}

footer > .container {
  display: flex;
  flex-direction: column;
  justify-items: center;
  gap: 15px;
}

.footer-menu {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 30px;
}

footer a,
footer a:hover {
  /* CUSTOMIZE */
  color: var(--footer-text);
}

/* Mobile first queries */

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
  ul.steps {
    display: inline-flex;
  }

  section .cta {
    min-width: 500px;
  }
  .grid-features {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {
  .grid-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .grid-features .grid-item {
    border-right: 1px solid var(--border-color);
  }

  .tools-wrapper {
    margin: auto;
    /* max-width: 1000px; */
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .tools-group {
    position: absolute;
  }

  .tools-group.left {
    left: 0;
  }

  .tools-group.right {
    right: 0;
  }

  .tools-group.left .tools-item:nth-child(odd),
  .tools-group.right .tools-item:nth-child(even) {
    justify-self: left;
    margin-right: auto;
  }

  .tools-group.left .tools-item:nth-child(even),
  .tools-group.right .tools-item:nth-child(odd) {
    justify-self: right;
    margin-left: auto;
  }

  .grid-outro {
    grid-template-columns: 30% 1fr;
    gap: 50px;
    text-align: left;
  }

  .outro {
    border-left: 1px solid var(--border-color);
    padding-left: 50px;
  }
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}


/* THANK YOU PAGE */

.thankyoupage {
   position: relative;
}

.thankyoupage #content section {
   padding: 75px 0;
}

.thankyoupage .heading-container {
   display: flex;
   justify-content: center;
   align-items: center;
   height: 55px;
   margin-bottom: 25px;
}

.thankyoupage .heading-container h1 {
   margin: 0;
   position: absolute;
}

.thankyoupage .heading-container h1:nth-child(1) {
   animation-name: disappear;
   animation-duration: 0.2s;
   display: block;
   animation-delay: 6s;
   animation-fill-mode: forwards;
   opacity: 1;
}

@keyframes disappear {
   from {
      opacity: 1;
   }

   to {
      opacity: 0;
   }
}

.thankyoupage .heading-container h1:nth-child(2) {
   animation-name: appear;
   animation-duration: 0.2s;
   display: block;
   animation-delay: 6.5s;
   animation-fill-mode: forwards;
   opacity: 0;
}

@keyframes appear {
   from {
      opacity: 0;
   }

   to {
      opacity: 1;
   }
}

.thankyoupage i {
   margin-bottom: 35px;
   display: block;
   font-size: 13px;
}


.thankyoupage .download-progress .step.loading .step-number {
   animation-name: loading;
   animation-duration: 1.5s;
   background: var(--accent-color-1);
   animation-iteration-count: 3.3;
}

@keyframes loading {
   0%   {background-color: #39a745;}
   50%  {background-color: #72f062;}
   100%   {background-color: #39a745;}

}

.thankyoupage .download-progress .step.loading .step-text {
   animation-name: loading-text;
   animation-duration: 0.2s;
   display: block;
   animation-delay: 6.5s;
   animation-fill-mode: forwards;
}

@keyframes loading-text {
   from {
      color: #000;
   }

   to {
      color: var(--accent-color-1);
   }
}

@keyframes loading {
   0%   {background-color: #39a745;}
   50%  {background-color: #72f062;}
   100%   {background-color: #39a745;}

}

.thankyoupage .download-progress .step.last .step-number {
   animation-name: finish;
   animation-duration: 0.2s;
   background: #ccc;
   animation-delay: 6.8s;
   animation-fill-mode: forwards;
}

.thankyoupage .download-progress .step.last .step-text {
   animation-name: loading-text;
   animation-duration: 0.2s;
   display: block;
   animation-delay: 6.8s;
   animation-fill-mode: forwards;
}

@keyframes loading-text {
   from {
      color: #000;
   }

   to {
      color: var(--accent-color-1);
   }
}

@keyframes finish {
   from {
      background: #cccc;
   }

   to {
      background: #39a745;
   }
}

.thankyoupage .download-features {
   background: #f4f4f4;
   border-radius: 25px;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
   height: auto;
   animation-name: full;
   animation-duration: 0.2s;
   animation-delay: 6.5s;
   animation-fill-mode: forwards;
   height: 0;
   overflow: hidden;
}

.thankyoupage .download-features .download-container {
   margin-bottom: 25px;
   height: 500px;
   top: 0;
   transition: 0.2s;
   padding: 25px;
   opacity: 1;
   display: block;
}

@keyframes full {
   0% {
      height: -40px;
      opacity: 0;
   }

   100% {
      height: 500px;
      opacity: 1;
   }
}

.thankyoupage .download-features .download-container {
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center;

}

.thankyoupage .download-features img {
   width: 100%;
   max-width: 550px;
   border-radius: 15px;
}

/* ARROWS */

/* TOP RIGHT */
.arrow-one {
   position: absolute;
   right: 25px;
   width: 150px;
   margin-left: auto;
   top: 25px;
   display: flex;
   flex-direction: column;
   align-items: center;
   opacity: 0;
   animation: addpop;
   animation-duration: 8s;
   animation-delay: 6.9s;
}

@keyframes addpop {
   0% {
      opacity: 0;
   }

   2% {
      opacity: 1;
   }

   100% {
      opacity: 1;
   }
}


.arrow-one img.arrow {
   width: 40px;
   top: 0px;
   position: relative;
   animation-name: upanddown;
   animation-duration: 1s;
   animation-delay: 6.8s;
   animation-iteration-count: infinite;
   animation-timing-function: ease-in-out;
}

@keyframes upanddown {
   0% {
      top: 0px;
   }

   50% {
      top: -10px;
   }

   100% {
      top: 0px;
   }
}

.arrow-one img.click {
   width: 80px;
}

.overlay {
   position: absolute;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   backdrop-filter: blur(2px);
   z-index: 1;
   animation: addbg;
   animation-duration: 8s;
   animation-delay: 15.5s;
   animation-fill-mode: forwards;
   visibility: hidden;
   display: flex;
   align-items: center;
}

.overlay .arrow-two {
   position: relative;
}

.overlay img {
   position: relative;
   transform: rotate(90deg);
   left: 120px;
   top: 0;
   bottom: 0;
   display: block;
   animation: leftandright;
   animation-duration: 1s;
   animation-iteration-count: infinite;
   margin: auto 0;
}


@keyframes leftandright {
   0% {
      left: 130px
   }

   50% {
      left: 120px;
   }

   100% {
      left: 130px;
   }
}
@keyframes addbg {
   from {
      visibility: hidden;
   }

   to {
      visibility: visible;
   }
}

