<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('fonts.css');
@import url('fontawesome.min.css');
@import url('bootstrap-icons.min.css');
@import url('vegas.min.css');

:root {
  --bs-primary: #c8ac6d;
  --bs-primary2: #ab8f4f;
  --bs-secondary: #000;
}

html, body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.8;
  height: 100%;
  color: var(--bs-secondary);
}

/* TYPOGRAPHY */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: 'Josefin Sans', 'Roboto', sans-serif;
  margin: 30px 0;
  font-weight: 600;
  color: var(--bs-primary);
  position: relative;
  font-style: italic;
}
h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
  font-family: 'Roboto', sans-serif;
  margin-left: 30px;
  margin-top: 15px;
  font-style: normal;
  font-weight: 300;
  color: var(--bs-secondary);
}

h1, .h1 {
  font-size: 48px;
}
h2, .h2 {
  font-size: 42px;
}
h3, .h3 {
  font-size: 36px;
}
h4, .h4 {
  font-size: 30px;
}
h5, .h5 {
  font-size: 24px;
}
h6, .h6 {
  font-size: 18px;
}

p {
  margin: 15px 0;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

a {
  color: var(--bs-secondary);
  text-decoration: none;
  transition: all .25s;
}
a:hover {
  color: var(--bs-primary);
  text-decoration: none;
}

small {
  display: block;
  font-size: 65%;
  text-transform: none;
  color: var(--bs-secondary);
}

b, strong, .fw-bold {
  font-weight: 600;
}

hr {
  margin: 60px;
  background-color: var(--bs-secondary);
  height: 2px;
  opacity: .5;
}

.ul {
  list-style-image: url('../img/ul.png');
  padding-left: 25px;
}

/* CTA */
.cta {
  display: block;
  padding: 15px;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  z-index: 500;
  line-height: 1;
  font-weight: 600;
  font-size: 22px;
}
.cta:hover {
  background-color: var(--bs-primary2);
  color: var(--bs-white);
}

/* TEXT */
.text-primary {
  color: var(--bs-primary) !important;
}
.text-secondary {
  color: var(--bs-secondary) !important;
}

/* BACKGROUND */
.bg-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white);
}
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6,
.bg-primary a,
.bg-primary small {
  color: var(--bs-white);
}
.bg-primary hr {
  background-color: var(--bs-white);
}

.bg-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-white);
}
.bg-secondary small {
  color: var(--bs-white);
}
.bg-secondary hr {
  background-color: var(--bs-white);
}

/* BUTTONS */
.btn-close {
  border-radius: 0;
  box-shadow: none !important;
}
.btn-menu-contact {
  display: block;
  width: 100%;
  background-color: var(--bs-white);
  color: var(--bs-secondary);
  padding: 10px 0;
}

.btn {
  border-radius: 0;
  box-shadow: none  !important;
  border: none;
}

.btn-primary {
  background-color: var(--bs-primary) !important;
  color: var(--bs-white) !important;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--bs-primary2) !important;
  color: var(--bs-white) !important;
}

.btn-secondary {
  background-color: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #222 !important;
  color: var(--bs-white) !important;
}

/* HEADER */
.header {
  display: block;
  padding: 30px 0;
  background-color: rgba(255,255,255,0.75);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  backdrop-filter: blur(10px);
}
.header-logo {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 420px;
}

/* INFOLINE */
.infoline {
  display: block;
  position: relative;
  background-color: var(--bs-primary);
  color: var(--bs-white);
  padding: 30px 0;
  text-align: center;
  line-height: 1.5;
}
.infoline strong {
  font-size: 22px;
}

/* MENU */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-secondary);
  font-size: 50px;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
.menu-btn:hover {
  color: var(--bs-primary);
}

.nav .nav-link {
  border-radius: 0;
  color: var(--bs-white);
  padding: 5px 0;
  margin-bottom: 5px;
  font-size: 25px;
}
.nav .nav-link:hover,
.nav .nav-link:focus,
.nav .nav-link.active {
  background: none;
  color: var(--bs-secondary);
}
.nav .nav-link:last-child {
  margin-bottom: 0;
}

.offcanvas.menu .offcanvas-header {
  background-color: var(--bs-primary);
  padding-bottom: 0;
}
.offcanvas.menu .offcanvas-header .offcanvas-title {
  color: var(--bs-white);
  font-weight: 600;
}
.offcanvas.menu .offcanvas-header .btn-close {
  --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") !important;
}
.offcanvas.menu .offcanvas-body {
  background-image: url('../img/nav-bg.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto;
}

/* SECTION */
.section {
  display: block;
  position: relative;
  padding: 120px 0;
}
.section.section-grid-bg {
  background-image: url('../img/content-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section.section-parallax {
  display: block;
  position: relative;
  min-height: 450px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.section#section-aktuelle-kurse {
  background-image: url('../img/section/aktuelle_kurse.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#section-start {
  min-height: 100%;
}
#section-start .next-section {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(255,255,255,.75);
  color: var(--bs-secondary);
  font-size: 38px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  padding-bottom: 15px;
  backdrop-filter: blur(10px);
}
#section-start .next-section:hover {
  padding-bottom: 0px;
  padding-top: 15px;
}
#section-start .fader {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#section-start .slogan {
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 75px;
  z-index: 2;
  font-size: 45px;
  padding: 0 15px;
  color: var(--bs-white);
  text-shadow: 3px 3px 5px rgba(0,0,0,.35);
  font-weight: 900;
}

/* FOOTER */
.footer {
  display: block;
  position: relative;
  padding: 45px 0;
  color: var(--bs-white);
  background-color: var(--bs-primary);
  background-image: url('../img/footer-bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer-title {
  color: var(--bs-white);
}
.footer a {
  color: var(--bs-white);
}
.footer a:hover {
  color: var(--bs-white);
  opacity: .5;
}

.footer-end {
  background-color: var(--bs-secondary);
  color: #999;
  font-size: 16px;
}
.footer-end a {
  color: #999;
}
.footer-end a:hover {
  color: #999;
  opacity: .5;
}

/* OFFCANVAS */
.offcanvas {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border: none !important;
  box-shadow: none;
}
.offcanvas-header {
  padding: 30px;
}
.offcanvas-header .offcanvas-title {
  font-size: 25px;
  margin: 0;
  color: var(--bs-secondary);
}
.offcanvas-body {
  padding: 30px;
}

.offcanvas-backdrop {
  background-color: var(--bs-white);
}
.offcanvas-backdrop.show {
  opacity: .75;
}

/* CARD */
.card {
  border-radius: 0;
  border: none;
  box-shadow: 5px 5px 5px 0 rgba(0,0,0,.15);
}
.card-body {
  padding: 30px;
}
.card-price {
  margin-top: 45px;
}
.card-price .price {
  text-align: center;
  font-size: 22px;
  margin: 0;
  line-height: 1.5;
}
.card-price .price-icon {
  display: block;
  margin: 0 auto 5px auto;
  width: 100px;
  margin-top: -60px;
  margin-bottom: 15px;
}
.card-price .price span {
  display: block;
  font-size: 55px;
}
.card-price .price small {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  margin-top: -5px;
}

/* ACCORDION */
.accordion-item {
  margin-bottom: 15px;
  border: none;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-header {
  margin: 0;
  border: none;
}
.accordion-button {
  color: var(--bs-secondary);
  box-shadow: none !important;
  font-size: 22px;
}
.accordion-button:not(.collapsed) {
  background-color: var(--bs-primary);
  color: var(--bs-white);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* FORM */
.form-label {
	font-weight: 600;
}
.form-group {
	margin-bottom: 15px;
}
.form-control,
.form-select {
	border-radius: 0;
}
.form-control:focus,
.form-select:focus {
	box-shadow: none;
	border-color: var(--bs-tertiary);
}

.input-group-text {
	border-radius: 0;
	background-color: var(--bs-secondary);
	border-color: var(--bs-secondary);
	color: var(--bs-white);
}

.form-check-input {
  box-shadow: none !important;
}
.form-check-input,
.form-check-input:focus {
  border-color: var(--bs-secondary);
}
.form-check-input:checked {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.has-error .form-control,
.has-error .form-select {
	border-color: var(--bs-danger);
}
.has-error .form-label,
.has-error .form-check-label,
.has-error .help-block {
	color: var(--bs-danger);
}

#danke {
	display: none;
}


/* MOBILE */
@media (max-width: 1399.98px) { }
@media (max-width: 1199.98px) { 
  /* SECTION */
  .section {
    padding: 60px 0;
  }
  .section#section-aktuelle-kurse,
  .section.section-parallax {
    background-attachment: scroll;
  }
  .section.section-parallax {
    min-height: 400px;
  }
}
@media (max-width: 991.98px) { 
  h1, .h1 {
    font-size: 40px;
  }
  h2, .h2 {
    font-size: 36px;
  }
  h3, .h3 {
    font-size: 30px;
  }
  h4, .h4 {
    font-size: 24px;
  }
  h5, .h5 {
    font-size: 18px;
  }
  h6, .h6 {
    font-size: 18px;
  }

  /* CTA */
  .cta {
    position: fixed;
    bottom: 120px;
    right: -86px;
    transform: rotate(-90deg); 
    font-size: 18px;
  }

  /* HEADER */
  .header-logo {
    max-width: 300px;
  }

  /* SECTION */
  .section {
    padding: 30px 0;
  }
  .section.section-parallax {
    min-height: 300px;
  }
}
@media (max-width: 767.98px) {

}
@media (max-width: 575.98px) { 
  /* HEADER */
  .header-logo {
    max-width: 220px;
  }
}</pre></body></html>