/**************************************************
 *
 * Stylesheet contains:
 *
 * Please check documentation below
 *
 ***************************************************/
/***************************************************
*
* PROJECT DOCUMENTATION
*
* This stylesheet is built with SASS, located in assets/css/sass/style.scss and output to assets/css/clara.css
*
* style.css as the main stylesheet follows the structure of sub stylesheets, written after the SMACSS method
*
* Theme styles, default theme settings: assets/css/sass/_variables.scss
* Override Bootstrap styles, definition of general settings for HTML-elements: css/sass/_base.scss
* Define modules: assets/css/sass/_modules.scss
* Global layout setup: assets/css/sass/_layout.scss
*
* For special overrides see special CSS-Files.
*
***************************************************/
/**************************************************
*
* 1 Variables
*
* Define your variables for colors and anything else you might need
*
***************************************************/
/**************************************************
 *
 * Color definitions
 *
 ***************************************************/
/* Background */
/* Gray */
/* Peach */
/**************************************************
*
* 2 Base: Override Bootstrap styles, definition of
* general settings for HTML-elements
*
* https://getbootstrap.com/docs/4.5/getting-started/introduction/
*
* Specify settings in your module or layout scss-files
*
***************************************************/
/**************************************************
 *
 * General settings
 *
 ***************************************************/
html {
  scroll-behavior: smooth; }

body {
  padding-top: 4rem;
  font-family: "CircularXXWeb-Regular", "Tahoma", sans-serif;
  overflow-y: scroll;
  overflow-x: hidden;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  color: #000;
  background-color: #fff;
  animation: fadein 1s; }

@media screen and (min-width: 1200px) {
  body {
    padding-top: 0; } }
@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
/**************************************************
 *
 * Headings
 *
 ***************************************************/
/*
* Headings
 */
/* General headline styles */
h1, h2, h3, h4, h5, h6 {
  color: #000; }

/* Darkgray for mobile H1 */
@media screen and (max-width: 1199px) {
  h1 {
    color: #212424; } }
/* H1 */
h1 {
  font-size: 1.875rem;
  line-height: 1.25; }

@media screen and (min-width: 1200px) {
  h1 {
    font-size: 3rem;
    letter-spacing: -0.0625rem; } }
/* H2 */
h2 {
  font-size: 1.5rem;
  line-height: 1.25; }

@media screen and (min-width: 1200px) {
  h2 {
    font-size: 2rem; } }
.clara-intro-text-section h2 {
  font-size: 1.875rem;
  line-height: 1.25; }

@media screen and (min-width: 1200px) {
  .clara-intro-text-section h2 {
    font-size: 3rem;
    letter-spacing: -0.0625rem; } }
/* H3 */
h3 {
  font-size: 1.25rem;
  line-height: 1.4; }

@media screen and (min-width: 1200px) {
  h3 {
    font-size: 1.75rem; } }
/**************************************************
 *
 * Text
 *
 ***************************************************/
/*
* Text flow
 */
p {
  font-size: 1.125rem;
  line-height: 1.333;
  letter-spacing: 0.03125rem;
  color: #323232; }

@media screen and (min-width: 1200px) {
  p {
    font-size: 1.25rem;
    line-height: 1.4; } }
/* Textlinks content */
.leistung-page-section a:not(.btn) {
  text-decoration: underline;
  color: inherit; }

.leistung-page-section a:not(.btn):hover {
  color: #f5b4a4; }

/**************************************************
 *
 * Lists
 *
 ***************************************************/
/*
* Simple list
 */
.clara-content ol,
.clara-frontpage-section ol,
.leistung-page-section ol {
  list-style-type: decimal; }

.clara-content ul,
.clara-frontpage-section ul,
.leistung-page-section ul {
  padding-left: 0;
  list-style-type: none; }

.clara-content ul li,
.clara-frontpage-section ul li,
.leistung-page-section ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.333;
  letter-spacing: normal;
  color: #323232; }

.clara-content ul li::before,
.clara-frontpage-section ul li::before,
.leistung-page-section ul li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  content: "*"; }

@media screen and (min-width: 1200px) {
  .clara-content ol li,
  .clara-frontpage-section ol li,
  .leistung-page-section ol li,
  .clara-content ul li,
  .clara-frontpage-section ul li,
  .leistung-page-section ul li {
    font-size: 1.25rem;
    line-height: 1.4; }

  .clara-content ul li::before,
  .clara-frontpage-section ul li::before,
  .leistung-page-section ul li::before {
    top: 0.25rem;
    left: 0; } }
/**************************************************
 *
 * Buttons / Links
 *
 ***************************************************/
.btn {
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.03125rem;
  color: #fff;
  border-radius: 1.78rem; }

/*
* Primary
 */
.btn-primary {
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  background-color: #000;
  border-color: #000; }

.btn-primary:hover {
  color: #fff;
  background-color: #f5b4a4;
  border-color: #f5b4a4; }

.btn-primary:active, .btn-primary.active,
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #f5b4a4 !important;
  border-color: #f5b4a4 !important;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.1);
  outline: none !important; }

.btn-nav {
  color: #fff !important; }

/*
* Small button
 */
.btn-secondary {
  padding: 0.75rem 1.875rem;
  text-transform: uppercase;
  background-color: #000;
  border-color: #000; }

@media screen and (min-width: 1200px) {
  .btn-secondary {
    font-size: 0.875rem;
    letter-spacing: 0.0275rem; } }
.btn-secondary:hover {
  color: #fff;
  background-color: #f5b4a4;
  border-color: #f5b4a4; }

.btn-secondary:active, .btn-secondary.active,
.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #f5b4a4;
  border-color: #f5b4a4;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.1); }

/* Margins */
.btn-primary,
.btn-secondary {
  margin: 1.875rem 0.5625rem; }

@media screen and (min-width: 1200px) {
  .btn-primary,
  .btn-secondary {
    margin: 1.875rem 0.75rem; } }
.btn-primary:first-of-type,
.btn-secondary:first-of-type {
  margin-left: 0; }

.navbar-clara .btn-primary {
  width: 100%; }

.btn-nav {
  margin-top: 0;
  margin-bottom: 0; }

/* Scroll Btn */
.btn-scroll-down {
  position: absolute;
  top: 85vh;
  left: calc(50% - 8.875rem);
  border: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.055625rem;
  line-height: 2.38;
  color: #000;
  animation: pulsating 2s infinite; }

.btn-scroll-down::after {
  position: absolute;
  top: 2rem;
  left: calc(50% - 0.1rem);
  content: ' \02192';
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg); }

@keyframes pulsating {
  50% {
    transform: scale(1.1); } }
@media screen and (min-width: 768px) and (max-width: 991px) {
  .btn-scroll-down {
    display: none; } }
/*
* Link
 */
.clara-link {
  padding-right: 0;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.0275rem;
  color: #000; }

.clara-link::after {
  content: " \2192"; }

@media screen and (min-width: 1200px) {
  .clara-link {
    font-size: 1.125rem;
    letter-spacing: 0.03125rem; } }
.clara-link:hover,
.clara-link:focus {
  color: #f5b4a4; }

/*
* Text link
 */
.clara-content a {
  color: #f5f3f5; }

.clara-content a:hover,
.clara-content a:focus {
  color: #f5b4a4; }

button:focus {
  outline: none; }

.preise-und-finanzierung tbody td.clara-muted {
  color: #c7c7c7; }

/**************************************************
 *
 * Bootstrap Cards
 *
 ***************************************************/
.card {
  border: transparent;
  border-radius: 0.1875rem; }

.card-header {
  background-color: transparent;
  border-bottom: transparent; }

.card-img, .card-img-bottom {
  border-radius: 0; }

/**************************************************
*
* 3 Nav: Customize Bootstrap nav menus
*
* https://getbootstrap.com/docs/4.5/components/navs/
* Write everything down here that has to do with user navigation
*
*
***************************************************/
/* Using Bootstrap's navbar-light as preset for navbar-clara */
.navbar-clara .navbar-brand {
  padding-top: 0.5rem;
  line-height: 2.5rem; }

@media screen and (min-width: 1200px) {
  .navbar-clara .navbar-brand {
    line-height: 4.1875rem; } }
.navbar-clara .navbar-brand svg {
  display: inline-block;
  width: 7.5rem;
  height: auto;
  vertical-align: baseline; }

.navbar-clara .navbar-brand:hover, .navbar-clara .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9); }

.navbar-clara .navbar-nav .nav-link {
  padding: 0.5rem 0.5rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: #000; }

@media screen and (min-width: 1200px) {
  .navbar-clara .navbar-nav .nav-link {
    padding: 1.35rem 1.5rem;
    letter-spacing: 0.055625rem; } }
.navbar-clara .navbar-nav .nav-link:hover, .navbar-clara .navbar-nav .nav-link:focus {
  color: #f5b4a4; }

.navbar-clara .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3); }

.navbar-clara .navbar-nav .show > .nav-link,
.navbar-clara .navbar-nav .active > .nav-link,
.navbar-clara .navbar-nav .nav-link.show,
.navbar-clara .navbar-nav .nav-link.active {
  color: #f5b4a4;
  outline: 0 !important; }

.navbar-clara .navbar-toggler {
  color: transparent;
  border-color: transparent; }

.navbar-clara .navbar-toggler-icon {
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2219px%22%20height%3D%2219px%22%20viewBox%3D%220%200%2019%2019%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Ctitle%3EGroup%2019%3C%2Ftitle%3E%0A%20%20%20%20%3Cg%20id%3D%22Symbols%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke-linecap%3D%22square%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22herosection-mobile%22%20transform%3D%22translate(-341.000000%2C%20-37.000000)%22%20stroke%3D%22%23000000%22%20stroke-width%3D%222%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-17%22%20transform%3D%22translate(342.000000%2C%2038.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cline%20x1%3D%220%22%20y1%3D%220.600000024%22%20x2%3D%2216.8000007%22%20y2%3D%220.600000024%22%20id%3D%22Line-6%22%3E%3C%2Fline%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cline%20x1%3D%222.58461549%22%20y1%3D%228.40000033%22%20x2%3D%2216.8000007%22%20y2%3D%228.40000033%22%20id%3D%22Line-6-Copy%22%3E%3C%2Fline%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cline%20x1%3D%220%22%20y1%3D%2216.2000006%22%20x2%3D%2216.8000007%22%20y2%3D%2216.2000006%22%20id%3D%22Line-6-Copy-2%22%3E%3C%2Fline%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E"); }

.navbar-clara .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2219px%22%20height%3D%2219px%22%20viewBox%3D%220%200%2019%2019%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3Ctitle%3EGroup%2030%3C%2Ftitle%3E%0A%20%20%20%20%3Cg%20id%3D%22Design%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20stroke-linecap%3D%22square%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22%5BMobile%5D-Men%C3%BC%22%20transform%3D%22translate(-342.000000%2C%20-36.000000)%22%20stroke%3D%22%23000000%22%20stroke-width%3D%222%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-30%22%20transform%3D%22translate(343.000000%2C%2037.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cline%20x1%3D%22-2.25569023%22%20y1%3D%228.30790859%22%20x2%3D%2218.4722525%22%20y2%3D%228.69209141%22%20id%3D%22Line-6%22%20transform%3D%22translate(8.108281%2C%208.500000)%20rotate(43.826046)%20translate(-8.108281%2C%20-8.500000)%20%22%3E%3C%2Fline%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cline%20x1%3D%22-2.25485902%22%20y1%3D%228.26734673%22%20x2%3D%2218.4714213%22%20y2%3D%228.73265327%22%20id%3D%22Line-6%22%20transform%3D%22translate(8.108281%2C%208.500000)%20rotate(-46.173954)%20translate(-8.108281%2C%20-8.500000)%20%22%3E%3C%2Fline%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E"); }

.navbar-clara .navbar-text {
  color: rgba(0, 0, 0, 0.5); }

.navbar-clara .navbar-text a {
  color: rgba(0, 0, 0, 0.9); }

.navbar-clara .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9); }

/*
* Dropdown
 */
.dropdown-menu {
  float: left;
  padding: 1rem 0.5rem;
  margin: 0.125rem 0 0;
  color: #000;
  text-align: left;
  text-transform: uppercase;
  border-color: #fff; }

@media screen and (min-width: 1200px) {
  .dropdown-menu {
    float: right;
    min-width: 13.3975rem;
    padding: 1.6875rem 0.5rem;
    text-align: right;
    border-radius: 0.1875rem;
    box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.16); } }
.dropdown-item {
  padding: 0.5rem 1.5rem;
  font-weight: 300;
  color: #000; }

.dropdown-item:hover, .dropdown-item:focus {
  color: #f5b4a4;
  text-decoration: none;
  background-color: transparent; }

.dropdown-item.active, .dropdown-item:active {
  color: #f5b4a4;
  text-decoration: none;
  background-color: transparent; }

/**************************************************
 *
 * Footer navs
 *
 ***************************************************/
.site-footer .nav-link {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  color: #f9f9fa; }

@media screen and (max-width: 575px) {
  .site-footer .nav-link {
    padding-right: 0;
    padding-left: 0; } }
/**************************************************
 *
 * Scroll-up
 *
 ***************************************************/
.scroll-up {
  display: none;
  position: fixed;
  bottom: 4rem;
  right: 0.8rem;
  width: 4rem;
  height: 4rem;
  font-size: 2rem;
  line-height: 2rem;
  text-align: center;
  border: 0.0625rem black solid;
  border-radius: 100%;
  background-color: white;
  cursor: pointer; }

.scroll-up:hover.scrolled {
  border-color: transparent;
  box-shadow: 1px 1px 3px #f7f7f7;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }

.scroll-up.scrolled {
  display: block; }

/**************************************************
*
* 4 Icons: Specify icons
*
* Write everything down here that has to do with icons
*
*
***************************************************/
/**************************************************
*
* 5 Modules: Module and component styling. Use Bootstrap components.
*
* https://getbootstrap.com/docs/4.5/components
*
* You are free to write your own components and style them here or
* in a seperate scss-file
*
***************************************************/
/**************************************************
 *
 * Page Modules
 *
 ***************************************************/
/*
* CTA Type 1
 */
.clara-cta-1 {
  position: relative;
  margin-top: 4rem;
  background-repeat: no-repeat; }

@media screen and (max-width: 575px) {
  .clara-cta-1 {
    background-image: url("../../home/cta_mobile.jpg");
    background-size: 100%;
    background-position: left top; }

  .clara-cta-1 .btn {
    width: 100%;
    margin-top: 7.5rem; } }
@media screen and (min-width: 576px) and (max-width: 991px) {
  .clara-cta-1 {
    background-image: url("../../home/cta_mobile.jpg");
    background-size: 100%;
    background-position: left bottom; }

  .clara-cta-1 .btn {
    margin-top: 3rem; } }
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .clara-cta-1 {
    background-image: url("../../home/cta_bg.jpg");
    background-position: 0 70%;
    background-size: cover;
    object-fit: cover; }

  .clara-cta-1 .btn {
    margin-top: 6rem; } }
@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .clara-cta-1 {
    background-image: url("../../home/cta_bg.jpg");
    background-position: 0 70%;
    background-size: cover;
    object-fit: cover; } }
@media screen and (min-width: 1441px) {
  .clara-cta-1 {
    background-image: url("../../home/cta_bg.jpg");
    background-position: 0 70%;
    background-size: cover;
    object-fit: cover; } }
@media screen and (max-width: 575px) {
  .clara-cta-1 h1 {
    font-size: 1.875rem; } }
/**************************************************
 *
 * Front Page Modules
 *
 ***************************************************/
/*
* Jumbotron
 */
/*
* Carousel general settings
 */
/*
* Carousel Benefits
 */
#clara-benefits .owl-item {
  padding-top: 4.5rem; }

@media screen and (min-width: 1200px) {
  #clara-benefits .owl-item {
    padding-top: 5rem; } }
.benefit-carousel-item {
  height: 22rem;
  overflow-y: visible;
  background-color: #f5f3f5; }

@media screen and (max-width: 575px) {
  .benefit-carousel-item {
    margin-bottom: 1rem; } }
@media screen and (min-width: 768px) and (max-width: 991px) {
  .benefit-carousel-item {
    height: 28rem; } }
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .benefit-carousel-item {
    height: 22rem; } }
@media screen and (min-width: 1200px) {
  .benefit-carousel-item {
    height: 28rem; } }
/* Benefit card header */
.benefit-carousel-item .card-header {
  width: 100%;
  height: 6.25rem;
  padding: 1rem;
  margin-bottom: 0; }

@media screen and (min-width: 768px) and (max-width: 991px) {
  .benefit-carousel-item .card-header {
    height: 4.5rem; } }
@media screen and (min-width: 768px) and (max-width: 991px) {
  .benefit-carousel-item .card-header {
    height: 5.5rem; } }
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .benefit-carousel-item .card-header {
    height: 5.5rem; } }
@media screen and (min-width: 1200px) {
  .benefit-carousel-item .card-header {
    height: 5.5rem;
    padding: 1rem 2rem; } }
.benefit-carousel-item .card-header > img {
  width: 4.75rem;
  height: auto; }

@media screen and (max-width: 575px) {
  .benefit-carousel-item .card-header > img {
    width: 4.75rem;
    padding-bottom: 1.25rem; } }
@media screen and (min-width: 576px) and (max-width: 991px) {
  .benefit-carousel-item .card-header > img {
    width: 4.25rem; } }
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .benefit-carousel-item .card-header > img {
    width: 4.75rem; } }
@media screen and (min-width: 1200px) {
  .benefit-carousel-item .card-header > img {
    width: 4.75rem; } }
.benefit-carousel-item .card-body {
  padding: 0 1rem 2rem 1rem; }

@media screen and (min-width: 1200px) {
  .benefit-carousel-item .card-body {
    padding: 2rem; } }
/* Nav for mobile devices only */
@media screen and (max-width: 575px) {
  #clara-benefits .owl-nav {
    position: absolute;
    bottom: 4.85rem;
    left: 0; }

  #clara-benefits .owl-nav [class*='owl-'] {
    width: 2.3125rem;
    height: 2.3125rem;
    color: #fff;
    font-size: 1.5rem;
    margin: 0.5rem;
    padding: 0;
    background: #000;
    display: inline-block;
    cursor: pointer;
    border-radius: 100%;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    -webkit-tap-highlight-color: transparent; }

  #clara-benefits .owl-nav .owl-prev {
    position: absolute;
    top: 2rem;
    left: 1.3rem; }

  #clara-benefits .owl-nav .owl-prev.disabled,
  #clara-benefits .owl-nav .owl-next.disabled {
    background: #f5f3f5;
    box-shadow: none; }

  #clara-benefits .owl-nav .owl-next {
    position: absolute;
    top: 2rem;
    left: 5rem; } }
/*
* Carousel Erfolgsstories
 */
#carousel-erfolgsstories {
  margin-top: 2rem; }

.testimonial-carousel-item {
  height: 18rem;
  background-position: left top;
  background-size: 3.75rem 3.75rem;
  background-repeat: no-repeat; }

@media screen and (min-width: 768px) {
  .testimonial-carousel-item {
    background-size: 10rem 10rem;
    height: 10rem;
    background-position: 4rem center; } }
#erfolgsstory-1 {
  background-image: url("../../home/wf_testimonial.jpg"); }

#erfolgsstory-2 {
  background-image: url("../../home/wf_testimonial_02.jpg"); }

#erfolgsstory-3 {
  background-image: url("../../home/wf_testimonial.jpg"); }

.testimonial-carousel-item .story-text,
.testimonial-carousel-item .story-name {
  padding-top: 4.5rem;
  padding-left: 0;
  font-size: 1.125rem;
  line-height: 1.333333;
  color: #242121; }

@media screen and (min-width: 768px) {
  .testimonial-carousel-item .story-text,
  .testimonial-carousel-item .story-name {
    padding-top: 0;
    padding-left: 16rem;
    font-size: 1.25rem;
    line-height: 1.4; } }
.testimonial-carousel-item .story-text {
  height: 10rem; }

@media screen and (min-width: 768px) {
  .testimonial-carousel-item .story-text {
    height: 7rem; } }
.testimonial-carousel-item .story-name {
  height: 2rem; }

#carousel-erfolgsstories .owl-nav {
  position: absolute;
  top: 0;
  left: 0; }

@media screen and (max-width: 575px) {
  #carousel-erfolgsstories .owl-nav {
    display: none; } }
#carousel-erfolgsstories .owl-nav [class*='owl-'] {
  width: 2.3125rem;
  height: 2.3125rem;
  color: #fff;
  font-size: 1.5rem;
  margin: 0.5rem;
  padding: 0;
  background: #000;
  display: inline-block;
  cursor: pointer;
  border-radius: 100%;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.25);
  -webkit-tap-highlight-color: transparent; }

#carousel-erfolgsstories .owl-nav .owl-prev {
  position: absolute;
  top: 2rem;
  left: 0; }

#carousel-erfolgsstories .owl-nav .owl-next {
  position: absolute;
  top: 5rem;
  left: 0; }

#carousel-erfolgsstories .owl-dots {
  padding-left: 0;
  text-align: left;
  -webkit-tap-highlight-color: transparent; }

@media screen and (min-width: 768px) {
  #carousel-erfolgsstories .owl-dots {
    padding-left: 15.5rem; } }
#carousel-erfolgsstories .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1; }

#carousel-erfolgsstories .owl-dots .owl-dot span {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0.5rem;
  background: rgba(0, 0, 0, 0.25);
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 50%; }

#carousel-erfolgsstories .owl-dots .owl-dot.active span,
#carousel-erfolgsstories .owl-dots .owl-dot:hover span {
  background: #200621; }

/*
* Module Was ist Clara
 */
/*
* Module Steps
 */
.clara-step-item {
  background-color: #fff;
  box-shadow: 0 0 3.125rem 0 rgba(0, 0, 0, 0.25);
  border-radius: 0.1875rem; }

@media screen and (min-width: 768px) and (max-width: 991px) {
  .step-image-container {
    padding-top: 7.75rem;
    padding-bottom: 7.75rem;
    background-color: #f5f3f5; } }
@media screen and (min-width: 992px) and (max-width: 1024px) {
  .step-image-container {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #f5f3f5; } }
.step-image-container {
  border-top-right-radius: 0.1875rem;
  border-top-left-radius: 0.1875rem; }

@media screen and (min-width: 768px) {
  .clara-step-item:nth-of-type(odd) .step-image-container,
  .clara-step-item:nth-of-type(odd) .card-img {
    border-top-right-radius: 0.1875rem;
    border-bottom-right-radius: 0.1875rem; }

  .clara-step-item:nth-of-type(even) .step-image-container,
  .clara-step-item:nth-of-type(even) .card-img {
    border-bottom-left-radius: 0.1875rem; } }
/* on handhelds choose full-width for the button */
@media screen and (max-width: 575px) {
  .clara-step-item .btn-secondary {
    width: 100%; } }
/*
* Card module Leistungen und Preise
 */
.leistung-preview {
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: unset; }

.leistung-preview .card-body {
  padding: 0; }

.leistung-preview .card-text {
  margin-bottom: 2rem;
  font-size: 1.125rem; }

@media screen and (min-width: 1200px) {
  .leistung-preview .card-text {
    margin-bottom: 2rem;
    font-size: 1.25rem; } }
/*
* Map module MapBox
 */
/*
* Table module Finanzierung
 */
/* Table styles */
.preise-und-finanzierung,
.preise-und-finanzierung thead,
.preise-und-finanzierung thead th {
  border-color: transparent; }

.preise-und-finanzierung thead {
  border-color: transparent; }

/* Headings */
.preise-und-finanzierung thead th {
  min-width: 13rem;
  font-size: 1.25rem;
  text-align: center;
  vertical-align: top;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.25); }

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .preise-und-finanzierung thead th {
    min-width: 10rem; } }
@media screen and (min-width: 1200px) {
  .preise-und-finanzierung thead th {
    color: #000;
    font-size: 1.75rem;
    font-weight: 300; } }
/* Product size */
.product-size-circle {
  display: block;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  width: 2rem;
  height: 2rem;
  font-size: 1.25rem;
  line-height: 2rem;
  color: #f5f3f5;
  background-color: #000;
  border-radius: 50%; }

.preise-und-finanzierung tbody td {
  font-size: 1.125rem;
  text-align: center;
  color: #212424; }

@media screen and (min-width: 1200px) {
  .preise-und-finanzierung tbody td {
    font-size: 1.25rem; } }
/* Prices are left aligned */
table td.clara-yearly,
table td.clara-monthly {
  text-align: left; }

table td.clara-yearly {
  border-top: 0.0625rem solid #000; }

/* Some items are muted */
.text-muted {
  color: #c7c7c7; }

/* Monthly prices are smaller and muted */
table td.clara-monthly {
  font-size: 0.875rem;
  color: #919090; }

/* Disclaimer */
.disclaimer {
  font-size: 0.875rem;
  color: #c7c7c7; }

/*
* Module Kassenleistungen
 */
.clara-als-kassenleistung {
  margin-top: 4.875rem; }

/*
* Module Legal block
 */
.clara-footnote {
  font-size: 0.875rem;
  line-height: 1.285714;
  color: #c7c7c7; }

/**************************************************
 *
 * Leistungen, Services
 *
 ***************************************************/
/*
* Module Page header
 */
/* Headlines */
.page-header-headlines h1,
.page-header-headlines h2 {
  color: #fff; }

.page-header-headlines h2 {
  font-size: 1.125rem;
  line-height: 1.333333; }

@media screen and (min-width: 1200px) {
  .page-header-headlines h2 {
    font-size: 1.5rem;
    line-height: 1.25; } }
/*
* Module Page intro
 */
/* Kirby:
.leistung-page-intro p {
  font-size: 1.25rem;
  line-height: 1.5;
}

@media screen and (min-width: 1200px) {
  .leistung-page-intro p {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

/*
* Module Product intro
 */
.leistung-definition h2 {
  margin-bottom: 2rem; }

/*
* Module Product intro image
 */
.leistung-image img {
  border-radius: 0.1875rem; }

/*
* Module Vorteile
 */
/*
* Module Methoden
 */
.leistung-methoden .card {
  padding-top: 0; }

@media screen and (max-width: 991px) {
  .leistung-methoden .card {
    margin-bottom: 6rem; } }
@media screen and (min-width: 1200px) {
  .leistung-methoden .card {
    padding-top: 0; } }
.leistung-methoden .card {
  height: auto;
  overflow-y: visible;
  background-color: #f5f3f5; }

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .leistung-methoden .card {
    height: 37rem; } }
@media screen and (min-width: 1200px) {
  .leistung-methoden .card {
    height: 42rem; } }
/* Benefit card header */
.leistung-methoden .card .card-header {
  width: 100%;
  height: 6.25rem;
  padding: 1rem;
  margin-bottom: 0; }

@media screen and (min-width: 768px) and (max-width: 991px) {
  .leistung-methoden .card .card-header {
    height: 4.5rem; } }
@media screen and (min-width: 768px) and (max-width: 991px) {
  .leistung-methoden .card .card-header {
    height: 5.5rem; } }
@media screen and (min-width: 1200px) {
  .leistung-methoden .card .card-header {
    height: 4rem;
    padding: 1rem 2rem; } }
.leistung-methoden .card .card-header > img {
  width: 4.75rem;
  height: auto; }

@media screen and (max-width: 575px) {
  .leistung-methoden .card .card-header > img {
    width: 4.75rem;
    padding-bottom: 1.25rem; } }
@media screen and (min-width: 576px) and (max-width: 991px) {
  .leistung-methoden .card .card-header > img {
    width: 4.25rem; } }
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .leistung-methoden .card .card-header > img {
    width: 4.75rem; } }
@media screen and (min-width: 1200px) {
  .leistung-methoden .card .card-header > img {
    width: 4.75rem; } }
.leistung-methoden .card .card-body {
  padding: 0 1rem 2rem 1rem; }

@media screen and (min-width: 1200px) {
  .leistung-methoden .card .card-body {
    padding: 2rem; } }
/*
* Module Product FAQ
 */
/*
* Accordion button
 */
.btn-accordion {
  padding: 0;
  font-size: 1.125rem;
  line-height: 1.2;
  letter-spacing: unset;
  color: #000;
  background-color: #fff;
  border-radius: unset;
  border-color: transparent; }

@media screen and (min-width: 1200px) {
  .btn-accordion {
    font-size: 1.75rem; } }
.btn-accordion:hover {
  color: #000; }

.btn-accordion:focus, .btn-accordion.focus {
  color: #000;
  box-shadow: none; }

/* Trigger icon */
.accordion .btn-accordion::before {
  position: absolute;
  top: 0.8rem;
  right: 0;
  color: #000;
  font-weight: 300; }

@media screen and (min-width: 992px) {
  .accordion .btn-accordion::before {
    top: 1.25rem; } }
/* Open */
.accordion .btn-accordion[aria-expanded=false]::before {
  content: url("../icons/icon_open.svg"); }

/* Close */
.accordion .btn-accordion[aria-expanded=true]::before {
  content: url("../icons/icon_close.svg"); }

.accordion .card-header,
.accordion .card-body {
  padding-left: 0; }

.accordion .card-header {
  padding-right: 2rem; }

@media screen and (min-width: 1200px) {
  .accordion .card-header,
  .accordion .card-body {
    padding-right: 0; } }
/**************************************************
 *
 * Footer elements
 *
 ***************************************************/
.site-footer .brand {
  margin-bottom: 2rem; }

.site-footer .brand > svg {
  width: 7.8125rem;
  height: auto;
  fill: #fff; }

/**************************************************
*
* 6 Layout: Settings for paddings and margins
*
* https://getbootstrap.com/docs/4.5/layout/overview/
*
* Basic layout settings can be configured with HTML mark up
* and Bootstrap classes
*
* Sections can be listed page wise
*
***************************************************/
/**************************************************
 *
 * Containers
 *
 ***************************************************/
main {
  position: relative; }

.frontpage-hero-image {
  margin-top: -7.6875rem; }

/**************************************************
 *
 * Header
 *
 ***************************************************/
/*
* General header settings
*/
.clara-header {
  background-color: #f5f3f5; }

.clara-header.scrolled {
  background-color: #f5f3f5;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.25); }

/*
* Homepage header
 */
.homepage-header {
  margin-top: 0;
  background-color: #fff; }

@media screen and (min-width: 1200px) {
  .homepage-header {
    margin-top: 0;
    background-color: transparent; } }
/*
* Page header Leistungen
 */
/* Image URL defined in template file */
.leistung-page-header {
  position: relative;
  margin-top: 0;
  height: 12.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay; }

@media screen and (min-width: 1200px) {
  .leistung-page-header {
    height: 20rem;
    margin-top: 7.6875rem; } }
@media screen and (min-width: 1441px) {
  .leistung-page-header {
    height: 20rem;
    object-fit: cover;
    background-position: 0 25%; } }
.page-header-headlines {
  padding-top: 3rem; }

@media screen and (min-width: 1200px) {
  .page-header-headlines {
    padding-top: 7.125rem; } }
/*
* Page header buchen
 */
/* Image URL defined in template file */
.service-page-header {
  position: relative;
  margin-top: 0;
  height: 12.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  background-size: cover;
  object-fit: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay; }

@media screen and (min-width: 1200px) {
  .service-page-header {
    height: 20rem;
    margin-top: 7.6875rem; } }
@media screen and (min-width: 1441px) {
  .service-page-header {
    height: 20rem;
    object-fit: cover;
    background-position: 0 25%; } }
/*
* Nav bar
 */
.navbar {
  height: 4rem;
  margin-right: auto;
  margin-left: auto; }

@media screen and (min-width: 1200px) {
  .navbar {
    max-width: 75rem;
    height: 7.6875rem; } }
@media screen and (min-width: 768px) {
  .navbar-brand {
    margin-left: 2rem; } }
@media screen and (max-width: 767px) {
  .navbar-nav {
    padding: 2rem 0.875rem;
    background-color: #fff; } }
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .navbar-nav {
    padding: 2rem 3rem;
    background-color: #fff; } }
@media screen and (min-width: 1200px) {
  .navbar-nav {
    padding-right: 2rem; } }
.navbar-collapse.show .navbar-nav {
  width: 100vw;
  height: 100vh;
  margin-left: -15px; }

/**************************************************
 *
 * General layout settings
 *
 ***************************************************/
/*
* CTA 1
*/
.clara-cta-1 {
  height: 26rem;
  padding-top: 2rem; }

@media screen and (min-width: 576px) and (max-width: 991px) {
  .clara-cta-1 {
    height: 32rem;
    padding-top: 7rem; } }
@media screen and (min-width: 1200px) {
  .clara-cta-1 {
    height: 38.75rem;
    padding-top: 9.375rem; } }
/*
* Button margins
 */
/*
* Nav button
 */
.btn-nav {
  margin-top: 0; }

/**************************************************
 *
 * Frontpage
 *
 ***************************************************/
/* General front page section settings */
.clara-frontpage-section {
  padding-top: 2rem;
  padding-bottom: 2rem; }

@media screen and (min-width: 992px) {
  .clara-frontpage-section {
    padding-top: 4rem;
    padding-bottom: 4rem; } }
/*
* Hero Clara Intro
 */
.frontpage-hero-image {
  background-image: url("../../home/clara_home_mobile.jpg");
  background-repeat: no-repeat;
  background-size: 100%;
  background-position-y: -10vh; }

@media screen and (min-width: 768px) and (max-width: 991px) {
  .frontpage-hero-image {
    background-image: url("../../home/clara_home.jpg");
    background-repeat: no-repeat;
    background-size: 125vw;
    background-position: top center; } }
@media screen and (min-width: 992px) {
  .frontpage-hero-image {
    background-image: url("../../home/clara_home.jpg");
    background-repeat: no-repeat;
    background-size: 150vw;
    background-position: top center; } }
.frontpage-hero {
  padding-top: 3.5rem;
  padding-bottom: 0;
  max-height: 120vh; }

/* min height for adjusting */
@media screen and (min-width: 992px) {
  .frontpage-hero {
    height: 100vh;
    padding-top: 0; } }
.clara-intro-text {
  margin-bottom: 37vh; }

@media screen and (min-width: 768px) {
  .clara-intro-text {
    margin-top: 2rem;
    margin-bottom: 0.125rem; } }
/* Button */
@media screen and (max-width: 575px) {
  .clara-intro-text-section .btn-secondary {
    width: 100%; } }
/*
* Section Carousel Benefits
 */
#clara-benefits {
  cursor: grab; }

@media screen and (max-width: 575px) {
  #clara-benefits {
    max-width: 575px;
    overflow-x: hidden; } }
@media screen and (min-width: 576px) and (max-width: 768px) {
  #clara-benefits {
    max-width: 768px;
    overflow-x: hidden; } }
@media screen and (min-width: 769px) and (max-width: 991px) {
  #clara-benefits {
    max-width: 991px; } }
@media screen and (min-width: 992px) and (max-width: 1024px) {
  #clara-benefits {
    max-width: 991px; } }
@media screen and (min-width: 1025px) and (max-width: 1199px) {
  #clara-benefits {
    max-width: 1199px; } }
@media screen and (min-width: 1200px) and (max-width: 1439px) {
  #clara-benefits {
    max-width: 1290px; } }
@media screen and (min-width: 1440px) {
  #clara-benefits {
    max-width: 1290px; } }
#benefits h2 {
  margin-bottom: 1rem; }

@media screen and (min-width: 1200px) {
  #benefits h2 {
    margin-bottom: 2rem; } }
/*
* Section Was ist Clara
 */
@media screen and (max-width: 575px) {
  #was-ist-clara {
    padding-top: 0;
    padding-bottom: 10rem; } }
@media screen and (min-width: 576px) and (max-width: 767px) {
  #was-ist-clara {
    padding-top: 0;
    padding-bottom: 10rem; } }
@media screen and (min-width: 768px) and (max-width: 1199px) {
  #was-ist-clara {
    padding-top: 0;
    padding-bottom: 8rem; } }
@media screen and (min-width: 1200px) {
  #was-ist-clara {
    padding-bottom: 10rem; } }
@media screen and (min-width: 1200px) {
  #was-ist-clara h2 {
    margin-bottom: 1rem; } }
/*
* Section 3 Schritte
 */
@media screen and (max-width: 575px) {
  #steps-section > .row {
    margin-right: 0;
    margin-left: 0; } }
#steps {
  position: relative;
  margin-top: -8rem;
  margin-bottom: -8rem; }

.clara-step-item {
  margin-bottom: 1rem; }

@media screen and (min-width: 1200px) {
  .clara-step-item .btn {
    margin-top: 0; } }
/* Mobile devices only */
@media screen and (max-width: 575px) {
  .clara-step-item .card-body,
  .clara-step-item .step-image-container {
    padding-right: 0;
    padding-left: 0; } }
/*
* Section Leistungen und Preise
 */
#leistungen {
  padding-top: 10rem; }

#leistungen h2 {
  margin-bottom: 2rem; }

#leistungen .card {
  margin-top: 1rem;
  margin-bottom: 1rem; }

@media screen and (max-width: 991px) {
  #leistungen .card:nth-child(even) {
    padding-right: 0.5rem; }

  #leistungen .card:nth-child(odd) {
    padding-left: 0.5rem; } }
#leistungen .card-body img {
  margin-bottom: 1.5rem; }

/*
* Section Carousel Erfolgstories
 */
@media screen and (max-width: 991px) {
  #erfolgstories-section .clara-frontpage-section {
    padding-bottom: 0; } }
/*
* Section MapBox
 */
.clara-map {
  padding-top: 1.5rem; }

/*
* Section Finanzierung
 */
@media screen and (max-width: 575px) {
  #finanzierung section.col-12 {
    padding-right: 0; } }
/*
* Section Professionals
 */
@media screen and (max-width: 991px) {
  #clara-professionals-section .clara-frontpage-section {
    padding-top: 0;
    padding-bottom: 0; } }
/*
* Section Legal block
 */
#clara-pricing-footnote {
  padding: 2rem;
  background-color: #323232; }

@media screen and (min-width: 1200px) {
  #clara-pricing-footnote {
    padding-top: 8rem;
    padding-bottom: 6.375rem; } }
/**************************************************
 *
 * Leistungen (Services)
 *
 ***************************************************/
/* General front page section settings */
.leistung-page-section {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.leistung-page-section h2 {
  margin-bottom: 2rem; }

/*
* Section Intro
 */
.leistung-page-intro {
  padding-top: 4.375rem;
  padding-bottom: 3.375rem;
  background-color: #fff; }

@media screen and (min-width: 1200px) {
  .leistung-page-intro {
    padding-top: 8.4375rem;
    padding-bottom: 7.4375rem; } }
/*
* Section Definition
 */
.leistung-definition {
  padding-top: 4.375rem;
  padding-bottom: 3.375rem; }

@media screen and (min-width: 1200px) {
  .leistung-definition {
    padding-top: 7.875rem;
    padding-bottom: 6rem; } }
/*
* Section Image
 */
.leistung-image {
  padding-bottom: 2rem;
  background-color: #fff; }

@media screen and (min-width: 1200px) {
  .leistung-image {
    padding-bottom: 4rem; } }
.leistung-image img {
  margin-top: -4rem; }

/*
* Section Vorteile
 */
.leistung-vorteile {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fff; }

@media screen and (min-width: 1200px) {
  .leistung-vorteile {
    padding-top: 4rem;
    padding-bottom: 4rem; } }
/*
* Methoden
 */
.leistung-methoden {
  padding-top: 4rem; }

@media screen and (min-width: 1200px) {
  .leistung-methoden {
    padding-top: 8rem; } }
/*
* Section Workflow (Ablauf)
 */
.leistung-workflow {
  padding-top: 0;
  background-color: transparent; }

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .leistung-workflow {
    padding-top: 4rem; } }
@media screen and (min-width: 1200px) {
  .leistung-workflow {
    padding-top: 2rem; } }
.leistung-workflow h3 {
  margin-top: 1rem;
  margin-bottom: 1rem; }

.leistung-workflow p {
  margin-bottom: 2rem; }

@media screen and (min-width: 1200px) {
  .leistung-workflow p {
    margin-bottom: 4rem; } }
/*
* Section product FAQ
 */
.leistung-faq {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fff; }

@media screen and (min-width: 1200px) {
  .leistung-faq {
    padding-top: 4rem;
    padding-bottom: 5.75rem; } }
/**************************************************
 *
 * Termin buchen
 *
 ***************************************************/
/* General page section settings */
.service-page-section {
  padding-top: 2rem;
  padding-bottom: 2rem; }

.service-page-section h2 {
  margin-bottom: 2rem; }

/*
* Page header Termin buchen
 */
.service-page-header {
  position: relative;
  height: 20rem;
  background-color: rgba(0, 0, 0, 0.4);
  background-image: url("../../termin-buchen/wf_termin-buchen.jpg");
  background-size: cover;
  background-position: left top;
  background-repeat: no-repeat;
  background-blend-mode: overlay; }

/*
* Scroll offset
 */
:target::before {
  content: "";
  display: block;
  height: 5.625rem;
  margin-top: -5.625rem; }

@media screen and (min-width: 576px) and (max-width: 991px) {
  :target::before {
    content: "";
    display: block;
    height: 3.75rem;
    margin: -3.75rem 0 0; } }
@media screen and (min-width: 992px) and (max-width: 1199px) {
  :target::before {
    content: "";
    display: block;
    height: 3.75rem;
    margin: -3.75rem 0 0; } }
@media screen and (min-width: 1200px) {
  :target::before {
    content: "";
    display: block;
    height: 8rem;
    margin: -3.75rem 0 0; } }
/**************************************************
 *
 * Footer
 *
 ***************************************************/
.site-footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  color: #fff;
  background-color: #000; }

@media screen and (min-width: 1200px) {
  .site-footer {
    padding-top: 5rem;
    padding-bottom: 5rem; } }
/**************************************************
 *
 * Z-Index
 *
 ***************************************************/
/*
* Frontpage
 */
.frontpage-hero-image {
  z-index: 504; }

#clara-benefits-section {
  z-index: 503; }

#steps {
  z-index: 501; }

/*
* Leistungen
 */
#product-intro-image {
  z-index: 502; }

/*
* Termin buchen
 */
.service-page-header::after {
  z-index: 503; }

/**************************************************
 *
 * Smoking corner
 *
 ***************************************************/
/**************************************************
*
* 8 Helpers: Helper classes
*
* https://getbootstrap.com/docs/4.5/getting-started/introduction/
*
* Helper classes for repeatedly used rules. Specify settings in your module or layout scss-file
*
***************************************************/
/**************************************************
 *
 * Colors
 *
 ***************************************************/
.bg-white {
  background-color: #fff; }

.bg-clara {
  background-color: #fff; }

.bg-anthrazit {
  background-color: #323232; }

.bg-gray {
  background-color: #f5f3f5; }

/* Mobile settings */
@media screen and (max-width: 575px) {
  .mobile-bg-gray {
    background-color: #f5f3f5; } }
.clara-rounded {
  border-radius: 0.1875rem; }

/*# sourceMappingURL=clara.css.map */
