@charset "UTF-8";
@import url("../fonts/fontawsome/css/all.css");
/* line 1, ../dist/sass/include/_fixes.sass */
* {
  box-sizing: border-box !important;
  transition: all 200ms ease;
  -webkit-overflow-scrolling: touch;
}
/* line 7, ../dist/sass/include/_fixes.sass */
*:hover {
  transition: all 200ms ease;
}

/* line 10, ../dist/sass/include/_fixes.sass */
a, button {
  cursor: pointer;
  transition: all 200ms ease;
}
/* line 13, ../dist/sass/include/_fixes.sass */
a:hover, button:hover {
  cursor: pointer;
  transition: all 200ms ease;
}

/* line 17, ../dist/sass/include/_fixes.sass */
img {
  max-width: 100%;
}

/* line 21, ../dist/sass/include/_fixes.sass */
.no-margin {
  margin: 0 !important;
}

/* line 24, ../dist/sass/include/_fixes.sass */
.no-padding {
  padding: 0 !important;
}

/* line 28, ../dist/sass/include/_fixes.sass */
.text-right {
  text-align: right;
}

/* line 31, ../dist/sass/include/_fixes.sass */
.text-center {
  text-align: center;
}

/* line 37, ../dist/sass/include/_fixes.sass */
.grve-image img,
.grve-bg-image {
  opacity: 1 !important;
}

/* line 3, ../dist/sass/include/_nav.sass */
#grve-header.grve-fixed #grve-main-header {
  background-color: #fff !important;
}

/* line 1, ../dist/sass/include/_kacheln.sass */
.kachel {
  display: block;
  position: relative;
  margin: 0 auto 20px;
  width: 100%;
  min-height: 400px;
  background-color: rgba(196, 196, 196, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* line 12, ../dist/sass/include/_kacheln.sass */
.kachel .kachel-content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
}
@media (max-width: 901px) {
  /* line 12, ../dist/sass/include/_kacheln.sass */
  .kachel .kachel-content {
    position: relative;
    top: auto;
    height: auto;
    height: auto;
    padding: 20px 0;
  }
}
/* line 31, ../dist/sass/include/_kacheln.sass */
.kachel .kachel-content .kachel-title {
  display: block;
  font-size: 21px;
  margin-bottom: 10px;
  width: calc(100% - 40px);
}
/* line 37, ../dist/sass/include/_kacheln.sass */
.kachel .kachel-content .kachel-desc {
  display: block;
  width: calc(100% - 40px);
  text-align: left;
  margin-bottom: 20px;
  line-height: 1.5em;
}
/* line 43, ../dist/sass/include/_kacheln.sass */
.kachel .kachel-content .kachel-desc b {
  display: block;
  color: #fba32a;
  text-align: center;
}
/* line 48, ../dist/sass/include/_kacheln.sass */
.kachel .kachel-content .kachel-link {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 20px;
  height: 40px;
  color: #fba32a;
  font-size: 0.8em;
  line-height: 1.5em;
  font-weight: bolder;
  text-transform: uppercase;
  border: 1px solid #fba32a;
  border-radius: 20px;
}
/* line 60, ../dist/sass/include/_kacheln.sass */
.kachel .kachel-content .kachel-link:hover {
  color: #fff;
  background-color: #fba32a;
}
/* line 66, ../dist/sass/include/_kacheln.sass */
.kachel:hover {
  cursor: pointer;
}
/* line 68, ../dist/sass/include/_kacheln.sass */
.kachel:hover .kachel-content {
  background-color: rgba(29, 32, 75, 0.6);
}

/* line 1, ../dist/sass/include/_tabs.sass */
.tabs {
  display: block;
  position: relative;
  margin: auto;
  width: 100%;
}
/* line 6, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
@media (max-width: 601px) {
  /* line 6, ../dist/sass/include/_tabs.sass */
  .tabs .tabs-nav {
    display: none;
  }
}
/* line 14, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav > li {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  padding: 20px;
  margin-right: 10px;
  min-height: 100px;
  background-color: #c4c4c4;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 901px) {
  /* line 14, ../dist/sass/include/_tabs.sass */
  .tabs .tabs-nav > li {
    min-height: 60px;
  }
}
/* line 29, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav > li:last-child {
  margin-right: 0;
}
/* line 31, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav > li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 32, 75, 0.5);
  z-index: 1;
}
/* line 40, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav > li .tabs-nav-title {
  position: relative;
  color: #fff;
  font-weight: bold;
  text-shadow: none;
  z-index: 2;
}
/* line 46, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav > li:hover {
  cursor: pointer;
}
/* line 48, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav > li:hover:before {
  background-color: rgba(29, 32, 75, 0.6);
}
/* line 50, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav > li.in {
  pointer-events: none;
}
/* line 52, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav > li.in:before {
  background-color: rgba(29, 32, 75, 0.6);
}
/* line 54, ../dist/sass/include/_tabs.sass */
.tabs .tabs-nav > li.in:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: rgba(29, 32, 75, 0.6) transparent transparent transparent;
  transform: translateX(-50%);
}
/* line 65, ../dist/sass/include/_tabs.sass */
.tabs .tabs-contain {
  display: block;
  border: 1px solid #c4c4c4;
  padding: 30px 20px 20px;
  margin-top: -1px;
}
@media (max-width: 601px) {
  /* line 65, ../dist/sass/include/_tabs.sass */
  .tabs .tabs-contain {
    border: none;
    padding: 0;
  }
}
/* line 73, ../dist/sass/include/_tabs.sass */
.tabs .tabs-contain .tabs-content {
  display: none;
  transition: none;
}
/* line 76, ../dist/sass/include/_tabs.sass */
.tabs .tabs-contain .tabs-content.in {
  display: block;
}
@media (max-width: 601px) {
  /* line 73, ../dist/sass/include/_tabs.sass */
  .tabs .tabs-contain .tabs-content {
    display: block;
    padding: 20px;
    margin: 0 0 20px;
    border: 1px solid #c4c4c4;
  }
  /* line 83, ../dist/sass/include/_tabs.sass */
  .tabs .tabs-contain .tabs-content .tabs-nav-item {
    display: block;
    position: relative;
    padding: 20px;
    min-height: 60px;
    color: #fff;
    font-weight: bolder;
    background-color: #1d204b;
    margin: -20px -20px 20px;
  }
  /* line 92, ../dist/sass/include/_tabs.sass */
  .tabs .tabs-contain .tabs-content .tabs-nav-item:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    border-style: solid;
    border-width: 10px 10px 0 10px;
    border-color: #1d204b transparent transparent transparent;
    transform: translateX(-50%);
  }
}
/* line 101, ../dist/sass/include/_tabs.sass */
.tabs .tabs-contain .tabs-content ul {
  margin-bottom: 0;
}

/* line 1, ../dist/sass/include/_acc.sass */
.accordion {
  position: relative;
  margin: 0 0 30px;
  width: 100%;
}
/* line 5, ../dist/sass/include/_acc.sass */
.accordion .accordion-item {
  background-color: #fff;
  margin-bottom: 5px;
}
/* line 8, ../dist/sass/include/_acc.sass */
.accordion .accordion-item:first-child {
  border-bottom: none;
}
/* line 10, ../dist/sass/include/_acc.sass */
.accordion .accordion-item .accordion-item-title {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-align: center;
      align-items: center;
  text-transform: uppercase;
  padding: 0 20px;
  height: 40px;
  font-weight: bolder;
  background-color: #fba32a;
  border: 1px solid #fba32a;
}
/* line 20, ../dist/sass/include/_acc.sass */
.accordion .accordion-item .accordion-item-title [class*='fa'] {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: none;
}
/* line 27, ../dist/sass/include/_acc.sass */
.accordion .accordion-item .accordion-item-title:hover {
  cursor: pointer;
  color: #fff;
  background-color: #1d204b;
  border-color: #1d204b;
}
/* line 32, ../dist/sass/include/_acc.sass */
.accordion .accordion-item .accordion-item-content {
  display: none;
  padding: 20px;
  transition: none;
}

/* line 1, ../dist/sass/include/_landingpage.sass */
.pagebox {
  display: block;
  position: relative;
  margin: 0 auto 20px;
}
/* line 5, ../dist/sass/include/_landingpage.sass */
.pagebox .pagebox-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  padding: 0 20px;
  height: 60px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  background-color: #1d204b;
  z-index: 2;
}
@media (max-width: 901px) {
  /* line 5, ../dist/sass/include/_landingpage.sass */
  .pagebox .pagebox-header {
    font-size: 14px;
    line-height: 1.3em;
  }
}
/* line 19, ../dist/sass/include/_landingpage.sass */
.pagebox .pagebox-header:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #1d204b transparent transparent transparent;
  transform: translateX(-50%);
}
/* line 28, ../dist/sass/include/_landingpage.sass */
.pagebox .pagebox-header b {
  font-weight: bolder;
  margin-right: 5px;
}
/* line 31, ../dist/sass/include/_landingpage.sass */
.pagebox .pagebox-content {
  display: block;
  position: relative;
  padding: 20px;
  border: 1px solid #c4c4c4;
  z-index: 1;
}
/* line 37, ../dist/sass/include/_landingpage.sass */
.pagebox .pagebox-content ul {
  position: relative;
  margin-bottom: 0;
}

/* line 1, ../dist/sass/include/_archive.sass */
.archivepakete {
  display: block;
  position: relative;
  margin: 20px auto 40px;
  width: 100%;
  max-width: 1140px;
}
/* line 7, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-header {
  position: relative;
  margin: 0 0 20px;
}
/* line 10, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-header .archivepakete-header-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: relative;
  width: 100%;
  height: 300px;
  padding: 40px;
  color: #fff;
  text-align: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* line 24, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-header .archivepakete-header-img h1 {
  color: #fff;
  letter-spacing: 1px;
  margin: 0 0 10px;
}
/* line 28, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}
/* line 33, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 36, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  padding: 0 20px;
  height: 60px;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  background-color: #1d204b;
  z-index: 2;
}
/* line 47, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-header:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  border-style: solid;
  border-width: 10px 10px 0 10px;
  border-color: #1d204b transparent transparent transparent;
  transform: translateX(-50%);
}
/* line 56, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-header [class*='fa'] {
  margin-right: 20px;
}
/* line 58, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-content {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: end;
      justify-content: flex-end;
  position: relative;
  padding: 20px;
  border: 1px solid #c4c4c4;
  z-index: 1;
}
/* line 67, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-content .archivepakete-item-img {
  display: block;
  position: relative;
  margin: -20px -20px 10px;
}
/* line 71, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-content .archivepakete-item-cont {
  position: relative;
  margin: 0 0 10px;
}
/* line 74, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-content > a {
  font-weight: bold;
}
/* line 76, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-content > a:after {
  content: "»";
  margin-left: 10px;
}
/* line 80, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-content .toggle-link {
  font-weight: bold;
}
/* line 82, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-content .toggle-link:hover {
  color: #fba32a;
  cursor: pointer;
}
/* line 85, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-content .toggle-link:after {
  content: "»";
  margin-left: 10px;
}
/* line 89, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-contain .archivepakete-item .archivepakete-item-content .toggle-content {
  display: none;
  transition: none;
}
/* line 93, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-sec {
  display: block;
  position: relative;
  margin: 60px auto 0;
}
/* line 97, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-sec > h2 {
  font-size: 2em;
  letter-spacing: 1px;
}
/* line 100, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-sec .archivepakete-item {
  opacity: 0.8;
}
/* line 102, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-sec .archivepakete-item:hover {
  opacity: 1;
}
/* line 104, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-sec .archivepakete-item .archivepakete-item-header {
  height: 50px;
  background-color: #c4c4c4;
}
/* line 107, ../dist/sass/include/_archive.sass */
.archivepakete .archivepakete-sec .archivepakete-item .archivepakete-item-header:after {
  border-color: #c4c4c4 transparent transparent transparent;
}

@media (max-width: 901px) {
  /* line 1, ../dist/sass/include/_table.sass */
  .table-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    overflow-x: scroll;
  }
  /* line 7, ../dist/sass/include/_table.sass */
  .table-container td {
    white-space: nowrap;
  }
}

/* line 10, ../dist/sass/include/_table.sass */
.table {
  border: none !important;
}
/* line 12, ../dist/sass/include/_table.sass */
.table tbody {
  border: none;
}
/* line 14, ../dist/sass/include/_table.sass */
.table tbody tr {
  border: none;
}
/* line 16, ../dist/sass/include/_table.sass */
.table tbody td {
  text-align: left;
  border: none;
  border-bottom: 1px solid #c4c4c4;
}
/* line 20, ../dist/sass/include/_table.sass */
.table tbody td a {
  color: #fba32a;
  font-weight: bold;
}
/* line 23, ../dist/sass/include/_table.sass */
.table tbody td a:hover {
  cursor: pointer;
  color: #c40e6c;
}
/* line 27, ../dist/sass/include/_table.sass */
.table thead th {
  font-weight: bold;
  color: #fff;
  background-color: #1d204b;
  border: none !important;
  outline: none !important;
}
/* line 33, ../dist/sass/include/_table.sass */
.table thead th:hover {
  background-color: #fba32a;
}
/* line 35, ../dist/sass/include/_table.sass */
.table thead th.table-minwidth {
  min-width: 100px;
}

/* line 40, ../dist/sass/include/_table.sass */
table.tablesorter thead tr th {
  background-image: url("../img/bg.gif") !important;
}

/* line 43, ../dist/sass/include/_table.sass */
table.tablesorter thead tr th.tablesorter-headerAsc {
  background-image: url("../img/asc.gif") !important;
}

/* line 46, ../dist/sass/include/_table.sass */
table.tablesorter thead tr th.tablesorter-headerDesc {
  background-image: url("../img/desc.gif") !important;
}

/* line 1, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist {
  display: block;
  position: relative;
  margin: auto;
  width: 100%;
}
/* line 6, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist .referenzen-abclist-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  margin: 0;
  padding: 5px 20px;
  width: 100%;
  list-style-type: none;
  background-color: rgba(196, 196, 196, 0.2);
}
@media (max-width: 901px) {
  /* line 6, ../dist/sass/include/_referenzen.sass */
  .referenzen-abclist .referenzen-abclist-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
  }
}
/* line 18, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist .referenzen-abclist-nav li {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-right: 5px;
  width: 30px;
  height: 30px;
  font-size: 0.9em;
  line-height: 1em;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  color: #1d204b;
  text-transform: uppercase;
  font-weight: bold;
  background-color: transparent;
  border-radius: 5px;
}
/* line 33, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist .referenzen-abclist-nav li:hover, .referenzen-abclist .referenzen-abclist-nav li.active {
  cursor: pointer;
  color: #fff;
  background-color: #1d204b;
}
/* line 38, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist .referenzen-abclist-nav li:last-child {
  margin-right: 0;
}
/* line 40, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist .referenzen-abclist-nav li.active {
  pointer-events: none;
}
/* line 43, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist .referenzen-abclist-contain {
  display: block;
  position: relative;
  padding: 20px;
}
/* line 47, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist .referenzen-abclist-contain .referenzen-abclist-item {
  display: none;
  transition: none;
}
/* line 50, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist .referenzen-abclist-contain .referenzen-abclist-item.active {
  display: block;
  transition: none;
}
/* line 53, ../dist/sass/include/_referenzen.sass */
.referenzen-abclist .referenzen-abclist-contain .referenzen-abclist-item ul {
  margin-bottom: 0;
}

/* line 1, ../dist/sass/include/_sidenav.sass */
.sidenav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: end;
      align-items: flex-end;
  position: fixed;
  top: 45%;
  right: 0;
  margin: 0;
  padding: 0;
  list-style-type: none;
  transform: translateY(-50%);
  z-index: 1000;
}
@media (max-width: 401px) {
  /* line 1, ../dist/sass/include/_sidenav.sass */
  .sidenav {
    display: none;
  }
}
/* line 15, ../dist/sass/include/_sidenav.sass */
.sidenav li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  margin: 0 0 10px;
  width: 40px;
  height: 40px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #1d204b;
}
/* line 25, ../dist/sass/include/_sidenav.sass */
.sidenav li:before {
  content: attr(data-title);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: absolute;
  top: 50%;
  right: calc(100% + 20px);
  min-width: 20px;
  padding: 0 10px;
  min-height: 20px;
  color: #ffffff;
  background-color: #c40e6c;
  transform: translateY(-50%);
}
/* line 38, ../dist/sass/include/_sidenav.sass */
.sidenav li:after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 15px);
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #c40e6c;
  transform: translateY(-50%);
}
/* line 47, ../dist/sass/include/_sidenav.sass */
.sidenav li:before, .sidenav li:after {
  opacity: 0;
  right: 0;
  transition: all 200ms ease;
}
/* line 54, ../dist/sass/include/_sidenav.sass */
.sidenav li:hover:before, .sidenav li:hover:after {
  opacity: 1;
  transition: all 200ms ease;
}
/* line 58, ../dist/sass/include/_sidenav.sass */
.sidenav li:hover:before {
  right: calc(100% + 20px);
}
/* line 60, ../dist/sass/include/_sidenav.sass */
.sidenav li:hover:after {
  right: calc(100% + 15px);
}
/* line 63, ../dist/sass/include/_sidenav.sass */
.sidenav li a,
.sidenav li .sidenav-search {
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
  color: #fff;
  width: 40px;
  height: 40px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border: none;
  background-color: transparent;
  transform: translate(-50%, -50%);
}
/* line 77, ../dist/sass/include/_sidenav.sass */
.sidenav li a [class*='fa'],
.sidenav li .sidenav-search [class*='fa'] {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* line 83, ../dist/sass/include/_sidenav.sass */
.sidenav li a:hover,
.sidenav li .sidenav-search:hover {
  background-color: #c40e6c;
}
/* line 85, ../dist/sass/include/_sidenav.sass */
.sidenav li a:active, .sidenav li a:focus,
.sidenav li .sidenav-search:active,
.sidenav li .sidenav-search:focus {
  box-shadow: none;
  outline: none;
}
/* line 90, ../dist/sass/include/_sidenav.sass */
.sidenav li .search-sidenav {
  -ms-flex: 1;
      flex: 1;
  display: none;
  position: relative;
  margin-left: 40px;
  padding: 0 2.5px;
  padding-right: 10px;
  transition: none;
}
/* line 99, ../dist/sass/include/_sidenav.sass */
.sidenav li .search-sidenav .searchform {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0;
  width: 0;
  height: calc(100% - 5px);
  overflow: hidden;
}
/* line 106, ../dist/sass/include/_sidenav.sass */
.sidenav li .search-sidenav .searchform #search {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 10px;
  border: none;
}
/* line 112, ../dist/sass/include/_sidenav.sass */
.sidenav li .search-sidenav .searchform button {
  width: 40px;
  color: #fff;
  background-color: #fba32a;
  border: none;
}
/* line 117, ../dist/sass/include/_sidenav.sass */
.sidenav li .search-sidenav .searchform button:hover {
  cursor: pointer;
  background-color: #c40e6c;
}
/* line 122, ../dist/sass/include/_sidenav.sass */
.sidenav li.open {
  width: 400px;
}
/* line 124, ../dist/sass/include/_sidenav.sass */
.sidenav li.open .search-sidenav {
  display: block;
  transition: none;
}
/* line 127, ../dist/sass/include/_sidenav.sass */
.sidenav li.open .search-sidenav .searchform {
  width: 100%;
}
/* line 129, ../dist/sass/include/_sidenav.sass */
.sidenav li.open a,
.sidenav li.open .sidenav-search {
  background-color: #c40e6c;
}

/* line 1, ../dist/sass/include/_404.sass */
.container-404 {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 100%;
  height: 80vh;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 11, ../dist/sass/include/_404.sass */
.container-404 h1 {
  font-size: 110px;
}

/* line 2, ../dist/sass/include/_footer.sass */
.grve-footer-wrapper .grve-widget-area,
.grve-footer-wrapper .grve-footer-bar {
  color: #ffffff !important;
  background-color: #1d204b !important;
}

/* line 8, ../dist/sass/include/_footer.sass */
#grve-widget-social-2 {
  text-align: center;
  margin-bottom: 10px !important;
}

/* line 2, ../dist/sass/include/_slider.sass */
.SliderContentSlider .carousel-inner {
  position: relative;
  margin: auto;
  width: calc(100% - 120px);
}
/* line 7, ../dist/sass/include/_slider.sass */
.SliderContentSlider .carousel-inner .carousel-item:before, .SliderContentSlider .carousel-inner .carousel-item:after {
  font-size: 2em;
  vertical-align: -4px;
}
/* line 11, ../dist/sass/include/_slider.sass */
.SliderContentSlider .carousel-inner .carousel-item:before {
  content: "“";
  margin-right: 5px;
}
/* line 14, ../dist/sass/include/_slider.sass */
.SliderContentSlider .carousel-inner .carousel-item:after {
  content: "”";
  margin-left: 5px;
}
/* line 18, ../dist/sass/include/_slider.sass */
.SliderContentSlider [class*='carousel-control'] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 50px;
  color: #1d204b;
  font-size: 24px;
  opacity: 1;
}
/* line 26, ../dist/sass/include/_slider.sass */
.SliderContentSlider [class*='carousel-control'] [class*='fa'] {
  display: block;
}
/* line 28, ../dist/sass/include/_slider.sass */
.SliderContentSlider [class*='carousel-control']:hover {
  cursor: pointer;
  color: #c40e6c;
}

/* line 32, ../dist/sass/include/_slider.sass */
.SliderTitleSlider {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 1920px;
}
@media (max-width: 601px) {
  /* line 32, ../dist/sass/include/_slider.sass */
  .SliderTitleSlider {
    display: none;
  }
}
/* line 40, ../dist/sass/include/_slider.sass */
.SliderTitleSlider .carousel-inner .SliderTitleSlider-item {
  position: relative;
  width: 100%;
  height: 400px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
/* line 48, ../dist/sass/include/_slider.sass */
.SliderTitleSlider .carousel-inner .SliderTitleSlider-item .item-text {
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  background-color: transparent;
  z-index: 2;
  font-size: 53px;
  line-height: 60px;
  letter-spacing: 0px;
  color: #202355;
  font-family: Gilroy-ExtraBold;
  font-weight: 700;
  font-style: normal;
  text-transform: none;
}
/* line 69, ../dist/sass/include/_slider.sass */
.SliderTitleSlider .carousel-inner .SliderTitleSlider-item .item-link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 3;
}
/* line 78, ../dist/sass/include/_slider.sass */
.SliderTitleSlider .carousel-inner .SliderTitleSlider-item .item-link:hover {
  cursor: pointer;
}
/* line 81, ../dist/sass/include/_slider.sass */
.SliderTitleSlider [class*='carousel-control'] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  width: 50px;
  color: #1d204b;
  font-size: 24px;
  opacity: 1;
}
/* line 89, ../dist/sass/include/_slider.sass */
.SliderTitleSlider [class*='carousel-control'] [class*='fa'] {
  display: block;
}
/* line 91, ../dist/sass/include/_slider.sass */
.SliderTitleSlider [class*='carousel-control']:hover {
  cursor: pointer;
  color: #c40e6c;
}

/* line 1, ../dist/sass/include/_preistabelle.sass */
.preistabelle {
  display: grid;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style-type: none;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (max-width: 901px) {
  /* line 1, ../dist/sass/include/_preistabelle.sass */
  .preistabelle {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 601px) {
  /* line 1, ../dist/sass/include/_preistabelle.sass */
  .preistabelle {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* line 15, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}
/* line 18, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > h5 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: relative;
  width: 100%;
  margin: 0;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  font-weight: normal;
  text-transform: uppercase;
  min-height: 80px;
  background-color: #fba32a;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
/* line 32, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > h5 > span {
  display: block;
  font-size: 2em;
  margin-top: 10px;
}
/* line 36, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > h5 .preistabelle-header-info {
  position: absolute;
  top: 10px;
  right: 10px;
}
/* line 40, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > h5 .preistabelle-header-info .preistabelle-header-info-content {
  display: none;
  position: absolute;
  right: calc(100% + 10px);
  top: calc(50% - 1px);
  min-width: 260px;
  font-size: 13px;
  line-height: 1.4em;
  padding: 10px;
  color: #1d204b;
  font-family: Gilroy-Regular !important;
  font-weight: 400 !important;
  text-transform: none;
  background-color: #ffffff;
  border: 1px solid #1d204b;
  border-radius: 3.33333px;
  transform: translateY(-50%);
  z-index: 400;
}
/* line 58, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > h5 .preistabelle-header-info .preistabelle-header-info-content:before {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-color: transparent transparent transparent #1d204b;
  transform: translateY(-50%);
  z-index: 400;
}
/* line 69, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > h5 .preistabelle-header-info:hover .preistabelle-header-info-content {
  display: block;
}
/* line 71, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul {
  -ms-flex: 1;
      flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  position: relative;
  width: 100%;
  margin: 0;
  padding: 10px 0;
  list-style-type: none;
  border-left: 1px solid #c4c4c4;
  border-right: 1px solid #c4c4c4;
  border-bottom: 1px solid #c4c4c4;
}
/* line 83, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  min-height: 30px;
  padding: 0 20px;
  color: #c4c4c4;
}
/* line 90, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li:before {
  content: "";
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 20px;
  border-radius: 100%;
  border: 2px solid #c4c4c4;
}
/* line 98, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li > .title {
  -ms-flex: 1;
      flex: 1;
  display: block;
  position: relative;
  font-size: 0.9em;
}
/* line 104, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li > .info {
  display: none;
  position: absolute;
  left: calc(100% - 20px);
  top: 50%;
  min-width: 200px;
  font-size: 0.8em;
  line-height: 1.4em;
  padding: 10px;
  color: #1d204b;
  background-color: #ffffff;
  border: 1px solid #1d204b;
  border-radius: 3.33333px;
  transform: translateY(-50%);
  z-index: 400;
}
@media (max-width: 901px) {
  /* line 104, ../dist/sass/include/_preistabelle.sass */
  .preistabelle > li > ul > li > .info {
    left: 50px;
  }
}
/* line 121, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li > .info a {
  display: block;
  text-align: right;
  margin: 5px 0 0;
  font-weight: bold;
  color: #fba32a;
}
/* line 127, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li > .info a:hover {
  text-decoration: underline;
}
/* line 129, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li > .info:before {
  content: "";
  position: absolute;
  right: 100%;
  top: 50%;
  border-style: solid;
  border-width: 5px 5px 5px 0;
  border-color: transparent #1d204b transparent transparent;
  transform: translateY(-50%);
  z-index: 400;
}
/* line 140, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li.active {
  color: #1d204b;
}
/* line 142, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li.active:before {
  border-color: #1d204b;
}
/* line 144, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li.active .fas {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  top: 50%;
  left: 15px;
  font-size: 10px;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
}
/* line 155, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li:hover {
  cursor: pointer;
}
/* line 157, ../dist/sass/include/_preistabelle.sass */
.preistabelle > li > ul > li:hover > .info {
  display: block;
}

/* line 3, ../dist/sass/include/_fonts.sass */
#grve-main-content a {
  color: #fba32a;
  cursor: pointer;
  text-decoration: underline;
}
/* line 7, ../dist/sass/include/_fonts.sass */
#grve-main-content a:hover {
  color: #c40e6c;
  cursor: pointer;
  text-decoration: underline;
}

/* line 2, ../dist/sass/include/_mise.sass */
.msie .preistabelle {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 5, ../dist/sass/include/_mise.sass */
.msie .preistabelle > li {
  display: block;
  width: 30%;
  margin-right: 1%;
  margin-bottom: 20px;
}
/* line 10, ../dist/sass/include/_mise.sass */
.msie .preistabelle > li > ul {
  display: block;
}

@media (max-width: 901px) {
  /* line 1, ../dist/sass/include/_mobil-fixes.sass */
  #grve-responsive-header > .grve-wrapper {
    background-color: #ffffff !important;
  }
}

@media (max-width: 901px) {
  /* line 5, ../dist/sass/include/_mobil-fixes.sass */
  #grve-responsive-header .grve-logo a {
    height: 60px !important;
  }
}

@media (max-width: 901px) {
  /* line 9, ../dist/sass/include/_mobil-fixes.sass */
  .grve-toggle-hiddenarea {
    color: #1d204b !important;
  }
}
