@charset "UTF-8";
:root {
  --max-width: 1200px;

  /* THEME COLORS */
  --accent-color-1: #ffff62;
  --accent-color-2: #0171bd;

  /* BACKGROUND */
  --background: white;
  --background-alt: #0171bd;
  --item-background: white;

  /* HEADER */
  --header-background: white;
  --header-text: #121212;
  --header-text-hover: #0171bd;

  /* BUTTON COLORS */
  --button-color: linear-gradient(180deg, #ffde71 0%, #f7bc78 100%);
  --button-text: black;
  --button-hover-color: black;
  --button-hover-text: white;

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

  /* TEXT COLOR */
  --text-default: #222829;
  --text-default-dark: #ffffff;

  /* FOOTER */
  --footer-background: #000000;
  --footer-text: #ffffff;
}

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

/* 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%;
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--header-background);
}

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

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

.navbar-logo {
  flex: 1;
}

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

#togglemenu {
  display: none;
}

.menu-toggle {
  display: block;
  height: 26px;
  width: 32px;
  top: 17px;
  left: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle .line {
  display: block;
  height: 4px;
  width: 100%;
  border-radius: 10px;
  background: var(--header-text);
}

.menu-toggle .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}

.menu-toggle .line2 {
  transition: transform 0.2s ease-in-out;
}

.menu-toggle .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}

#togglemenu:checked ~ .menu-toggle .line {
  border-radius: 10px;
  background: var(--header-text);
}

#togglemenu:checked ~ .menu-toggle .line1 {
  transform: rotate(45deg);
}

#togglemenu:checked ~ .menu-toggle .line2 {
  transform: scaleY(0);
}

#togglemenu:checked ~ .menu-toggle .line3 {
  transform: rotate(-45deg);
}

.navbar-menu {
  justify-items: flex-end;
  z-index: 9999;
}

.navbar-menu {
  position: absolute;
  width: 100%;
  background: var(--header-background);
  padding: 0 10px;
  text-align: center;
  top: 60px;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.5s;
  right: 0;
  justify-items: center;
}

.navbar-menu .menu {
  display: block;
  list-style: none;
  padding: 0;
}

.navbar-menu .menu .menu-item {
  display: block;
  width: 100%;
  padding: 10px 0;
}

#togglemenu:checked ~ .navbar-menu {
  max-height: 1000px;
}

.navbar-menu .menu .menu-item,
.navbar-menu .menu .menu-item a {
  display: block;
  width: 100%;
  color: var(--header-text);
  font-family: var(--font-heading);
}

.navbar-menu .menu .menu-item a.btn {
  max-width: 300px;
  font-size: 12pt;
  padding: 10px 30px;
  margin: auto;
}

.navbar-menu .menu .menu-item a:hover {
  color: var(--header-text-hover);
}

.navbar-menu .menu .menu-item a.btn:hover {
  color: var(--button-hover-text);
}

/* DEFAULTS */

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

section {
  padding: 60px 30px;
}

section.alt {
  background: var(--background-alt);
  color: var(--text-default-dark);
}

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

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

.section-heading {
  color: var(--accent-color-1);
  font-size: 24pt;
  margin: 0 0 20px;
}

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

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

.btn {
  border: none;
  line-height: normal;
  width: auto;
  display: inline-block;
  padding: 10px 30px;
  background: var(--button-color);
  border: none;
  text-transform: uppercase;
  font-family: var(--font-heading);
  color: var(--button-text);
  border-radius: 50px;
  transition: all 0.2s;
  font-weight: bold;
}

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

/* CTA BUTTONS */

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

section .cta {
  padding: 20px 50px;
  font-size: 20pt;
  margin: 20px auto auto;
  display: inline-flex;
}

/* TOP */

section#top {
  width: 100%;
  padding: 0;
  min-height: var(--top-height);
}

.top-intro {
  padding: 20px 20px;
  text-align: center;
}

.top-heading {
  color: #222829;
  font-size: 40pt;
}

.top-subheading {
  margin: auto;
  color: #707070;
  font-weight: normal;
  max-width: 700px;
}

.top-content {
  background: var(--background-alt);
  color: var(--text-default-dark);
}

.grid-intro {
  /* max-width: 1100px; */
  gap: 0;
  text-align: center;
  justify-items: center;
}

.intro-content {
  padding: 20px;
  align-self: center;
}

.intro-img img {
  width: 400px;
}

/* FEATURES */

.grid-features {
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.grid-features .grid-item {
  border: 1px solid #707070;
  padding: 30px 30px 50px;
  display: grid;
  grid-template-rows: 150px auto 1fr;
  justify-items: center;
  text-align: center;
  gap: 20px;
}

.grid-features .grid-item .feature-img {
  max-width: 100%;
  height: 100%;
}
.grid-features .grid-item .feature-heading {
  margin: auto;
  font-weight: normal;
  font-size: 16pt;
}

.grid-features .grid-item .feature-text {
  color: #707070;
  font-size: 11pt;
  margin: auto;
}

/* SUBPAGE */

.subpage-content a {
  color: var(--accent-color-2);
  text-decoration: underline;
}

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

/* OUTRO */

section#outro .container {
  max-width: 900px;
}

/* 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) {

  section {
    padding: 70px 20px;
  }

  .grid-features {
    grid-template-columns: 1fr 1fr;
  }
}

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

  header {
    position: static;
  }
  .menu-toggle {
    display: none;
  }

  .navbar-menu {
    position: static;
    display: inline-block;
    width: auto;
    height: auto;
    max-height: none;
    background: none;
  }

  .navbar-menu .menu .menu-item {
    width: auto;
    display: inline-block;
    padding: 0 15px;
    font-size: 10pt;
    align-items: center;
  }
  
  .navbar-menu .menu .menu-item:last-child {
    padding-right: 0;
  }

  .navbar-menu .menu .menu-item:hover {
    color: var(--accent-color-1);
  }

  .top-intro {
    padding-bottom: 0;
  }

  .top-heading {
    font-size: 60pt;
  }

  .top-content {
    background: linear-gradient(var(--background) 50px, var(--background-alt) 50px);
  }

  .grid-intro {
    /* max-width: 1100px; */
    grid-template-columns: 60% 1fr;
    /* gap: 50px; */
    text-align: left;
  }

  .intro-content {
    /* padding: 30px 0 30px; */
    margin-top: 50px;
    align-self: center;
  }

  .intro-img {
    align-self: end;
  }

  .intro-img img {
    width: auto;
  }

  .grid-features {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

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