:root {
  --primary-color: #270134;
  --primary-color-80pct: rgb(39, 1, 52, .8);
  --primary-color-60pct: rgb(39, 1, 52, .6);
  --primary-text-color: white;
  --primary-color-accent: #39014d;
  --primary-text-color-accent: var(--primary-text-color);
  --primary-background: #f8edfc;

  --header-color: var(--primary-color);

  --body-background-color: var(--primary-background);
}

@font-face {
  font-family: "Titillium";
  src: local('Titillium'), url(../fonts/Titillium.ttf) format("truetype");
}

.font-titillium {
  font-family: Titillium, sans-serif;
}

a {
  color: #111;
  text-decoration: none;
}

a,
.btn {
  transition: all 0.125s ease-in-out 0s;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
  background-color: var(--body-background-color);
}


/* Landing */

.landing-section {
  position: relative;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  z-index: 0;
  background-size: cover;
}

.landing-section:before {
  position: absolute;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(119, 47, 109, 0.52) 95%, rgba(115, 35, 105, 0.58) 100%);
  content: " ";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.landing-caption {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.landing-heading {
  text-transform: uppercase;
  letter-spacing: 24px;
  font-weight: 400;
  font-family: Titillium, sans-serif;
  font-size: 6em;
  color: white;
}

.landing-subheading {
  font-family: Titillium, sans-serif;
  font-size: 2em;
  color: white;
  white-space: nowrap;
}

.banner-img {
  height: 50%;
}

.banner-img>img {
  display: block;
  margin-top: -50%;
  position: relative;
  z-index: 99;
  width: 100%;
}

@media (max-width: 991px) {
  .landing-heading {
    letter-spacing: 12px;
    font-size: 5em;
  }

  .landing-subheading {
    font-size: 1.75em;
  }
}

@media (max-width: 767px) {
  .landing-heading {
    letter-spacing: 6px;
    font-size: 4em;
  }

  .landing-subheading {
    font-size: 1.5em;
  }
}

/* Navbar */
nav:not(.navbar-fade)+main {
  padding-top: 56px;
}

.navbar-brand {
  letter-spacing: 4px;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
}

/* Modules */
.module,
.module-small,
.module-extra-small,
.module-medium {
  position: relative;
  padding: 140px 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.module-small {
  padding: 50px 0;
}

.module-extra-small {
  padding: 25px 0px;
}

.module-medium {
  padding: 75px 0px;
}

.module-title {
  font-family: Titillium, sans-serif;
  position: relative;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  color: #111;
  margin: 0 0 25px;
}

.module-subtitle {
  text-align: center;
  font-size: 24px;
  color: #111;
}

/* Scroll to top */
.scroll-up {
  position: fixed;
  display: none;
  bottom: 16px;
  right: 16px;
  z-index: 9999;
}

.scroll-up a {
  background: #fff;
  display: block;
  height: 24px;
  width: 24px;
  text-align: center;
  line-height: 24px;
  font-size: 14px;
  color: #333;
  opacity: 0.6;
  border-radius: 2px;
}

.scroll-up a:hover,
.scroll-up a:active {
  opacity: 1;
  color: #000;
}

/*--------------------------------------------------------------
	Preloader
--------------------------------------------------------------*/
.page-loader {
  position: fixed;
  background: #000;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  z-index: 9998;
}

.loader {
  position: absolute;
  border-left: 2px solid #ffffff;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  border-right: 2px solid rgba(255, 255, 255, 0.2);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  height: 46px;
  width: 46px;
  left: 50%;
  top: 50%;
  margin: -23px 0 0 -23px;
  text-indent: -9999em;
  font-size: 10px;
  z-index: 9999;
  -webkit-animation: load 0.8s infinite linear;
  -moz-animation: load 0.8s infinite linear;
  ms-animation: load 0.8s infinite linear;
  o-animation: load 0.8s infinite linear;
  animation: load 0.8s infinite linear;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 46px;
  height: 46px;
}

@-webkit-keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
	Parallax Background
--------------------------------------------------------------*/

.parallax-bg {
  position: relative;
  background-attachment: fixed;
  background-size: cover;
}

.parallax-bg::before {
  position: absolute;
  content: " ";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: var(--primary-color-60pct);
}

.parallax-bg > .container {
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
	Price Table
--------------------------------------------------------------*/
.price-table {
  background: #fff;
  border: 1px solid #eaeaea;
  padding: 25px 20px;
  margin: 15px 0 30px;
  border-radius: 2px;
  text-align: center;
}

.price-table:hover {
  border-color: #CACACA;
}

.price-table h4 {
  font-family: Titillium, sans-serif;
  text-transform: uppercase;
  color: #111;
  margin: 0;
  min-height: unset !important;
}

.price-table.best {
  margin: 0 0 30px;
}

.price-table .small {
  margin: 0;
}

.borderline, .line {
  position: relative;
  background: #eaeaea;
  display: block;
  height: 1px;
  width: 100%;
  margin: 20px 0 15px;
}

.borderline:before {
  position: absolute;
  background: #eaeaea;
  content: "";
  bottom: -7px;
  left: 50%;
  height: 14px;
  width: 14px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  margin-left: -7px;
}

.borderline:after {
  position: absolute;
  background: #fff;
  content: "";
  bottom: -5px;
  left: 50%;
  height: 16px;
  width: 16px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  margin-left: -8px;
}

.price-table p.price {
  font-size: 60px;
  color: #111;
  padding: 0;
  margin: 0 0 0 -10px;
  font-family: Titillium, sans-serif;
}

.price-table p.price.small {
  font-size: 24px;
}

.price-table p.price span {
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  padding-top: 20px;
}

.price-table .price-no-vat {
  width: 100%;
  position: relative;
}

.price-table .price-no-vat::after {
  content: "zzgl. MwSt.";
  position: absolute;
  font-size: 12px;
  right: 0;
  top: 52px;
}

.price-table .price-vat {
  width: 100%;
  position: relative;
}

.price-table .price-vat::after {
  content: "inkl. MwSt.";
  position: absolute;
  font-size: 12px;
  right: 0;
  top: 12px;
}

.price-details {
  list-style: none;
  padding: 0;
  margin: 0 0 23px;
  font-size: 20px;
}

.price-details li {
  padding: 7px 0;
}

.price-details li>span {
  text-decoration: line-through;
  color: #aaa;
}




/* compat */

.cbg-primary {
  background: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--primary-text-color);
}

.cbg-accent {
  background: var(--primary-color-accent);
  background-color: var(--primary-color-accent);
  color: var(--primary-text-color-accent);
}