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

  /* THEME COLORS */
  --accent-color-1: #098ccf;
  --accent-color-2: #49d7d6;

  /* BACKGROUND */
  --background: white;
  --header-background: white;
  --background-alt: #f0f2f7;

  /* BUTTON COLORS */
  --button-color: #09be09;
  --button-text: white;
  --button-hover-color: #049f04;
  --button-hover-text: white;

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

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

  /* FOOTER */
  --footer-background: white;
  --footer-text: #191919;
}

/* NORMALIZE */

/* Normalize */

html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

body {
  margin: 0;
}

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

audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"], /* 1 */
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

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

td,
th {
  padding: 0;
}

/* STYLE */

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;
}

/* 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: 50px;
}

/* HEADER */

header {
  width: 100%;
  padding: 20px 20px 10px;
}

header > .container {
  /* max-width: 1000px; */
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
 }

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

.navbar-logo {
  flex: 1;
  text-align: left;
}

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

.navbar-item {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  font-size: 10pt;
  font-weight: bold;
}

.browser-logo {
  display: inline-flex;
  align-items: center;
}

.browser-logo-img {
  width: auto;
  max-height: 30px;
}

/* DEFAULTS */

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

section {
  padding: 80px 30px 100px;
}

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

section#subpage {
  padding: 20px 30px 60px;
}

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

.section-heading {
  font-size: 28pt;
}

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

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

/* BUTTON */

div.cta {
  display: flex;
  flex-direction: column;
  align-content: center;
}

.btn {
  background: var(--button-color);
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 140px;
  margin: auto;
  max-width: 600px;
  position: relative;
  text-decoration: none;
  transition: all 0.2s linear;
  width: 100%;
  color: var(--button-text);
  font-size: 30pt;
  text-transform: uppercase;
  font-weight: bold;
  column-gap: 20px;
  z-index: 1;
}


.btn > span {
  font-size: 40pt;
}

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

.btn-caption {
  max-width: 500px;
  font-size: 10pt;
  color: #777;
  margin: 15px auto 20px;
}

.btn-caption a {
  color: #777;
  text-decoration: underline;
}

.btn-caption a:hover {
  color: #444;
}

.intro-grid {
  text-align: left;
  font-size: 14pt;
  column-gap: 20px;
  row-gap: 25px;
}

.intro-grid .grid-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
}

.intro-grid .grid-item > span {
  color: #999999;
}

#steps {
  /* background: var(--background-alt); */
  padding: 20px;
  /* color: white; */
}

.steps-grid {
  max-width: 800px;
  flex-direction: column;
  margin: auto;
  align-items: center;
  gap: 30px;
}

.steps-grid .grid-item {
  flex: 1;
  display: flex;
  text-align: center;
  gap: 15px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.step-num {
  display: flex;
  border: 2px solid var(--accent-color-1);
  border-radius: 50%;
  height: 60px;
  line-height: 60px;
  width: 60px;
  align-items: center;
  justify-content: center;
}

.step-num span {
  font-size: 20pt;
  color: var(--accent-color-1);
}

.step-text {
  line-height: 1.25;
  font-size: 14pt;
}

/* TOP */

section#top {
  min-height: var(--top-height);
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 0;
}

section#top > #intro {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  padding: 60px 40px;
  flex-direction: column;
  background: #f0f2f7;
}

.top-heading {
  font-size: 40pt;
  margin: auto;
}

.top-caption {
  font-size: 16pt;
  line-height: 1.75;
  margin: 15px auto;
}

/* BROWSER */

section#browser {
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-size: 14pt;
  background: linear-gradient(to bottom,  transparent 200px, var(--background-alt) 200px) no-repeat;
  background-size: 100% calc(100% - 250px);
}

.browser-img {
  width: 100%;
  max-width: 800px;
  margin: 30px auto 40px;
}

.browser-text {
  margin: 0 auto 50px;
  max-width: 900px;
  line-height: 2;
}

/* HOW TO */

section#howitworks {
  border-bottom: 1px solid var(--background-alt);
}

.how-grid {
  gap: 50px;
}

.how-grid .grid-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-grid .step-img {
  margin: auto;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  border: 1px solid #d3e2fd;
}

.how-grid .step-text {
  font-size: 12pt;
}

/* FEATURES */

.features-grid {
  text-align: center;
  column-gap: 80px;
}

.features-grid .grid-item {
  display: grid;
  grid-template-rows: 100px auto;
  justify-content: center;
  align-items: start;
  background: white;
  border-radius: 50px;
  padding: 10px 20px 30px;
}

.feature-icon {
  font-size: 50pt;
  color: #098ccf;
  margin: auto;
}

.feature-heading {
  font-size: 18pt;
  margin-bottom: 5px;
}

/* FOOTER */

footer {
  padding: 25px 30px;
  font-size: 12pt;

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

footer > .container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  font-size: 10pt;
}

.footer-menu {
  display: flex;
  gap: 10px;
  justify-content: center;
}

footer hr {
  margin-bottom: 30px;
}

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

.footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* Mobile first queries */

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

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

/* Larger than tablet */
@media (min-width: 750px) {
  header > .container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .btn {
  font-size: 36pt;
  }

  .intro-grid {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    font-size: 14pt;
  }
  
  section#browser {
    background-size: 100% calc(100% - 500px);
}
  
  
  .footer-menu {
    gap: 10px;
  }
}

/* Larger than desktop */
@media (min-width: 1000px) {

  
header > .container {
  padding: 0 10px 15px;
  border-bottom: 1px solid lightgray;
}
  
section#top > #intro {
  border-radius: 20px;
}
  
  .steps-grid {
    margin: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .how-grid {
    grid-template-columns: auto auto;
    justify-content: center;
    }

  .footer-copyright {
    flex-direction: row;
    align-items: flex-start;
  }
  
  footer > .container {
    flex-direction: row-reverse;
    text-align: left;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-end;
  }
  
}

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