@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300,500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300..800&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}
img, svg {
  vertical-align: middle;
}
table {
  border-collapse: collapse;
}

:root {
  --qt-fontfamily-barlow: 'Barlow', sans-serif;
  --qt-fontfamily-opensans: 'Open Sans', sans-serif;

  --qt-color-purple: #746ef0;
  --qt-color-green: #46cc94;
  --qt-color-yellow: #ffb443;
  --qt-color-red: #C93753;
  --qt-color-white: #ffffff;
  --qt-color-font: #1e1e25;
  --qt-color-border: #e8e8f5;
}
html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  color: var(--qt-color-font);
  font-family: var(--qt-fontfamily-opensans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  background-color: var(--qt-color-white);
  width:100%;
  min-height:100vh;
}

ul {
  list-style: none;
}
a {
  color: var(--qt-color-font);
  text-decoration: none;
}
p {
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 300;
}
h2 {
  font-size: 1.625rem;
  font-weight: 500;
}
h1, h2 {
  font-family: var(--qt-fontfamily-barlow);
  margin-bottom: 1rem;
}
.qt-sectionicon {
  font-size: 2.5rem;
}
.qt-lead {
  font-size: 1.25rem;
}

main {
  position: relative;
  width: 100%;
  background: #f9f7ff;
  background: linear-gradient(135deg, #f9f7ff 0%, #fff 50%, #f6f3ff 100%);
}
nav {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
nav ul {
  display: flex;
  justify-content: end;
  align-items: stretch;
}
nav ul li {
  display: flex;
  justify-content: end;
  align-items: stretch;
}
nav ul a {
  font-size: 1.125rem;
  line-height: 1;
  padding: 0.75rem 1rem;
  display: inline-block;
  transition: color 200ms ease, background-color 200ms ease;
}
nav ul a svg {
  font-size: 1.5rem;
}
nav ul a:hover {
  color: var(--qt-color-white);
  background-color: var(--qt-color-purple);
}
#qt-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;
}
#qt-spot404 {
  width: 96%;
  max-width: 960px;
  min-height: 70vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.qt-spotcol {
  width: 50%;
  text-align: right;
}
.qt-spotcol img {
  width: 80%;
}
.qt-spotcol p {
  font-size: 1.25rem;
  text-align: right;
}
#qt-logo-quixtools {
 color: var(--qt-color-purple);
}

section {
  width: 100%;
}
section .section-container {
  width: 96%;
  max-width: 1400px;
  margin: 2rem auto;
  padding: 5rem 0;
  text-align: center;
}
section #qt-toolcontainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
section#qt-contact {
  background-color: #faf9fd;
}
.qt-toolbox {
  width: 25%;
  padding: 0 1rem;
}
.qt-toolbox > a {
  text-align: center;
  height: 100%;
  padding: 2rem 1rem;
  border: 1px solid var(--qt-color-border);
  border-radius: 0.5rem;
  display: block;
  transition: box-shadow 200ms ease;
}
.qt-toolbox > a:hover {
  -webkit-box-shadow: 0px 0px 16px 8px rgba(104, 104, 119, 0.05);
  -moz-box-shadow: 0px 0px 16px 8px rgba(104, 104, 119, 0.05);
  box-shadow: 0px 0px 16px 8px rgba(104, 104, 119, 0.05);
}
.qt-toolbox > a > h2 {
  display: block;
}
.qt-toolbox > a > p {
  font-size: 0.875rem;
}
.qt-toolimg {
  width: 64px;
}
#qt-toolbox-iq {
  background-color: var(--qt-color-red);
}
#qt-toolbox-tg {
  background-color: var(--qt-color-green);
}
#qt-toolbox-ah {
  background-color: var(--qt-color-yellow);
}

#qt-mail {
  color: var(--qt-color-purple);
  padding: 0.5rem 1rem;
  font-weight: 400;
}

footer {
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
}

.qt-color-purple { color: var(--qt-color-purple); }
.qt-color-green { color: var(--qt-color-green); }
.qt-color-yellow { color: var(--qt-color-yellow); }
.qt-color-red { color: var(--qt-color-red); }

@media screen and (max-width: 1100px) {
  .qt-toolbox { width: 33%; }
}
@media screen and (max-width: 800px) {
  .qt-spotcol { width: 80%; text-align: center; }
  .qt-spotcol p { text-align: center; }
  .qt-toolbox { width: 50%; margin-bottom: 2rem; }
}
@media screen and (max-width: 512px) {
  nav ul a { font-size:1rem; padding: 0.5rem 0.375rem; }
  .qt-toolbox { width: 100%; margin-bottom: 2rem; }
}