/*!
 * Project: php-web
 *
 * User: edietrich
 * Date: 04.02.2020
 *
 * This code is copyright (c) 2020 let's dev GmbH & Co. KG
 * URL: https://www.letsdev.de
 * e-Mail: contact@letsdev.de
 */
/* abstracts */
/* header */
/* navigation */
/* login */
/* font */
/* border-radius */
/* media queries */
/* EXTENDS */
.button-wrapper::after, .form-module .input-row-wrapper::after, .clearfix::after {
  display: block;
  clear: both;
  content: "";
}

/* MIXINS */
/* base */
@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 300 700;
  src: local("Quicksand"), url("../../font/Quicksand-VariableFont_wght.ttf") format("truetype");
  font-display: swap;
}
/* B/W */
/* COLORS */
/* MAIN */
/*TODO: Add Variable*/
/* BACKGROUNDS */
/* FONT COLORS */
/* ELEMENT COLORS */
/* TABLE COLORS */
html, body {
  font-family: Quicksand, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  letter-spacing: 0.03em;
  color: #F1F1F1;
}

html, body {
  margin: 0;
  padding: 0;
}

html *, div, section {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html *:focus {
  outline: none;
}

body {
  position: relative;
  background-image: linear-gradient(to left bottom, #0B285C, #15244D, #191F3F, #1A1C31, #181824, #1A1929, #1C1A2E, #1F1A33, #2A1E4B, #392063, #4B1E79, #61168F);
}
body.layout-plain {
  margin: 0;
}

.module {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 2rem;
}
.module.secondary-footer {
  max-width: 100%;
  background: #ffffff;
}
.module.secondary-footer .container {
  max-width: 1024px;
  margin: 0 auto;
}
.module.secondary-footer .flex-module {
  color: #131313;
}

.container {
  padding: 8rem 0;
}

img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) and (max-width: 1023px) {
  .container {
    padding: 4rem 0rem;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 2rem 0rem;
  }
}
body > * {
  font-size: 0.875rem;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  line-height: 1.2em;
}

h2 {
  font-size: 1.5rem;
  font-weight: 500;
}

h4 {
  font-size: 1rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  margin: 0;
}

.bold {
  font-weight: bold;
}

.semibold {
  font-weight: 600;
}

.truncate {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* HEADLINES */
.page-heading {
  font-size: 1rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}

.form-heading {
  font-size: 1rem;
  line-height: 2.5rem;
  margin-bottom: 2rem;
}

/* layout */
.mobile-burger-menu {
  display: none;
}

.nav-row-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.nav-row-wrapper .logo-wrapper img {
  width: auto;
  height: 5rem;
}

.main-navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 10vw;
}
.main-navigation .navbar {
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}
.main-navigation .navbar .nav-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 4px;
  position: relative;
}
.main-navigation .navbar .nav-item.active span {
  width: 100%;
  right: 0;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}
.main-navigation .navbar .nav-item.active a {
  color: #699EFF;
}
.main-navigation .navbar .nav-item a {
  text-decoration: none;
  color: #F1F1F1;
  font-size: 1rem;
  display: block;
}
.main-navigation .navbar .nav-item a:hover {
  color: #699EFF;
}
.main-navigation .navbar .nav-item span {
  position: absolute;
  bottom: -0.5rem;
  right: -100%;
  height: 2px;
  background: #699EFF;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

@media (max-width: 1440px) {
  .main-navigation {
    z-index: 1;
    background: #131313;
    width: 30%;
    height: 100%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  .main-navigation.collapsed {
    right: -100vw;
    left: 100vw;
    width: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
  }
  .main-navigation .navbar {
    width: 75%;
    position: absolute;
    right: 0;
    margin: 8rem 0 4rem 0;
  }
  .main-navigation .navbar .nav-item a {
    font-size: 1.25rem;
  }
  .mobile-burger-menu {
    display: block;
    z-index: 2;
    position: fixed;
    right: 2rem;
    top: 3rem;
    cursor: pointer;
  }
  .mobile-burger-menu div {
    width: 27px;
    height: 3px;
    transition: 0.5s;
    background-color: #F1F1F1;
  }
  .mobile-burger-menu div.line-2 {
    margin: 5px 0;
  }
  .mobile-burger-menu.animate div {
    background-color: #F1F1F1;
  }
  .mobile-burger-menu.animate div.line-1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 0);
    transform: rotate(-45deg) translate(-9px, 0);
  }
  .mobile-burger-menu.animate div.line-2 {
    opacity: 0;
  }
  .mobile-burger-menu.animate div.line-3 {
    -webkit-transform: rotate(45deg) translate(-11px, -2px);
    transform: rotate(45deg) translate(-11px, -2px);
  }
  .module.dimming-overlay {
    opacity: 0.5;
  }
}
@media (max-width: 768px) {
  .main-navigation {
    width: 45%;
  }
  .nav-row-wrapper .logo-wrapper img {
    height: 3rem;
  }
  header .bg-image {
    height: 50vh;
    max-width: 100%;
  }
  header h1 {
    font-size: 2.5rem;
    width: 100%;
  }
}
@media (max-width: 481px) {
  .main-navigation {
    width: 55%;
  }
}
header {
  position: relative;
  width: 100%;
}
header.module {
  padding: 2rem;
}
header h1 {
  font-size: 4rem;
  top: 10rem;
  width: 40vw;
  position: absolute;
  color: #699EFF;
}
header .bg-image {
  background: url("../img/img/background_hero.png") center/contain no-repeat fixed;
  min-height: 100vh;
  max-width: 100%;
  margin: 0 0 0 2rem;
}
@media (max-width: 768px) {
  header .bg-image {
    height: 50vh;
    max-width: 100%;
    min-height: initial;
    margin: 0;
  }
  header h1 {
    position: inherit;
    top: 2rem;
    font-size: 2.5rem;
    width: 100%;
  }
}
@media (max-width: 480px) {
  header h1 {
    font-size: 2rem;
    word-break: break-word;
    hyphens: auto;
  }
}
@media (max-width: 320px) {
  header h1 {
    font-size: 1.5rem;
  }
}

.page-container {
  padding: 2rem 1rem;
}
.page-container .page-header .page-heading {
  float: left;
}
.page-container .page-header button,
.page-container .page-header a {
  float: right;
}

footer {
  font-size: 0.75rem;
  text-align: left;
  color: #F1F1F1;
  background: #131313;
  padding: 4rem 0 2rem 0;
}
footer .footer-container {
  display: flex;
  flex-direction: column;
}
footer .footer-container .footer-logo {
  width: 10rem;
  cursor: pointer;
}
footer .footer-container .footer-logo:hover {
  opacity: 0.8;
}
footer .footer-container .footer-item-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .footer-container .footer-item-wrapper .footer-item {
  width: 50%;
}
footer .footer-container .footer-item-wrapper .footer-item.right-aligned {
  text-align: right;
  align-items: flex-end;
}
footer .footer-container .footer-item-wrapper .footer-item h2 {
  font-family: Quicksand, sans-serif, sans-serif;
}
footer .footer-container .footer-item-wrapper .footer-item ul {
  margin: 0;
  padding: 1rem 0;
}
footer .footer-container .footer-item-wrapper .footer-item ul li {
  font-size: 1rem;
  line-height: 1.8em;
  margin: 0;
  padding: 0;
  list-style-type: none;
  letter-spacing: 0.01em;
}
footer .footer-container .footer-item-wrapper .footer-item ul li a:hover {
  color: #699EFF;
}
footer .footer-container .footer-item-wrapper .footer-item ul li.bold {
  font-size: 1.125rem;
  font-weight: 600;
}
footer .footer-container .footer-item-wrapper .footer-item ul li.copyright {
  font-size: 0.9rem;
  line-height: 1.2em;
  white-space: nowrap;
}
footer .footer-container .footer-item-wrapper .footer-item ul li.rights {
  font-size: 0.8rem;
  color: rgba(19, 19, 19, 0.5);
}
footer .footer-container .footer-item-wrapper .footer-item ul li a.bold {
  font-size: 1.125rem;
  font-weight: 600;
}
footer .footer-container .footer-item-wrapper .footer-item .social-media-wrapper {
  margin-top: 1rem;
}
footer .footer-container .footer-item-wrapper .footer-item .social-media-wrapper .social-media-link {
  display: inline-block;
  width: 2rem;
  margin: 1rem 0.5rem 1rem 0;
  vertical-align: middle;
}
footer .footer-container .footer-item-wrapper::after {
  width: 25%;
  content: "";
}
@media (max-width: 767px) {
  footer .footer-container .footer-item-wrapper {
    flex-direction: column;
  }
  footer .footer-container .footer-item-wrapper .footer-item.right-aligned {
    text-align: left;
  }
}

body.form-page {
  margin: 0;
  background-color: #131313;
}

.form-module {
  max-width: 48rem;
  margin: 4rem auto 0;
  padding: 2rem;
  background-color: #F1F1F1;
}
.form-module .input-row-wrapper > * {
  float: left;
  margin-right: 2rem;
}
.form-module .input-row-wrapper > *:last-child {
  margin-right: 0;
}
.form-module .input-row-wrapper .input-wrapper.width-50 {
  width: calc(50% - 1rem);
}
.form-module .input-row-wrapper .input-wrapper.width-25 {
  width: calc(25% - 1.5rem);
}
.form-module .input-row-wrapper .input-wrapper.width-75 {
  width: calc(75% - 0.5rem);
}

/* components */
button,
input[type=submit] {
  font: inherit;
  line-height: normal;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  text-align: start;
  text-indent: 0;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  color: initial;
  border: none;
  background: #F1F1F1;
  box-shadow: none;
  text-shadow: none;
  text-rendering: auto;
  justify-content: center;
}

button:hover,
input[type=submit]:hover {
  background-color: #699EFF;
}

.button,
input[type=submit],
button,
a.button {
  font-family: Quicksand, sans-serif;
  font-weight: 600;
  display: block;
  width: auto;
  padding: 1rem 1rem;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 1;
  border: 1px solid #699EFF;
  background-color: transparent;
  color: #F1F1F1;
  margin: auto;
}

a.button:hover {
  background-color: #699EFF;
  color: #F1F1F1;
}

.button,
a.button {
  justify-content: center;
  text-align: center;
  border: 1px solid #699EFF;
  background-color: transparent;
  color: #699EFF;
  width: auto;
  padding: 1rem 1rem;
  text-decoration: none;
  display: inline;
  margin-top: 1.5rem;
}
.button.primary-button,
a.button.primary-button {
  color: #F1F1F1;
  background: #699EFF;
}
.button.secondary-button,
a.button.secondary-button {
  color: #F1F1F1;
  background: #1F2022;
}
.button.delete-button,
a.button.delete-button {
  color: #F1F1F1;
  background: #131313;
}
.button.success-button,
a.button.success-button {
  color: #F1F1F1;
  background: #131313;
}
.button.small,
a.button.small {
  font-size: 0.6rem;
  line-height: 2rem;
  height: 2rem;
}

.button-wrapper {
  margin-top: 3rem;
}
.button-wrapper .primary-button {
  float: right;
}
.button-wrapper .secondary-button {
  float: left;
}

a {
  font-weight: normal;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

a:-webkit-any-link {
  color: inherit;
}

a:-moz-any-link {
  color: inherit;
}

.text-link {
  text-decoration: underline;
}
.text-link:hover {
  color: #699EFF;
}

.link {
  cursor: pointer;
}

.formular {
  width: 100%;
  display: block;
  text-align: left;
  padding: 3rem;
  background-color: #1F203A;
  border: 1px solid #F1F1F1;
}

.input-wrapper {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 1.5rem;
  color: #F1F1F1;
  border: none;
}
.input-wrapper label,
.input-wrapper .label {
  font-size: 0.6rem;
  font-weight: 600;
  display: block;
  width: 100%;
  margin: 0;
  text-align: left;
  letter-spacing: 0.2em;
  color: #F1F1F1;
}
.input-wrapper input:read-only {
  cursor: not-allowed;
  background: transparent;
}
.input-wrapper input,
.input-wrapper select {
  font-family: Quicksand, sans-serif;
  font-size: 1rem;
  display: block;
  width: 100%;
  height: 2.5rem;
  padding: 0.5rem 3rem 0.5rem 0.5rem;
  cursor: text;
  color: #F1F1F1;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #F1F1F1;
}
.input-wrapper input:disabled,
.input-wrapper select:disabled {
  cursor: not-allowed;
  background: rgba(19, 19, 19, 0.1);
}
.input-wrapper input input::placeholder, .input-wrapper input textarea::placeholder,
.input-wrapper select input::placeholder,
.input-wrapper select textarea::placeholder {
  color: red;
  opacity: 1;
}
.input-wrapper input input::-ms-input-placeholder, .input-wrapper input textarea::-ms-input-placeholder,
.input-wrapper select input::-ms-input-placeholder,
.input-wrapper select textarea::-ms-input-placeholder {
  color: red;
}
.input-wrapper input input ::-webkit-input-placeholder, .input-wrapper input textarea ::-webkit-input-placeholder,
.input-wrapper select input ::-webkit-input-placeholder,
.input-wrapper select textarea ::-webkit-input-placeholder {
  color: red;
}
.input-wrapper select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input-wrapper ::-webkit-input-placeholder {
  color: rgba(19, 19, 19, 0.7);
}
.input-wrapper ::-moz-placeholder {
  color: rgba(19, 19, 19, 0.7);
}
.input-wrapper :-ms-input-placeholder {
  color: rgba(19, 19, 19, 0.7);
}
.input-wrapper ::placeholder {
  color: #F1F1F1;
}
.input-wrapper input[type=checkbox],
.input-wrapper input[type=radio] {
  display: none;
}
.input-wrapper input[type=checkbox] ~ label,
.input-wrapper input[type=radio] ~ label {
  font-size: 1rem;
  font-weight: normal;
  display: inline-block;
  width: auto;
  margin: 0;
  cursor: pointer;
  letter-spacing: 0.03em;
  text-transform: none;
}
.input-wrapper input[type=checkbox] ~ label span,
.input-wrapper input[type=radio] ~ label span {
  display: inline-block;
  padding: 0.25rem;
  vertical-align: middle;
}
.input-wrapper input[type=checkbox] ~ label span > *,
.input-wrapper input[type=radio] ~ label span > * {
  vertical-align: middle;
}
.input-wrapper input[type=checkbox] ~ label span.checkbox-unchecked, .input-wrapper input[type=checkbox] ~ label span.checkbox-checked,
.input-wrapper input[type=radio] ~ label span.checkbox-unchecked,
.input-wrapper input[type=radio] ~ label span.checkbox-checked {
  font-size: 0.875rem;
  line-height: 1rem;
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem 0.2em 0;
  padding: 0;
  text-align: center;
  border: 1px solid #131313;
  border-radius: 2px;
}
.input-wrapper input[type=checkbox] ~ label span.radio-checked, .input-wrapper input[type=checkbox] ~ label span.radio-unchecked,
.input-wrapper input[type=radio] ~ label span.radio-checked,
.input-wrapper input[type=radio] ~ label span.radio-unchecked {
  font-size: 1rem;
  line-height: 14px;
  width: 1rem;
  height: 1rem;
  margin: 0 0.5rem 0.2em 0;
  padding: 0;
  text-align: center;
  border: 1px solid #131313;
  border-radius: 50%;
}
.input-wrapper input[type=checkbox] ~ label span.radio-unchecked, .input-wrapper input[type=checkbox] ~ label span.checkbox-unchecked,
.input-wrapper input[type=radio] ~ label span.radio-unchecked,
.input-wrapper input[type=radio] ~ label span.checkbox-unchecked {
  display: inline-block;
  color: #131313;
}
.input-wrapper input[type=checkbox] ~ label span.radio-checked, .input-wrapper input[type=checkbox] ~ label span.checkbox-checked,
.input-wrapper input[type=radio] ~ label span.radio-checked,
.input-wrapper input[type=radio] ~ label span.checkbox-checked {
  display: none;
  color: #F1F1F1;
  border-color: transparent;
  background-color: #699EFF;
}
.input-wrapper input[type=checkbox]:checked ~ label span.radio-unchecked, .input-wrapper input[type=checkbox]:checked ~ label span.checkbox-unchecked,
.input-wrapper input[type=radio]:checked ~ label span.radio-unchecked,
.input-wrapper input[type=radio]:checked ~ label span.checkbox-unchecked {
  display: none;
}
.input-wrapper input[type=checkbox]:checked ~ label span.radio-checked, .input-wrapper input[type=checkbox]:checked ~ label span.checkbox-checked,
.input-wrapper input[type=radio]:checked ~ label span.radio-checked,
.input-wrapper input[type=radio]:checked ~ label span.checkbox-checked {
  display: inline-block;
}

textarea.input-field {
  width: 100%;
  min-height: 21rem;
  align-items: center;
  background-color: transparent;
  border: 1px solid #F1F1F1;
  padding: 1rem;
  resize: vertical;
  overflow: auto;
  font-family: Quicksand, sans-serif;
  font-size: 1rem;
  color: #F1F1F1;
}

@media (max-width: 767px) {
  .formular {
    padding: 1rem;
    margin-top: 1rem;
  }
}
/* pages */
.home .module .container.no-padding-top {
  padding: 0 0 8rem 0;
}
.home .flex-module {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home .item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.home .item img {
  width: 4rem;
  height: auto;
}
.home .w-30 {
  width: 30%;
}
.home .w-20 {
  width: 20%;
}
.home .w-25 {
  width: 25%;
}
.home .w-50-container {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.home .w-50-container.align-end {
  align-items: flex-end;
}
.home .w-50-container img {
  width: 12rem;
  align-items: flex-end;
}
.home .w-50-container .bmftr {
  width: 100%;
}
.home .logo-image {
  height: auto;
}
.home .logo-image.small-image img {
  width: 40%;
}
.home .logo-container {
  width: 12rem;
  align-items: center;
  justify-content: center;
}
.home .logo-container a:hover {
  color: #699EFF;
}
.home .headline-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 1rem;
  padding: 0 0 6rem 0;
}
.home .headline-wrapper p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #699EFF;
}
.home .headline-wrapper.center-align {
  text-align: center;
  align-items: center;
}
.home .content-wrapper {
  flex-direction: column;
  text-align: left;
  gap: 3rem;
  display: flex;
  align-items: center;
}
.home .bullet-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  gap: 5rem;
  position: relative;
}
.home .circle-with-line {
  width: 5rem;
  height: 5rem;
  border: 0.125rem solid #FF0F8F;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
}
.home .circle-with-line span {
  color: #F1F1F1;
  font-size: 1.5rem;
}
.home .content {
  padding: 0 0 0 8rem;
}
.home .content h2 {
  font-size: 1.25rem;
}
.home .content p {
  font-size: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home .w-20 {
    width: 45%;
    margin-bottom: 2rem;
  }
  .home .headline-wrapper {
    padding: 0 0 3rem 0;
  }
}
@media (max-width: 767px) {
  .home .headline-wrapper {
    padding: 5rem 0 3rem 0;
  }
  .home .flex-module {
    flex-direction: row;
    align-items: center;
  }
  .home .flex-module.m-reverse {
    flex-direction: column-reverse;
  }
  .home .w-30 {
    width: 100%;
  }
  .home .w-20 {
    width: 100%;
  }
  .home .w-25 {
    margin: 0 1rem 2rem 0;
    width: 12rem;
  }
  .home .w-50-container {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .home .w-50-container.align-end {
    align-items: center;
  }
  .home .item {
    margin: 0rem 0 2rem 0;
  }
  .home .item img {
    width: 3rem;
  }
  .home .circle-with-line {
    width: 4rem;
    height: 4rem;
  }
  .home .content {
    padding: 5rem 0 0 0;
  }
}

.privacy {
  word-wrap: break-word;
  hyphens: auto;
}
.privacy .content p, .privacy .content a {
  font-size: 1.125rem;
  line-height: 1.8rem;
  padding: 0.5rem 0;
}
.privacy .content a:hover {
  color: #699EFF;
}
.privacy h1, .privacy h2, .privacy h3 {
  color: #F1F1F1;
}
.privacy h1 {
  font-family: Quicksand, sans-serif, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  padding-bottom: 2rem;
}
.privacy h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
}
.privacy h3 {
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem 0;
}
.privacy ul {
  margin: 0;
  padding: 0 0 1rem 0;
}
.privacy ul li {
  font-size: 1.125rem;
  line-height: 1.8rem;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.privacy ul li a:hover {
  color: #699EFF;
}
.privacy ul.points li {
  margin-left: 1rem;
  list-style-type: disc;
}
.privacy .button-container {
  display: flex;
  flex-direction: column;
  max-width: 4rem;
  margin-bottom: 2rem;
}
.privacy .button-marker {
  margin-top: 0.5rem;
  background-color: #699EFF;
  height: 0.4rem;
}

.error-page .module.error {
  min-height: 75vh;
  padding: 5rem;
  justify-content: center;
  text-align: center;
}
.error-page .module.error h1 {
  margin-bottom: 5rem;
}
.error-page .module.error h2 {
  margin: 1rem 0;
}
.error-page .module.error p {
  margin: 1rem 0 2rem;
}

/* themes */
/* vendors */

/*# sourceMappingURL=main.css.map */
