*, *::before, *::after {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}
img, svg {
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}

:root {
  --ah-fontfamily-barlow: 'Barlow', sans-serif;
  --ah-fontfamily-opensans: 'Open Sans', sans-serif;

  --ah-color-purple: #746ef0;
  --ah-color-green: #46cc94;
  --ah-color-yellow: #ffa743;
  --ah-color-red: #C93753;
  --ah-color-blue: #68E1FD;
  --ah-color-white: #ffffff;
  --ah-color-font: #1e1e25;
  --ah-color-font-light: #f1f1f8;
  --ah-color-border: #e8e8f5;
  --ah-color-black: #000000;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  color: var(--ah-color-font-light);
  font-family: var(--ah-fontfamily-opensans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  background-color: var(--ah-color-white);
  width:100%;
  min-height:100vh;
}

ul {
  list-style: none;
}
a {
  color: var(--ah-color-font-light);
  text-decoration: none;
}
p {
  margin-bottom: 1rem;
}

h1, h2 {
  font-family: var(--ah-fontfamily-barlow);
  margin-bottom: 1rem;
}
h1 {
  font-size: 3rem;
  font-weight: 300;
}
h2 {
  font-size: 1.625rem;
  font-weight: 500;
}
h5 {
  font-size: 1rem;
  font-weight: 500;
}
.ah-apititle {
  font-size: 2rem;
}
.ah-endpointtitle {
  font-size: 1.5rem;
  color: var(--ah-color-purple);
  margin-top: 2rem;
}
.ah-endpointtitle svg {
  margin-right: 1rem;
}
#ah-docsmenu h2 {
  color: var(--ah-color-red);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0;
}
.ah-spacing-text {
  letter-spacing: 1.25px;
}

main#ah-landing {
  position: relative;
  width: 100%;
  border-bottom: 1px solid #09090a;
  background: #1e1e25;
  background: linear-gradient(135deg, #1e1e25 0%, #101014 100%);
}
main#ah-doc {
  position: relative;
  width: calc(100% - 280px);
  min-height: 100vh;
  margin-left: 280px;
  background-color: #1e1e25;
}

nav#ah-mainmenu {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
nav#ah-mainmenu ul {
  display: flex;
  justify-content: end;
  align-items: stretch;
}
nav#ah-mainmenu ul li {
  display: flex;
  justify-content: end;
  align-items: stretch;
}
nav#ah-mainmenu ul a {
  font-size: 1.125rem;
  line-height: 1;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 200ms ease, background-color 200ms ease;
}
nav#ah-mainmenu ul a svg {
  font-size: 1.5rem;
}
nav#ah-mainmenu ul a:hover {
  color: var(--ah-color-purple);
}
#ah-menuopen {
  font-size: 2rem;
  margin-left: 1rem;
  cursor: pointer;
  display: none;
}
#ah-menuclose {
  font-size: 2rem;
  color: var(--ah-color-font);
  cursor: pointer;
  display: none;
}
aside#ah-docsmenu {
  position: fixed;
  width: 280px;
  height: 100vh;
  left: 0;
  top: 0;
  padding: 1rem;
  border-right: 1px solid #eeeeee;
  background-color: var(--ah-color-font-light);
  overflow-y: auto;
}
aside#ah-docsmenu nav {
  position: relative;
  width: 100%;
}
aside#ah-docsmenu nav ul {
  margin-bottom: 1.5rem;
}
aside#ah-docsmenu nav ul li a {
  font-size: 1rem;
  font-weight: 400;
  color: var(--ah-color-black);
  line-height: 1;
  padding: 0.5rem;
  display: block;
  transition: color 200ms ease;
}
aside#ah-docsmenu nav ul li a:hover {
  color: var(--ah-color-purple);
}

#ah-spot {
  width: 96%;
  max-width: 960px;
  min-height: 50vh;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
#ah-spot-404 {
  width: 96%;
  max-width: 960px;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.ah-spotcol {
  width: 50%;
  text-align: right;
}
.ah-spotcol img {
  width: 80%;
}
.ah-p-lead {
  font-size: 1.25rem;
  font-weight: 300;
}
.ah-spotcol p {
  text-align: right;
}
#ah-logo-quixtools {
 color: var(--ah-color-purple);
 font-size: 3rem;
}

section {
  position: relative;
  width: 100%;
}
section .ah-section-container {
  position: relative;
  width: 96%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 0;
}
section .ah-section-container::after {
  content: "";
  height: 0;
  display: block;
  clear: both;
}
.ah-sectionicon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
section#ah-apilist {
  background-color: #1e1e25;
}
section#ah-roadmap {
  color: var(--ah-color-font);
  background-color: #f9f7ff;
}
section#ah-coffee {
  text-align: center;
  background-color: #101014;
}
section#ah-coffee img {
  max-width: 200px;
  margin: 2rem 0 4rem 0;
}
section#ah-contact {
  text-align: center;
  background-color: #1e1e25;
}

#ah-about {
  color: var(--ah-color-font);
  background-color: #f9f7ff;
}
#ah-about a {
  color: var(--ah-color-purple);
}
#ah-about ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 2rem;
}
#ah-about h1 {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
#ah-about h2,
#ah-about h3 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.ah-stage {
  font-size: 0.875rem;
}
.ah-stage code {
  color: var(--ah-color-white);
  margin: 0;
  padding: 1rem;
  border-radius: 0.375rem;
  background-color: #101014;
  display: block;
  overflow: auto;
}
.ah-stage code > span {
  color: var(--ah-color-green);
}
.ah-stage code > em {
  color: #999999;
}

.ah-roadmap-list li {
  position: relative;
  padding: 1rem 2rem;
  border-left: 1px dashed var(--ah-color-font);
}
.ah-roadmap-list li::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: -9px;
  top: 50%;
  border: 4px solid #f9f7ff;
  border-radius: 50%;
  background-color: var(--ah-color-purple);
  display: block;
  transform: translateY(-50%);
}

#ah-apilist table {
  width: 70%;
  margin: auto 0 auto auto;
  font-size: 0.875rem;
}
#ah-apilist table td {
  padding: 0.5rem 1rem;
}
#ah-apilist table td:last-child {
  text-align: right;
}
#ah-apilist table td.ah-apilist-title {
  font-size: 1.125rem;
  text-align: center;
  border-top: 1px solid #101014;
  padding: 1rem 0;
}
#ah-apilist table tr:first-child td.ah-apilist-title {
  border-top: none;
}

#ah-mail {
  color: var(--ah-color-purple);
  padding: 0.5rem 1rem;
  font-weight: 400;
}

footer {
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
  background-color: #1e1e25;
}

.ah-button {
  color: var(--ah-color-white);
  font-family: var(--ah-fontfamily-opensans);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.25rem;
  display: inline-block;
  transition: box-shadow 200ms ease-in-out;
}

.ah-button-yellow {
  color: var(--ah-color-white);
  background-color: var(--ah-color-yellow);
}
.ah-button-yellow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 1);
}

.ah-button svg {
  margin-left: 1rem;
}

.ah-color-purple { color: var(--ah-color-purple); }
.ah-color-green { color: var(--ah-color-green); }
.ah-color-yellow { color: var(--ah-color-yellow); }
.ah-color-red { color: var(--ah-color-red); }
.ah-color-blue { color: var(--ah-color-blue); }

.ah-textleft { text-align: left; }
.ah-textright { text-align: right; }


@media screen and (max-width: 960px) {
  body#ah-menuactive {
    height: 100vh;
    overflow-y: hidden;
  }
  #ah-menuopen {
    display: inline-block;
  }
  #ah-menuclose {
    display: inline-block;
  }
  nav.ah-mainmenu-withtoggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  aside#ah-docsmenu {
    position: absolute;
    left: -300px;
    z-index: 100;
    transition: left 200ms ease;
  }
  #ah-menuactive aside#ah-docsmenu {
    left: 0px;
  }
  main#ah-doc {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 850px) {
  #ah-apilist table {
    width: 96%;
    margin: 0 auto;
  }
  .ah-spotcol {
    width: 80%;
    text-align: center;
  }
  .ah-spotcol p {
    text-align: center;
  }
  .ah-mobile-hidden {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  nav#ah-mainmenu ul a {
    padding: 1rem 0.75rem;
  }
  #ah-apilist table td:last-child:not(#ah-apilist table td.ah-apilist-title) {
    display: none;
  }
}
@media screen and (max-width: 460px) {
  html {
    font-size: 14px;
  }
  nav#ah-mainmenu ul a {
    font-size: 1rem;
  }
  #ah-apilist table {
    font-size: 0.75rem;
  }
  #ah-apilist table td:first-child:not(#ah-apilist table td.ah-apilist-title) {
    display: none;
  }
}
