@charset "UTF-8";
/* Quennis CSS framework 
© 2025 Peter Dirk Holleman - All rights reserved. */
* {
  box-sizing: border-box;
  margin: 0;
  scroll-behavior: smooth;
}

@keyframes bump {
  from {
    top: -1rem;
  }
  to {
    top: 0rem;
  }
}

:root {
  --primary-xxl: #fdfeff;
  --primary-xl: #b6caf7;
  --primary-l: #6983b9;
  --primary: #284ea1;
  --primary-d: #1e3567;
  --primary-xd: #071739;
  --success: darkgreen;
  --success-l: green;
  --success-xl: lightgreen;
  --danger: #c70000;
  --action: #ff7300;
  --action-d: #d67600;
  --action-xxl: #ffe5b1;
  --gray: #f8f8f8;
  --dark-gray: #5a5a5a;
  --header-height: 4rem;
  --offset-top: -15rem;
  --q-card-background-color: white;
}

.primary-headers h2,
.primary-headers h3,
.primary-headers h4,
.primary-headers h5,
.primary-headers h6 {
  color: var(--primary);
}

.primary-headers h1 {
  color: var(--primary-xd);
  text-shadow: 0px 0.2px 0.2px black;
}

.q-line-height p, .q-line-height li {
  line-height: 1.75;
}

.q-line-height p, .q-line-height ul {
  padding-bottom: 2rem;
}

.q-line-height li {
  padding-bottom: 0.5rem;
}

.q-line-height h1 {
  font-size: 1.65rem;
}

.q-line-height h2, .q-line-height h3, .q-line-height h4, .q-line-height h5, .q-line-height h6 {
  padding-top: 1rem;
}

@media screen and (min-width: 1200px) {
  .q-narrow {
    align-self: center;
    max-width: 85% !important;
  }
}

@media screen and (min-width: 1600px) {
  .q-narrow {
    align-self: center;
    max-width: 80% !important;
  }
}

@media screen and (min-width: 2400px) {
  .q-narrow {
    align-self: center;
    max-width: 64% !important;
  }
}

html {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, sans-serif;
  font-weight: normal;
  font-size: 16px;
}

.q-font {
  font-family: sans-serif;
}

p {
  line-height: 1.75rem;
}

h1 {
  line-height: 3rem;
}

.q-form {
  width: 100%;
  flex: 1 1 auto;
  max-width: 25rem;
}

.q-input {
  width: 100%;
  font-size: 0.85rem;
  color: var(--primary);
}

@media screen and (min-width: 600px) {
  .q-input {
    min-width: 80%;
  }
}

.q-triangle {
  border-right: 0.7rem solid var(--primary-d);
  border-top: 0.2rem solid transparent;
  border-bottom: 0.4rem solid transparent;
}

.q-pl01 {
  padding-left: 0.1rem;
}

.q-pv02 {
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

.q-mv02 {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}

.q-ph05 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.q-p02 {
  padding: 0.2rem;
}

.q-p05 {
  padding: .5rem;
}

.q-p1 {
  padding: 1rem;
}

.q-pr05 {
  padding-right: 0.5rem;
}

.q-pt05 {
  padding-top: 0.5rem;
}

.q-pt1 {
  padding-top: 1rem;
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .q-ml3l {
    margin-left: 2rem;
  }
}

.q-mb1 {
  margin-bottom: 1rem;
}

@media screen and (max-width: 600px) {
  .center-s {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 auto;
  }
}

.q-w1-5 {
  width: 1.5rem;
  text-align: center;
  display: inline-block;
  flex: 0 0 auto;
}

.q-w2 {
  width: 2rem;
  text-align: center;
  display: inline-block;
  flex: 0 0 auto;
}

.q-w100p {
  width: 100%;
  display: inline-block;
}

.q-td-strong-tb {
  border-top: 2px solid var(--primary) !important;
}

.q-td-strong-bb {
  border-bottom: 2px solid var(--primary) !important;
}

.q-border-radius {
  border-radius: 0.15rem;
}

.q-inline-block {
  display: inline-block;
}

.white-text {
  color: white !important;
}

.gray-text {
  color: var(--gray) !important;
}

.dark-gray-text {
  color: var(--dark-gray) !important;
}

.primary-xxl-text {
  color: var(--primary-xxl) !important;
}

.primary-xl-text {
  color: var(--primary-xl) !important;
}

.primary-l-text {
  color: var(--primary-l) !important;
}

.primary-text {
  color: var(--primary) !important;
}

.success-text {
  color: var(--success) !important;
}

.success-l-text {
  color: var(--success-l) !important;
}

.success-xl-text {
  color: var(--success-xl) !important;
}

.danger-text {
  color: var(--danger) !important;
}

.action-text {
  color: var(--action) !important;
}

.action-d-text {
  color: var(--action-d) !important;
}

.action-xxl-text {
  color: var(--action-xxl) !important;
}

.white {
  background-color: white !important;
}

.gray {
  background-color: var(--gray) !important;
}

.white-border {
  border: 0.05rem solid white !important;
}

.gray-border {
  border: 0.05rem solid var(--gray) !important;
}

.dark-gray-border {
  border: 0.05rem solid var(--dark-gray) !important;
}

.primary-border {
  border: 0.05rem solid var(--primary) !important;
}

.success-border {
  border: 0.05rem solid var(--success) !important;
}

.danger-border {
  border: 0.05rem solid var(--danger) !important;
}

.action-border {
  border: 0.05rem solid var(--action) !important;
}

.action-d-border {
  border: 0.05rem solid var(--action-d) !important;
}

.action-xxl-border {
  border: 0.05rem solid var(--action-d) !important;
}

.white {
  background-color: white !important;
}

.gray {
  background-color: var(--gray) !important;
}

.dark-gray {
  background-color: var(--dark-gray) !important;
}

.primary-xxl {
  background-color: var(--primary-xxl) !important;
}

.primary-xl {
  background-color: var(--primary-xl) !important;
}

.primary-l {
  background-color: var(--primary-l) !important;
}

.primary {
  background-color: var(--primary) !important;
}

.primary-d {
  background-color: var(--primary-d) !important;
}

.primary-xd {
  background-color: var(--primary-xd) !important;
}

.success {
  background-color: var(--success) !important;
}

.danger {
  background-color: var(--danger) !important;
}

.action {
  background-color: var(--action) !important;
}

.action-d {
  background-color: var(--action-d) !important;
}

.action-xxl {
  background-color: var(--action-xxl) !important;
}

.q-bold {
  font-weight: bold;
}

.q-button {
  border: 0px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 0.2rem;
  cursor: pointer;
}

.q-body {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.q-header {
  position: fixed;
  background-color: var(--primary);
  width: 100%;
  max-height: var(--header-height);
  color: white;
  z-index: 100;
}

.q-a {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.q-hero-marketing {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: 10%;
  width: 100%;
  height: 70vh;
  z-index: 2;
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .q-hero-marketing {
    height: 95vh;
  }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
  .q-hero-marketing {
    top: var(--header-height);
  }
}

.q-hero-marketing .q-hero-marketing-title {
  padding: 0.5rem 2rem;
  position: relative;
  top: -1rem;
  border-radius: 0.5rem;
  text-align: center;
  margin: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 8px var(--primary), 0 2px 8px var(--primary);
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .q-hero-marketing .q-hero-marketing-title {
    top: 0;
    padding: 1rem 2rem;
  }
}

.q-hero-marketing .q-hero-marketing-title .q-hero-arrow {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  animation-delay: 1.4s;
  animation-duration: 2s;
  animation-name: bump;
  animation-iteration-count: 1;
}

.q-hero {
  height: 70vh;
  width: 100%;
  position: relative;
  top: 0;
  overflow: hidden;
  flex-direction: row;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -2;
}

@media screen and (min-width: 600px) {
  .q-hero {
    height: 80vh;
  }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
  .q-hero {
    top: var(--header-height);
  }
}

.q-hero .q-hero-img {
  overflow: hidden;
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
  filter: saturate(220%);
}

.q-content {
  position: relative;
  width: 100%;
  top: -2rem;
}

@media screen and (orientation: landscape) and (min-width: 1600px) {
  .q-content {
    top: var(--offset-top);
  }
}

@media screen and (orientation: landscape) and (max-height: 500px) {
  .q-content {
    top: 1rem;
  }
}

.q-section {
  width: 100%;
  padding: 4rem 0;
}

.q-container {
  padding: 0 5%;
}

@media screen and (orientation: landscape) and (min-width: 1400px) {
  .q-container {
    padding: 0 18%;
  }
}

.q-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.q-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex: 0 0 100%;
  max-width: 100%;
}

@media screen and (orientation: landscape) {
  .q-column {
    flex: 1 1 0%;
  }
}

@media screen and (orientation: landscape) and (max-width: 1200px) {
  .q-column {
    min-width: 35%;
  }
}

.q-spacer {
  flex: 0;
  margin: 1rem 0.5rem;
}

.q-card {
  width: 100%;
  border: 0.05rem solid var(--primary);
  padding: 1rem;
  background-color: var(--q-card-background-color);
  border-radius: 0.3rem;
  flex: 1 1 auto;
  min-width: 20%;
  z-index: 2;
}

.q-card .q-card-promotion {
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.q-card .q-card-promotion .q-card-promotion-top {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  flex: 1 1 auto;
}

.q-card .q-card-promotion .q-card-promotion-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  flex: 1 1 auto;
}

.q-card .q-card-promotion .q-card-promotion-bottom .q-card-arrow-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  flex: 1 1 auto;
}

.q-card .q-card-promotion .q-card-promotion-bottom .q-card-arrow-container .q-card-arrow {
  max-height: 2.8rem;
  filter: hue-rotate(0deg);
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
}

.q-card .q-card-promotion .q-card-promotion-bottom .q-card-arrow-container .q-card-arrow:hover {
  filter: hue-rotate(58deg);
  transition-duration: 400ms;
  transition-timing-function: ease-in-out;
}

@property --turn {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.q-hover-button-to-primary-d:hover {
  background-color: var(--primary-d) !important;
  transition: 800ms;
}

.q-line {
  position: relative;
}

.q-line::after, .q-line::before {
  content: '';
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--turn), var(--primary), var(--primary), var(--primary), var(--action), red, var(--action), var(--primary), var(--primary));
  position: absolute;
  translate: -50% -50%;
  z-index: -1;
  border-radius: 0.5rem;
  top: 50%;
  left: 50%;
  animation: 3500ms turnaround linear infinite;
  padding: 0.1rem;
  border-radius: 0.2rem;
  cursor: pointer;
  transition-duration: 0s;
}

.q-line-hover-green:hover::after, .q-line-hover-green:hover::before {
  background-image: conic-gradient(from var(--turn), #00fb00, #00cc00, #ce0d2d, purple, #00ca00, #00fb00);
  animation-duration: 3500ms;
  transition-duration: 0s;
}

@keyframes turnaround {
  from {
    --turn: 0deg;
  }
  to {
    --turn: 360deg;
  }
}

.q-line-active {
  position: relative;
}

.q-line-active::after, .q-line-active::before {
  content: '';
  height: 100%;
  width: 100%;
  background-image: conic-gradient(from var(--turn), var(--primary), var(--primary), var(--primary), var(--action), red, var(--action), var(--primary), var(--primary));
  position: absolute;
  translate: -50% -50%;
  z-index: -1;
  top: 50%;
  left: 50%;
  animation: 3500ms turnaround linear infinite;
  padding: 0rem;
  border-radius: 0.7rem;
  cursor: pointer;
  transition-duration: 0s;
}

.q-line-active:hover::before {
  filter: blur(1rem);
  opacity: 1;
}

@keyframes turnaround {
  from {
    --turn: 0deg;
  }
  to {
    --turn: 360deg;
  }
}

.q-hover:hover {
  box-shadow: 0 -1px 1px var(--action), 0 1px 5px var(--primary), 0 0 2px var(--gray), 0 0 2px var(--dark-gray);
  transition-duration: 300ms;
}

.q-hover-button:hover {
  background-color: #048a04 !important;
  transition-duration: 400ms;
}

.q-hover-to-bg-primary-xd:hover {
  background-color: var(--primary-xd) !important;
  transition-duration: 400ms;
}

.q-hero-hr {
  margin: 0.5rem 0;
  border: 0.03rem solid var(--primary-l);
}

.q-hr {
  margin: 1rem 0;
  border: 0.03rem solid var(--primary-l);
}

.q-hr-action {
  margin: 1rem 0;
  border: 0.05rem solid var(--action);
}

.left {
  justify-content: flex-start;
}

.space {
  justify-content: space-between;
}

.q-display-none {
  display: none !important;
}

.q-visibility-hidden {
  visibility: hidden !important;
}

.align-items-center {
  align-items: center;
}

.left-or-top {
  align-items: flex-start;
}

.center {
  justify-content: center;
  align-items: center;
}

.center-text {
  width: 100%;
  line-height: 100%;
  text-align: center;
}

.logo {
  padding: 0 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  min-height: var(--header-height);
}

@media screen and (max-width: 600px) {
  .logo {
    position: relative;
    left: -5%;
  }
}

.logo .logo-img img {
  display: flex;
  margin-right: 0.2rem;
  padding: 0.5rem;
  height: var(--header-height);
  object-fit: contain;
}

@media screen and (max-width: 600px) {
  .logo .logo-img img {
    position: relative;
    top: 0;
    left: 0;
  }
}

@media screen and (min-width: 600px) {
  .logo .logo-img img {
    display: flex;
    margin-right: 1rem;
  }
}

.logo .logo-text {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  font-size: 2rem;
  font-family: Quen-Regular;
}

@media screen and (max-width: 350px) and (orientation: portrait) {
  .logo .logo-text {
    display: flex;
    font-size: 1rem;
  }
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .logo .logo-text {
    display: flex;
    font-size: 3.5rem;
  }
}

.logo .logo-text .logo-registered {
  padding-top: 1rem;
  font-size: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

@media screen and (min-width: 600px) and (orientation: landscape) {
  .logo .logo-text .logo-registered {
    padding-top: 0.5rem;
    font-size: 1.2rem;
  }
}

.hamburger-menu {
  max-height: var(--header-height);
}

@media screen and (max-width: 600px) {
  .hamburger-menu {
    width: 8rem;
    position: absolute;
    right: 0;
    top: 0;
  }
}

@media screen and (min-width: 600px) {
  .hamburger-menu .hamburger-img {
    display: none;
  }
  .hamburger-menu .hamburger-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    height: var(--header-height);
  }
  .hamburger-menu .hamburger-links .q-a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
  }
  .hamburger-menu .hamburger-links li {
    flex: 1 0 auto;
    padding: 0 1rem;
    height: var(--header-height);
    text-align: center;
    line-height: var(--header-height);
    border-bottom: 1px solid var(--primary);
    list-style-type: none;
    transition-duration: 200ms;
    color: white;
  }
  .hamburger-menu .hamburger-links li:hover {
    background-color: white;
    color: var(--primary);
    transition-duration: 500ms;
  }
}

@media screen and (max-width: 600px) and (orientation: portrait) {
  .hamburger-menu .hamburger-img {
    line-height: var(--header-height);
    height: var(--header-height);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hamburger-menu .hamburger-links {
    display: none;
  }
  .hamburger-menu .hamburger-links li {
    background-color: white;
    height: var(--header-height);
    text-align: center;
    line-height: var(--header-height);
    border-bottom: 1px solid var(--primary);
    list-style-type: none;
    transition-duration: 200ms;
  }
  .hamburger-menu .hamburger-links li:hover {
    background-color: var(--primary);
    color: white;
  }
  .hamburger-menu .hamburger-links a:visited {
    color: var(--primary);
  }
  .hamburger-menu .hamburger-links a:hover {
    background-color: var(--primary);
    color: white;
    transition-duration: 200ms;
  }
}

@media screen and (max-width: 600px) and (orientation: portrait) {
  .hamburger-menu:hover .hamburger-links {
    display: block;
  }
}

.q-footer {
  line-height: 1.4rem;
}

.q-footer h3 {
  padding-bottom: 0.5rem;
}

.q-footer ul {
  padding: 0;
}

.q-footer li {
  list-style-type: none;
  padding: none;
  color: white;
  font-size: 0.9rem;
}

.q-footer .q-footer-top {
  background-color: var(--primary);
  min-height: 2rem;
  padding: 3rem 0;
}

.q-footer .q-footer-bottom {
  background-color: var(--primary-xd);
  min-height: 1rem;
  padding: 0.3rem 0;
  font-size: 0.8rem;
}

.nowrap {
  flex-wrap: nowrap;
}

.q-tooltip {
  padding-top: 0.1rem;
  padding-bottom: 0.1rem;
  width: 80%;
  padding-left: 0.5rem;
}

@media screen and (orientation: landscape) {
  .q-tooltip {
    position: absolute !important;
    left: 100%;
    margin-left: 1rem;
    width: calc(100vw/7);
    margin: 0.4rem;
  }
}

@media screen and (orientation: portrait) {
  .q-mobile-wrap {
    flex-wrap: wrap !important;
  }
}

.q-small-text {
  font-size: 0.8rem;
}

.q-checkout-table {
  border-collapse: collapse;
}

.q-checkout-table th {
  text-align: left;
  color: var(--primary-xd);
}

.q-checkout-table tr {
  height: 2rem;
}

.q-checkout-table td {
  border-top: 1px dashed #b6caf7;
  padding-right: 1rem;
}

.q-checkout-table td:nth-child(even) {
  padding: 0;
}

.q-checkout-table tr:last-child {
  font-weight: bold;
  color: var(--primary-xd);
}

@media screen and (min-width: 1580px) {
  .q-checkout-container {
    position: fixed;
    right: 16%;
    top: 16rem;
    width: 15%;
    z-index: -1;
  }
}

.q-slide-in-from-right-element {
  opacity: 0;
  transform: translateX(10rem);
  animation: slidein ease-in forwards;
  animation-timeline: view();
  animation-range: entry 20% cover 25%;
}

@keyframes slidein {
  to {
    opacity: 1;
    transform: translateX(0rem);
  }
}
