/*
	Theme Name: polykemi-theme
*/
@import 'https://fonts.googleapis.com/css2?family=Roboto&display=swap';
a, body, div, h1, h2, h3, h4, h5, h6, p, span {
  margin: 0;
}

div {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  height: auto;
  max-width: 100%;
}

:root {
  --qte-font-body: "Roboto", sans-serif;
  --qte-font-headings: "Roboto", sans-serif;
}

body {
  font-family: var(--qte-font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--qte-font-headings);
}

.qte-header {
  z-index: 500;
}
.qte-header__left, .qte-header__center, .qte-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qte-header[data-type=sticky] {
  position: sticky;
  top: 0;
}
.qte-header[data-type=fixed] {
  width: 100%;
  position: fixed;
  top: 0;
}
.qte-header[data-background=black] {
  color: #fff;
}
.qte-header[data-animation=none][data-background=white] {
  background: #fff;
}
.qte-header[data-animation=none][data-background=black] {
  background-color: #000;
}
.qte-header[data-animation=none][data-background=translucent] {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(2px) saturate(150%);
          backdrop-filter: blur(2px) saturate(150%);
}
.qte-header[data-animation=fade] {
  -webkit-transition: background-color linear 0.25s, -webkit-backdrop-filter linear 0.25s;
  transition: background-color linear 0.25s, -webkit-backdrop-filter linear 0.25s;
  transition: background-color linear 0.25s, backdrop-filter linear 0.25s;
  transition: background-color linear 0.25s, backdrop-filter linear 0.25s, -webkit-backdrop-filter linear 0.25s;
}
.qte-header[data-animation=fade][data-scroll=top] {
  background-color: rgba(0, 0, 0, 0);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
          backdrop-filter: blur(0px) saturate(100%);
  color: #fff;
}
.qte-header[data-animation=fade][data-scroll=scroll][data-background=white] {
  background-color: #fff;
  color: #000;
}
.qte-header[data-animation=fade][data-scroll=scroll][data-background=black] {
  background-color: #000;
}
.qte-header[data-animation=fade][data-scroll=scroll][data-background=translucent] {
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(2px) saturate(150%);
          backdrop-filter: blur(2px) saturate(150%);
}
.qte-header__inner {
  padding: 5px 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .qte-header[data-width=default] .qte-header__inner {
    width: 100%;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
}
.qte-header__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.qte-header__logo {
  height: 75px;
}
.qte-header__hamburger {
  height: 50px;
  width: 50px;
  background: transparent;
  border: 0;
  color: inherit;
}
.qte-header__hamburger i {
  font-size: 32px;
}

.qte-menu__background {
  height: 100%;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  -webkit-transition: background-color linear 1s, -webkit-backdrop-filter linear 1s;
  transition: background-color linear 1s, -webkit-backdrop-filter linear 1s;
  transition: backdrop-filter linear 1s, background-color linear 1s;
  transition: backdrop-filter linear 1s, background-color linear 1s, -webkit-backdrop-filter linear 1s;
}
.qte-menu[data-state=open] .qte-menu__background {
  -webkit-backdrop-filter: blur(2px) saturate(150%);
          backdrop-filter: blur(2px) saturate(150%);
  background-color: rgba(0, 0, 0, 0.2);
}
.qte-menu[data-state=closed] .qte-menu__background {
  -webkit-backdrop-filter: blur(0px) saturate(100%);
          backdrop-filter: blur(0px) saturate(100%);
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
}
.qte-menu__foreground {
  height: 100%;
  padding: 25px;
  position: fixed;
  top: 0;
  z-index: 1500;
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #fff;
}
.qte-menu[data-side=left] .qte-menu__foreground {
  left: 0;
}
.qte-menu[data-side=right] .qte-menu__foreground {
  right: 0;
}
.qte-menu[data-state=closed] .qte-menu__foreground {
  pointer-events: none;
}
.qte-menu[data-animation=slide] .qte-menu__foreground {
  -webkit-transition: -webkit-transform ease-in-out 1s;
  transition: -webkit-transform ease-in-out 1s;
  transition: transform ease-in-out 1s;
  transition: transform ease-in-out 1s, -webkit-transform ease-in-out 1s;
}
.qte-menu[data-animation=fade] .qte-menu__foreground {
  -webkit-transition: -webkit-filter linear 1s;
  transition: -webkit-filter linear 1s;
  transition: filter linear 1s;
  transition: filter linear 1s, -webkit-filter linear 1s;
}
.qte-menu[data-state=open][data-animation=fade] .qte-menu__foreground {
  -webkit-filter: opacity(1);
          filter: opacity(1);
}
.qte-menu[data-state=closed][data-animation=fade] .qte-menu__foreground {
  -webkit-filter: opacity(0);
          filter: opacity(0);
}
.qte-menu[data-state=open][data-animation=slide][data-side=left] .qte-menu__foreground {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.qte-menu[data-state=closed][data-animation=slide][data-side=left] .qte-menu__foreground {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.qte-menu[data-state=open][data-animation=slide][data-side=right] .qte-menu__foreground {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
.qte-menu[data-state=closed][data-animation=slide][data-side=right] .qte-menu__foreground {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.qte-menu[data-width=default] .qte-menu__foreground {
  width: 400px;
  max-width: calc(100vw - 50px);
}
.qte-menu[data-width=fullscreen] .qte-menu__foreground {
  width: 100vw;
}
.qte-menu__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.qte-menu__link {
  color: inherit;
  text-decoration: none;
}

.qte-footer__inner {
  padding: 25px;
  display: -ms-grid;
  display: grid;
  grid-gap: 12.5px;
  -ms-grid-columns: 1fr 12.5px 1fr 12.5px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) {
  .qte-footer[data-width=default] .qte-footer__inner {
    width: 100%;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
  }
}
.qte-footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.qte-footer__link {
  color: inherit;
  text-decoration: none;
}
.qte-footer__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}