/* 40 */
/* 35 */
/* 27 */
/* 25 */
/* 22 */
/* 18 */
/* 12 */
/* 10 */
@font-face {
  font-family: "calibri";
  src: url("./fonts/Calibri_Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "centuryGothic";
  src: url("./fonts/Century_Gothic_Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "centuryGothicBold";
  src: url("./fonts/Century_Gothic_Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "dominik";
  src: url("./fonts/Dominik_Thin.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "monad";
  src: url("./fonts/Monad.otf");
  font-weight: normal;
  font-style: normal;
}
h1,
h2,
h3,
#hero .isActive,
#hero button:hover,
h4,
h5,
h6 {
  font-family: "centuryGothicBold";
}

h1 {
  font-size: 2.667rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 2.333rem;
  }
}

h2 {
  font-size: 2.333rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.8rem;
  }
}

h3, #hero .isActive, #hero button:hover {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  h3, #hero .isActive, #hero button:hover {
    font-size: 1.667rem;
  }
}

h4 {
  font-size: 1.667rem;
}
@media (max-width: 767px) {
  h4 {
    font-size: 1.467rem;
  }
}

h5 {
  font-size: 1.467rem;
}
@media (max-width: 767px) {
  h5 {
    font-size: 1.2rem;
  }
}

h6 {
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  h6 {
    font-size: 0.8rem;
  }
}

p,
span {
  font-family: "dominik";
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  p,
  span {
    font-size: 0.8rem;
  }
}

body {
  display: grid;
  margin: 0;
  padding: 0;
  background-color: #efebe9;
  padding-top: 10rem;
}
@media (max-width: 767px) {
  body {
    padding-top: 5rem;
  }
}
body * {
  margin: 0;
  padding: 0;
}

.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.isHidden {
  display: none;
}

a {
  color: #984063;
  font-weight: 600;
}
a:hover {
  color: #41436a;
}

button, button:hover {
  cursor: pointer;
  font-family: "centuryGothicBold";
  font-size: 1.2rem;
  padding: 0.5rem 1.5rem;
  margin-top: 1.5rem;
  border-radius: 30px;
  background-color: #ed8063;
  border: none;
  color: white;
}
button.isActive, button:hover {
  border-color: #984063;
  background-color: #984063;
}

.contact,
.cookies,
.terms,
.privacy {
  margin-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .contact,
  .cookies,
  .terms,
  .privacy {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.contact h1,
.cookies h1,
.terms h1,
.privacy h1 {
  color: #41436a;
}
.contact span,
.cookies span,
.terms span,
.privacy span {
  font-family: "centuryGothic";
  font-size: 1.4rem;
  color: #41436a;
}

@keyframes heroPanelActive {
  0% {
    width: 0;
  }
  100% {
    width: calc(100% - 0.5rem);
  }
}
@keyframes heroPanelInActive {
  0% {
    width: calc(100% - 0.5rem);
  }
  100% {
    width: 0;
  }
}
@keyframes heroContentActive {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: grid;
    opacity: 0;
  }
  100% {
    display: grid;
    opacity: 1;
  }
}
header {
  background-color: #f5f5f5;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
header * {
  transition: all 0.1s ease;
}
header .container {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
header .header_logo {
  display: unset;
  width: 128px;
  text-decoration: none;
}
@media (max-width: 767px) {
  header .header_logo {
    width: 70px;
  }
}
header .header_logo .logo {
  z-index: 100;
  width: 100%;
}
header .header_logo .logo_text {
  font-family: "monad";
  font-size: 1.467rem;
  font-weight: normal;
  text-align: center;
  color: #41436a;
  overflow: hidden;
}
@media (max-width: 767px) {
  header .header_logo .logo_text {
    font-size: 0.8rem;
  }
}

.header_buttons {
  display: flex;
}
.header_buttons a {
  color: #41436a;
  font-family: "dominik";
  text-decoration: none;
  margin: 0 1.5rem;
  margin-top: auto;
  margin-bottom: auto;
  font-size: 1.667rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
}
.header_buttons a:hover {
  color: #984063;
}
@media (max-width: 767px) {
  .header_buttons {
    display: grid;
    position: fixed;
    top: 0;
    right: 0;
    left: 100%;
    padding-top: 1.5rem;
    background-color: #f5f5f5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  }
  .header_buttons a {
    font-size: 1.2rem;
    padding: 1rem;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
  }
  .header_buttons a:first-child {
    margin-top: auto;
  }
  .header_buttons a:last-child {
    margin-bottom: auto;
    padding-bottom: 2.5rem;
  }
  .header_buttons a:hover::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 0.5rem;
    background-color: #ed8063;
    left: 0;
    right: 0;
  }
  .header_buttons.isActive, button.header_buttons:hover {
    left: 0%;
  }
}

.header_burger {
  cursor: pointer;
  width: 35px;
  height: 20px;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  display: none;
  position: relative;
  z-index: 1;
}
.header_burger span {
  position: absolute;
  width: 100%;
  height: 0.2rem;
  top: 0;
  left: 0;
  background-color: #41436a;
  transform: translateY(-50%);
}
.header_burger span:nth-child(2) {
  top: 50%;
}
.header_burger span:last-child {
  top: 100%;
}
@media (max-width: 767px) {
  .header_burger {
    display: unset;
  }
}
.header_burger.isActive span, button.header_burger:hover span {
  top: 20%;
  transform: rotate(-45deg);
  background-color: #984063;
}
.header_burger.isActive span:nth-child(2), button.header_burger:hover span:nth-child(2) {
  transform: rotate(45deg);
}
.header_burger.isActive span:last-child, button.header_burger:hover span:last-child {
  transform: rotate(45deg);
}

header.isScrolled .header_logo {
  width: 70px;
}
@media (min-width: 767px) {
  header.isScrolled .header_logo .logo_text {
    height: 0;
  }
}
header.isScrolled .header_buttons a {
  font-size: 1.2rem;
}

#hero {
  width: 100%;
  position: relative;
  overflow: hidden;
}
#hero .container {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: row;
}
@media (max-width: 767px) {
  #hero .container {
    display: grid;
  }
}
#hero .hero_panel, #hero .isActive, #hero button:hover {
  min-width: 74px;
  width: 74px;
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  margin-left: 0.5rem;
  padding-top: 0.5rem;
  background-color: #f5f5f5;
  text-align: center;
  color: #404a5c;
  cursor: pointer;
  min-height: 31rem;
  max-height: 31rem;
  height: 31rem;
  overflow: hidden;
}
@media (min-width: 767px) {
  #hero .hero_panel, #hero .isActive, #hero button:hover {
    animation: heroPanelInActive 0.25s;
  }
}
@media (max-width: 767px) {
  #hero .hero_panel, #hero .isActive, #hero button:hover {
    width: 100%;
    max-height: unset;
    min-height: unset;
    height: 64px;
    margin: 0.5rem 0;
  }
}
#hero .hero_panel::before, #hero .isActive::before, #hero button:hover::before {
  content: "";
  position: absolute;
  opacity: 0.12;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(#ffffff 70%, #000000);
}
#hero .hero_panel .hero_panelHeader, #hero .isActive .hero_panelHeader, #hero button:hover .hero_panelHeader {
  display: grid;
}
#hero .hero_panel .hero_panelHeader .panelHeader_content, #hero .isActive .hero_panelHeader .panelHeader_content, #hero button:hover .hero_panelHeader .panelHeader_content {
  display: grid;
  justify-content: center;
  align-items: center;
}
#hero .hero_panel .hero_panelHeader .panelHeader_content .panelHeader_contentText, #hero .isActive .hero_panelHeader .panelHeader_content .panelHeader_contentText, #hero button:hover .hero_panelHeader .panelHeader_content .panelHeader_contentText {
  display: block;
  color: #f5f5f5;
  font-size: 0.8rem;
}
#hero .hero_panel .hero_panelHeader .panelHeader_content .panelHeader_contentTitle, #hero .isActive .hero_panelHeader .panelHeader_content .panelHeader_contentTitle, #hero button:hover .hero_panelHeader .panelHeader_content .panelHeader_contentTitle {
  display: none;
}
#hero .hero_panel .hero_panelHeader .panelHeader_content img, #hero .isActive .hero_panelHeader .panelHeader_content img, #hero button:hover .hero_panelHeader .panelHeader_content img {
  filter: invert(1);
  width: 32px;
  height: 32px;
  max-width: 32px;
  max-height: 32px;
  margin: 0.2rem;
}
#hero .hero_panel .hero_panelHeader .panelHeader_content img.logo, #hero .isActive .hero_panelHeader .panelHeader_content img.logo, #hero button:hover .hero_panelHeader .panelHeader_content img.logo {
  filter: none;
}
#hero .hero_panel .hero_panelHeader .panelHeader_border, #hero .isActive .hero_panelHeader .panelHeader_border, #hero button:hover .hero_panelHeader .panelHeader_border {
  height: 2px;
  width: 100%;
  background-color: var(--panel-headerborder-color);
  background-image: var(--panel-headerborder-image);
  margin-top: 0.5rem;
  position: relative;
  opacity: 0;
}
#hero .hero_panel .hero_panelHeader .panelHeader_border::after, #hero .isActive .hero_panelHeader .panelHeader_border::after, #hero button:hover .hero_panelHeader .panelHeader_border::after, #hero .hero_panel .hero_panelHeader .panelHeader_border::before, #hero .isActive .hero_panelHeader .panelHeader_border::before, #hero button:hover .hero_panelHeader .panelHeader_border::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: inherit;
  background-image: inherit;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 70px;
}
#hero .hero_panel .hero_panelHeader .panelHeader_border::after, #hero .isActive .hero_panelHeader .panelHeader_border::after, #hero button:hover .hero_panelHeader .panelHeader_border::after {
  left: 0;
}
#hero .hero_panel .hero_panelHeader .panelHeader_border::before, #hero .isActive .hero_panelHeader .panelHeader_border::before, #hero button:hover .hero_panelHeader .panelHeader_border::before {
  right: 0;
}
#hero .hero_panel .hero_panelContent, #hero .isActive .hero_panelContent, #hero button:hover .hero_panelContent {
  margin-left: 0px;
  margin-right: 4px;
  padding: 0.5rem 1.5rem;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-align: left;
  color: #41436a;
  display: none;
  opacity: 0;
}
#hero .hero_panel .hero_panelContent .hero_panelContentItem, #hero .isActive .hero_panelContent .hero_panelContentItem, #hero button:hover .hero_panelContent .hero_panelContentItem {
  margin-top: 0.5rem;
}
#hero .hero_panel .hero_panelContent .hero_panelContentItem h3, #hero .hero_panel .hero_panelContent .hero_panelContentItem .isActive, #hero .hero_panel .hero_panelContent .hero_panelContentItem button:hover, #hero .isActive .hero_panelContent .hero_panelContentItem h3, #hero .isActive .hero_panelContent .hero_panelContentItem .isActive, #hero .isActive .hero_panelContent .hero_panelContentItem button:hover, #hero button:hover .hero_panelContent .hero_panelContentItem h3, #hero button:hover .hero_panelContent .hero_panelContentItem .isActive, #hero button:hover .hero_panelContent .hero_panelContentItem button:hover {
  font-family: "centuryGothic";
}
#hero .hero_panel .hero_panelContent .hero_panelContentItem .bullet, #hero .isActive .hero_panelContent .hero_panelContentItem .bullet, #hero button:hover .hero_panelContent .hero_panelContentItem .bullet {
  display: inline-block;
  margin: 0px 8px;
  width: 16px;
  height: 16px;
  background-color: #eceff1;
  border-radius: 3px;
}
#hero .isActive, #hero button:hover {
  background-color: #f5f5f5 !important;
  margin-right: 0.5rem;
  cursor: default;
  width: calc(100% - 0.5rem);
}
@media (min-width: 767px) {
  #hero .isActive, #hero button:hover {
    animation: heroPanelActive 0.25s;
  }
}
@media (max-width: 767px) {
  #hero .isActive, #hero button:hover {
    transition: all;
    transition-duration: 0.5s;
    height: calc(100% - 1.5rem);
    width: 100%;
    margin-bottom: 0.5rem;
  }
}
#hero .isActive::before, #hero button:hover::before {
  display: none;
}
#hero .isActive .hero_panelHeader, #hero button:hover .hero_panelHeader {
  padding: 0.5rem 1.5rem;
}
#hero .isActive .hero_panelHeader .panelHeader_content, #hero button:hover .hero_panelHeader .panelHeader_content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: auto;
}
#hero .isActive .hero_panelHeader .panelHeader_content img.web, #hero button:hover .hero_panelHeader .panelHeader_content img.web {
  filter: invert(41%) sepia(18%) saturate(494%) hue-rotate(154deg) brightness(97%) contrast(96%);
}
#hero .isActive .hero_panelHeader .panelHeader_content img.linux, #hero button:hover .hero_panelHeader .panelHeader_content img.linux {
  filter: invert(29%) sepia(30%) saturate(354%) hue-rotate(180deg) brightness(91%) contrast(95%);
}
#hero .isActive .hero_panelHeader .panelHeader_content img.apple, #hero button:hover .hero_panelHeader .panelHeader_content img.apple {
  filter: invert(26%) sepia(12%) saturate(1715%) hue-rotate(199deg) brightness(97%) contrast(84%);
}
#hero .isActive .hero_panelHeader .panelHeader_content img.windows, #hero button:hover .hero_panelHeader .panelHeader_content img.windows {
  filter: invert(36%) sepia(6%) saturate(4691%) hue-rotate(284deg) brightness(93%) contrast(85%);
}
#hero .isActive .hero_panelHeader .panelHeader_content img.android, #hero button:hover .hero_panelHeader .panelHeader_content img.android {
  filter: invert(45%) sepia(69%) saturate(1337%) hue-rotate(316deg) brightness(102%) contrast(94%);
}
#hero .isActive .hero_panelHeader .panelHeader_content img.ic, #hero button:hover .hero_panelHeader .panelHeader_content img.ic {
  filter: invert(76%) sepia(14%) saturate(2074%) hue-rotate(316deg) brightness(100%) contrast(94%);
}
#hero .isActive .hero_panelHeader .panelHeader_content .panelHeader_contentText, #hero button:hover .hero_panelHeader .panelHeader_content .panelHeader_contentText {
  display: none;
}
#hero .isActive .hero_panelHeader .panelHeader_content .panelHeader_contentTitle, #hero button:hover .hero_panelHeader .panelHeader_content .panelHeader_contentTitle {
  display: inline;
  margin-left: 0.5rem;
  font-weight: 700;
  opacity: 1;
  animation: heroContentActive 0.4s;
}
#hero .isActive .hero_panelHeader .panelHeader_border, #hero button:hover .hero_panelHeader .panelHeader_border {
  opacity: 0.4;
}
#hero .isActive .hero_panelContent, #hero button:hover .hero_panelContent {
  display: grid;
  opacity: 1;
  animation: heroContentActive 0.6s;
}

.showcase {
  color: #41436a;
  margin: 2.5rem 0;
}
@media (max-width: 767px) {
  .showcase {
    margin: 1.5rem 0;
  }
}
.showcase .showcase_headline p {
  font-size: 1.2rem;
}
.showcase .showcase_list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-top: 2.5rem;
  justify-content: space-evenly;
}
@media (max-width: 767px) {
  .showcase .showcase_list {
    display: grid;
  }
}
.showcase .showcase_list li {
  padding: 0.5rem;
  margin: auto;
  max-width: 25rem;
}
@media (max-width: 767px) {
  .showcase .showcase_list li {
    text-align: center;
  }
}
.showcase .showcase_list li .number {
  color: #984063;
  border: 2px #984063 solid;
  border-radius: 70px;
  height: 40px;
  width: 40px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
  text-align: center;
}
.showcase .showcase_list li .image {
  margin-bottom: 1.5rem;
  margin-left: auto;
  margin-right: auto;
  height: 256px;
  width: 256px;
  min-height: 256px;
  min-width: 256px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 767px) {
  .showcase .showcase_list li .image {
    height: 150px;
    width: 150px;
    min-height: 150px;
    min-width: 150px;
  }
}
.showcase .showcase_list li .image img {
  height: 100%;
}
.showcase .showcase_list li .image.isRound {
  border-radius: 70px;
}
.showcase .showcase_list li p {
  margin-top: 0.5rem;
}
.showcase .isCentered {
  text-align: center;
}
.showcase .isRightAligned {
  text-align: right;
}

.contact {
  margin-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (max-width: 767px) {
  .contact {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.contact h1 {
  color: #41436a;
}
.contact span {
  font-family: "centuryGothic";
  font-size: 1.4rem;
  color: #41436a;
}

footer {
  background-color: #26273b;
  bottom: 0;
  position: relative;
  color: white;
}
footer .container {
  display: grid;
  padding: 2.5rem;
}
footer .footer_socialLinks {
  display: flex;
  margin: 1.5rem auto;
}
footer .footer_socialLinks > a {
  display: grid;
  border: 1px solid #f5f5f5;
  background-color: #f5f5f5;
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border-radius: 70px;
  transition-duration: 0.25s;
  margin: 0 0.5rem;
}
footer .footer_socialLinks > a img {
  margin: auto;
  width: 15px;
  height: 15px;
  filter: invert(13%) sepia(26%) saturate(749%) hue-rotate(197deg) brightness(93%) contrast(92%);
  transition-duration: 0.1s;
}
footer .footer_socialLinks > a:hover {
  background-color: #26273b;
}
footer .footer_socialLinks > a:hover img {
  width: 12px;
  height: 12px;
  filter: invert(1);
}
footer .footerContent {
  display: flex;
  margin: 0 auto;
}
@media (max-width: 767px) {
  footer .footerContent {
    padding: 1.5rem 0;
  }
}
footer .footerContent > a {
  margin-right: 1.5rem;
  color: #f5f5f5;
  font-size: 0.8rem;
  font-weight: 200;
  font-family: "centuryGothic";
}
footer .footerContent > a:hover {
  color: white;
}
footer .footnote {
  padding: 0.5rem;
  text-align: center;
  background-color: #1b1c2a;
}
footer .footnote p {
  font-size: 0.8rem;
  font-weight: 100;
  font-family: "calibri";
  opacity: 0.7;
}

#qr_template {
  display: grid;
  width: 100%;
  position: relative;
  overflow: hidden;
}
#qr_template .qr_details {
  display: grid;
  position: relative;
}
#qr_template .qr_details .qr_details_details {
  display: flex;
  margin: 0.5rem auto;
  font-weight: 600;
}
#qr_template .qr_details .panelHeader_border {
  height: 2px;
  width: 50vw;
  background-color: var(--panel-headerborder-color);
  background-image: var(--panel-headerborder-image);
  margin: 0.5rem auto;
  position: relative;
}
#qr_template .qr_details .panelHeader_border::after, #qr_template .qr_details .panelHeader_border::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: inherit;
  background-image: inherit;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 70px;
}
#qr_template .qr_details .panelHeader_border::after {
  left: 0;
}
#qr_template .qr_details .panelHeader_border::before {
  right: 0;
}
#qr_template .qr_links {
  font-family: "centuryGothicBold";
}
@media (max-width: 767px) {
  #qr_template .qr_links {
    font-size: 0.8rem;
  }
}
#qr_template .qr_details, #qr_template .qr_links {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  text-align: center;
  padding: 20px 0px;
}
#qr_template .foot_graphic {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 500px;
  height: 500px;
}
#qr_template .foot_graphic .foot_graphic_one, #qr_template .foot_graphic .foot_graphic_two, #qr_template .foot_graphic .foot_graphic_three {
  height: 100px;
  width: 150%;
  position: absolute;
  transform: rotate(-45deg);
  bottom: 0;
}
#qr_template .foot_graphic .foot_graphic_one {
  background-color: #47496c;
  bottom: 130px;
  right: -210px;
  transform: rotate(-45deg);
}
#qr_template .foot_graphic .foot_graphic_two {
  background-color: #f75c7a;
  right: -220px;
}
#qr_template .foot_graphic .foot_graphic_three {
  background-color: #984a69;
  right: -350px;
}/*# sourceMappingURL=index.css.map */