@charset "UTF-8";
@font-face {
  font-family: tech;
  src: url("fonts/FuturaBookRegular.ttf");
}
@font-face {
  font-family: tech;
  src: url("fonts/FuturaBookRegular.eot");
}
html {
  font-size: 14px;
}
@media (min-width: 1450px) {
  html {
    font-size: 18px;
  }
}
@media (min-width: 1921px) {
  html {
    font-size: 20px;
  }
}
@media (min-width: 2600px) {
  html {
    font-size: 26px;
  }
}

body {
  font-family: tech, sans-serif;
  font-weight: 200;
  background-color: #121212;
}

a:focus {
  color: #E30613 !important;
}

/***** Container Size*****/
.container {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .container {
    width: 90%;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    width: 70%;
  }
}

.titles {
  margin: 2rem 0;
  text-align: center;
  margin-top: 1.5rem;
}
.titles h1, .titles h2 {
  font-size: 2rem;
}
.titles h1:nth-child(1) {
  color: #E30613;
}
.titles h1:nth-child(2) {
  color: white;
}

a:hover {
  text-decoration: none;
}

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

main a {
  color: #E30613;
  position: relative;
  cursor: pointer;
  transition: color 0.75s;
  display: inline-block;
}
main a:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #E30613;
  transition: width 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
main a:hover {
  color: #a80510;
  text-decoration: none;
}
main a:hover:after {
  width: 100%;
}
main a:focus {
  text-decoration: none;
}

a.clear:after {
  content: "";
  display: none;
}

h1 {
  color: #E30613;
  font-weight: 300;
  font-size: 1.5rem;
}

h2, h3, h4, h5, ul, p {
  color: white;
  font-weight: 300;
}

h2, .h2, .h3, h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.15rem;
  line-height: initial;
}

p {
  font-size: 1rem;
}

section {
  margin: 4rem 0;
}

body {
  overflow-x: hidden;
}

strong {
  font-weight: bold;
}

input, select, .select2, textarea, .file > label {
  border: solid 1px fade(#242424, 60%);
  color: white;
  padding: 0.3rem 0.75rem;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  width: 100%;
  border-radius: 0.2rem;
  transition: 0.25s background-color;
  margin-bottom: 1rem;
  min-height: 42px;
}
input:focus, select:focus, .select2:focus, textarea:focus, .file > label:focus {
  outline: none;
  border: solid 1px fade(#E30613, 60%);
  background-color: fade(white, 30%);
}
input.invalid, select.invalid, .select2.invalid, textarea.invalid, .file > label.invalid {
  border-color: red;
  color: red;
  background-color: rgba(255, 0, 0, 0.1);
}

.file {
  position: relative;
  overflow: hidden;
}
.file > label {
  cursor: pointer;
  color: white;
}

.file input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  height: 0;
  visibility: hidden;
  filter: alpha(opacity=0);
}

.select2 {
  padding: 0.3rem 0.75rem;
}
.select2 *:focus {
  outline: none;
}

.select2-selection {
  border: none !important;
  color: white;
}
.select2-selection .select2-selection__rendered {
  padding: 0 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: white;
  font-size: 1rem;
  font-weight: 400;
}

.center {
  margin-left: auto !important;
  margin-right: auto !important;
}

.button {
  display: block;
  max-width: 20rem;
  background-color: #E30613 !important;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.2rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  border: none;
}
.button:focus {
  color: white;
}
.button:after {
  content: "";
  display: block;
  border: none;
  width: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  opacity: 0;
  transition: all 0.5s;
  border-radius: 50%;
}
.button:hover, .button:focus {
  color: white;
}
.button:hover::after, .button:focus::after {
  width: 250%;
  opacity: 1;
  transform: translate(-50%, -50%);
  height: 250%;
}

.element-button .button {
  left: 50%;
  transform: translateX(-50%);
}

.slick-arrow {
  z-index: 10;
}
.slick-arrow::before {
  color: white;
  font-size: 2rem;
}
.slick-arrow.slick-prev {
  left: 2rem;
}
.slick-arrow.slick-next {
  right: 2rem;
}

section.intro {
  margin: 2rem 0;
}
section.intro p {
  font-size: 1.75rem;
}

a:focus {
  text-decoration: none;
}

.content-box {
  padding: 1rem;
  background-color: #323232;
  color: white;
  margin-bottom: 1rem;
}
.content-box h1 {
  color: #E30613;
}
@media screen and (min-width: 576px) {
  .modal-lg {
    max-width: 90%;
  }
}
@media screen and (min-width: 1400px) {
  .modal-lg {
    max-width: 1300px;
  }
}
main {
  position: relative;
}

iframe {
  max-width: 100%;
}

/*--- Header ---*/
.mobile_menu {
  display: none;
}

header .top_bar {
  white-space: nowrap;
  text-align: right;
  border-bottom: 2px solid white;
}
header .top_bar .toggle {
  display: none;
}
header .top_bar .lang_menu {
  display: inline-block;
}
header .top_bar .lang_menu a {
  text-transform: uppercase;
  display: inline-block;
  color: white;
  border-right: 1px solid fade(white, 50%);
  padding: 0 0.75rem;
}
header .top_bar .lang_menu a:last-child {
  border-right: none;
}
header .top_bar .lang_menu a.active {
  color: #E30613;
}
header .top_bar .logo {
  position: absolute;
  left: 15px;
  transition: all 0.5s;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  opacity: 1;
}
header .top_bar .logo img {
  height: 80px;
  width: auto;
}
@media screen and (min-width: 991px) {
  header .top_bar {
    display: none;
  }
}
header .main_header {
  position: relative;
}
header .main_header .top_bar form {
  margin-right: 2rem;
  background-color: #323232;
  border-radius: 0.2rem;
}
@media screen and (max-width: 1899px) {
  header .main_header .top_bar form {
    border-color: transparent;
    transition: all 0.5s;
  }
  header .main_header .top_bar form input {
    width: 0;
    transition: all 0.5s;
  }
  header .main_header .top_bar form:hover {
    border-color: white;
  }
  header .main_header .top_bar form:hover input {
    width: 10rem;
  }
}
@media screen and (min-width: 1900px) {
  header .main_header .top_bar form {
    display: inline-block;
  }
}
header .main_header .main_menu {
  position: fixed;
  width: 100%;
  z-index: 10;
  left: 0;
  top: 0;
  background-color: rgba(50, 50, 50, 0.8);
  transition: all 0.5s;
}
@media screen and (max-width: 991px) {
  header .main_header .main_menu {
    display: none;
  }
}
header .main_header .main_menu .logo-container {
  display: block;
  height: 100%;
  padding: 1rem 0;
}
header .main_header .main_menu .logo-container .logo {
  display: block;
  height: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
header .main_header .main_menu .menu_container {
  display: block;
  height: 100%;
}
header .main_header .main_menu .menu_container ul {
  position: relative;
  display: block;
  text-align: left;
  margin-bottom: 0;
  padding: 0;
  height: 100%;
}
header .main_header .main_menu .menu_container ul > li {
  display: inline-block;
  position: relative;
  height: 100%;
}
header .main_header .main_menu .menu_container ul > li a {
  padding: 1.5rem 0.5rem;
  font-size: 1.25rem;
  color: white;
  transition: 0.3s all;
  height: 100%;
  display: flex;
  align-items: center;
}
header .main_header .main_menu .menu_container ul > li a:hover:after {
  display: none;
}
header .main_header .main_menu .menu_container ul > li:hover {
  background-color: #323232;
}
header .main_header .main_menu .menu_container ul > li:hover > a {
  color: #E30613;
}
header .main_header .main_menu .menu_container ul > li .sub-menu {
  left: 0;
  padding-top: 2rem;
  top: 100%;
  position: absolute;
  transition: 0.4s all;
  pointer-events: none;
  font-size: 0;
  z-index: 99;
}
header .main_header .main_menu .menu_container ul > li .sub-menu:before {
  content: " ";
  position: absolute;
  top: 0;
  z-index: 100;
  height: 0.3rem;
  transition: 0.3s all;
  width: 0;
  background-color: #E30613;
  display: block;
  opacity: 0;
  left: 50%;
}
header .main_header .main_menu .menu_container ul > li .sub-menu li {
  opacity: 0;
  font-size: 0.8rem;
  pointer-events: none;
  transition: 0.4s all;
  display: block;
  height: auto !important;
  background-color: #323232;
}
header .main_header .main_menu .menu_container ul > li .sub-menu li:hover {
  background-color: white;
}
header .main_header .main_menu .menu_container ul > li .sub-menu li a {
  white-space: nowrap;
  display: block;
  width: 100%;
  padding: 0.6rem;
}
header .main_header .main_menu .menu_container ul > li .sub-menu li a:hover {
  color: #E30613;
}
header .main_header .main_menu .menu_container ul > li .sub-menu li a:after {
  display: none;
}
header .main_header .main_menu .menu_container ul > li:hover .sub-menu {
  padding-top: 0;
  pointer-events: auto;
}
header .main_header .main_menu .menu_container ul > li:hover .sub-menu:before {
  width: 100%;
  opacity: 1;
  left: 0;
}
header .main_header .main_menu .menu_container ul > li:hover li {
  opacity: 1;
  pointer-events: auto;
}
header .main_header .kommSlider {
  position: relative;
  height: 60rem;
}
@media screen and (max-width: 1920px) {
  header .main_header .kommSlider {
    height: 40rem;
  }
}
@media screen and (max-width: 1200px) {
  header .main_header .kommSlider {
    height: 30rem;
  }
}
@media screen and (max-width: 900px) {
  header .main_header .kommSlider {
    height: 25em;
  }
}
@media screen and (max-width: 600px) {
  header .main_header .kommSlider {
    height: 20em;
  }
}
header .wpml-ls-statics-shortcode_actions {
  display: inline-block;
}

body.menu_open .top_bar .logo {
  opacity: 0;
}

@keyframes FadeIn {
  0% {
    opacity: 0;
    transform: translateY(50%);
  }
  85% {
    opacity: 1;
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 991px) {
  header {
    padding-top: 4rem;
  }
  header a:focus {
    text-decoration: none;
  }

  .mobile_menu {
    display: block !important;
  }

  .top_bar {
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #323232;
    border-bottom: none !important;
    box-shadow: 0 3px 8px 1px rgba(0, 0, 0, 0.1);
  }
  .top_bar .container {
    padding-right: 4rem !important;
    top: 50%;
    transform: translateY(-50%);
  }
  .top_bar .toggle {
    position: absolute;
    right: 2rem;
    display: inline-block !important;
    height: 2rem;
    width: 2rem;
    transform: translateY(-50%);
    transition: right 0.5s ease-in;
  }
  .top_bar .toggle div {
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: white;
    left: 0;
    transition: all 0.5s ease-in;
  }
  .top_bar .toggle div:nth-child(1) {
    top: 0;
  }
  .top_bar .toggle div:nth-child(2) {
    top: calc(50% - 2px);
  }
  .top_bar .toggle div:nth-child(3) {
    bottom: 0;
  }
  .top_bar .toggle.open {
    right: 1.5rem;
  }
  .top_bar .toggle.open div {
    background-color: #E30613;
  }
  .top_bar .toggle.open div:nth-child(1) {
    transform: rotate(-45deg) translate(0, 1.2rem);
  }
  .top_bar .toggle.open div:nth-child(2) {
    opacity: 0;
  }
  .top_bar .toggle.open div:nth-child(3) {
    transform: rotate(45deg) translate(0, -1.2rem);
  }
}
/*-- Mobile Menu --*/
div.mobile_menu {
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  height: calc(100% - 2rem);
  z-index: 1000;
  font-size: 0;
  pointer-events: none;
}
div.mobile_menu .logo {
  width: 30%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #323232;
  height: 100%;
  display: inline-block;
  opacity: 1;
  transition: all 0.5s;
  transform: translateX(-100%);
  z-index: 3;
  border-right: solid 2px fade(white, 30%);
}
div.mobile_menu .logo img {
  transform: rotate(-90deg) translateX(-100%) scale(1.7);
  margin-top: 1rem;
}
@media screen and (max-height: 500px) {
  div.mobile_menu .logo {
    padding: 1rem;
  }
  div.mobile_menu .logo img {
    transform: rotate(0) translateX(0) scale(1);
  }
}
div.mobile_menu > .menu {
  background-color: #242424;
  width: 71%;
  position: absolute;
  left: 29%;
  top: 0;
  height: 100%;
  font-size: 1rem;
  overflow-y: auto;
  overflow-x: hidden;
  display: inline-block;
  padding-top: calc(.5rem + 40px);
  opacity: 0;
  transition: all 0.5s;
  transform: translateX(100%);
}
div.mobile_menu > .menu .menu-item-has-children {
  position: relative;
}
div.mobile_menu > .menu .current-menu-item > a {
  background-color: fade(#E30613, 10%);
}
div.mobile_menu > .menu .toggle {
  position: absolute;
  height: 100%;
  width: 2rem;
  right: 1rem;
  top: 0;
}
div.mobile_menu > .menu .toggle div {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  top: 0.75rem;
  right: 0.25rem;
  transition: all 0.5s;
  border-bottom: 2px solid fade(white, 30%);
  border-right: 2px solid fade(white, 30%);
  transform: rotate(-45deg);
}
div.mobile_menu > .menu .toggle.toggled div {
  border-color: fade(#E30613, 60%);
  transform: rotate(45deg);
}
div.mobile_menu > .menu .sub-menu {
  display: block;
}
div.mobile_menu > .menu .current-menu-parent > .sub-menu {
  display: block;
}
div.mobile_menu > .menu ul, div.mobile_menu > .menu li {
  display: block;
  padding: 0;
  margin: 0;
}
div.mobile_menu > .menu a {
  display: block;
  font-size: 1.2rem;
  padding: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  color: white;
  border-bottom: 1px white solid;
}
div.mobile_menu > .menu .sub-menu a {
  padding-left: 1.75rem;
}
div.mobile_menu > .menu ::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
div.mobile_menu > .menu ::-webkit-scrollbar-button {
  width: 0px;
  height: 0px;
}
div.mobile_menu > .menu ::-webkit-scrollbar-thumb {
  background: #242424 !important;
  border: 0px none #ffffff;
  border-radius: 50px;
}
div.mobile_menu > .menu ::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}
div.mobile_menu > .menu ::-webkit-scrollbar-thumb:active {
  background: #000000;
}
div.mobile_menu > .menu ::-webkit-scrollbar-track {
  background: #666666;
  border: 0px none #ffffff;
  border-radius: 50px;
}
div.mobile_menu > .menu ::-webkit-scrollbar-track:hover {
  background: #666666;
}
div.mobile_menu > .menu ::-webkit-scrollbar-track:active {
  background: #333333;
}
div.mobile_menu > .menu ::-webkit-scrollbar-corner {
  background: transparent;
}
div.mobile_menu.open {
  display: block;
  pointer-events: auto;
  opacity: 1;
}
div.mobile_menu.open .logo {
  transform: translateX(0);
  opacity: 1;
}
div.mobile_menu.open > .menu {
  transform: translateX(0);
  opacity: 1;
}

/*--- Footer ---*/
footer .contact {
  background-color: #323232;
  color: white;
  padding: 2rem 0;
}
footer .contact a {
  font-weight: bolder;
  color: white;
}
footer .contact .map {
  height: 100%;
  margin-bottom: 2rem;
  min-height: 10rem;
}
footer .contact .info p {
  color: white;
}
footer .footer_menu {
  background-color: #242424;
  color: white;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
footer .footer_menu ul {
  margin-top: 20px;
  list-style: none;
  display: flex;
  justify-content: center;
}
footer .footer_menu ul li {
  display: block;
  padding-right: 10px;
}
footer .footer_menu ul li::after {
  content: "|";
  padding-left: 10px;
}
footer .footer_menu ul li:last-child::after {
  content: "";
}
footer .footer_menu ul li a {
  color: white;
}
footer .footer_menu ul li a:hover {
  color: #E30613;
}

/*-- Searchform --*/
.search-form {
  font-size: 0;
  display: inline-block;
  border: solid 1px lightgrey;
}
.search-form input, .search-form button {
  font-size: 1rem;
  padding: 0.2rem;
  margin: 0;
  display: inline-block;
  width: auto;
  background-color: white;
  border: none;
  color: white;
  border-radius: 0;
}
.search-form button {
  color: #E30613;
}
.search-form input:focus {
  outline: none;
}

/*-- Slider --*/
header .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s;
  background-size: cover;
  background-position: center;
}
header .slide.shown {
  opacity: 1;
}

.dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}
.dots .dot {
  height: 2rem;
  width: 0.5rem;
  margin: 0 0.1rem;
  background-color: white;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
}
.dots .dot.selected {
  height: 2.25rem;
  background-color: #E30613;
}

/*-- loader --*/
.loader-container {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  /*pointer-events: none;
  opacity: 0;
  transition: all .3s;
  position: relative;
  height: 100%;
  width: 100%;

  &.loading {
    opacity: 1;

    .loader {
      top: 8rem;
    }
  }*/
}
.loader-container.loading {
  opacity: 1;
}
.loader-container .loader {
  position: relative;
  animation: loaderrotate 1s linear infinite;
}

@keyframes loaderrotate {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(359deg);
  }
}
.loader {
  z-index: 100;
}

.loader {
  /*position: absolute;
  top: 10rem;
  left: calc(50% - 4rem);
  transition: all .25s;
  border-bottom: .3rem solid $color_1; // Light grey
  border-top: .3rem solid $color_1; // Blue
  border-left: .3rem solid transparent;
  border-right: .3rem solid transparent;
  border-radius: 50%;
  width: 8rem;
  height: 8rem;
  z-index: 100;
  animation: spin 1s linear infinite;*/
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*-- Preview Boxes --*/
.preview_box {
  margin-bottom: 2rem;
}
.preview_box .image {
  padding-bottom: 66.666%;
  background-position: center;
  background-size: cover;
}
.preview_box .image-logo {
  background-size: contain;
  background-repeat: no-repeat;
}
.preview_box .titel {
  text-align: center;
  background-color: #242424;
  font-size: 1.5rem;
  color: white;
  padding: 1rem;
  margin: 0;
}
.preview_box .content {
  padding: 1rem 0.5rem;
  background-color: #323232;
}
.preview_box .content .text p {
  font-size: 1rem;
}
.preview_box .content .link {
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: inline-block;
  color: #E30613;
  cursor: pointer;
  padding-left: 2.5rem;
  position: relative;
}
.preview_box .content .link:before {
  font-size: 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: FontAwesome;
  color: #E30613;
  margin-right: 1rem;
  content: "";
}
.preview_box .content .link:after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #E30613;
  transition: width 0.3s;
}
.preview_box .content .link:hover:after {
  width: 100%;
}

/*-- Tabs --*/
section.tabs .tab-content-single {
  padding-top: 2rem;
  outline: none !important;
}
section.tabs a.tab {
  padding: 0.5rem 1rem;
  background-color: transparent;
  color: #E30613;
  display: block;
  border: solid 1px white;
  transition: 0.4s all;
  outline: none !important;
}
section.tabs a.tab:hover {
  color: #E30613;
}
section.tabs a.tab.selected {
  background-color: white;
}

/*-- wpcf7 --*/
.wpcf7-form .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.wpcf7-form .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  z-index: 5;
  display: block;
  right: 0;
  bottom: 0;
  background-color: fade(#E30613, 20%);
  border-radius: 0.2rem;
  padding: 0.35rem;
  text-align: center;
}

.geschichte .jahr {
  border-bottom: 1px solid #323232;
  margin-bottom: 1rem;
}
.geschichte .jahr:last-of-type {
  border: none;
}
.geschichte ul {
  padding-left: 1rem;
}

.element-galerie .galerie-for, .element-galerie .galerie-nav {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.element-galerie .galerie-for a, .element-galerie .galerie-nav a {
  display: block;
}
.element-galerie .galerie-for .image, .element-galerie .galerie-nav .image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 60%;
}
.element-galerie .galerie-nav {
  margin-top: 1rem;
}
.element-galerie .galerie-nav .slick-prev {
  left: -2.25rem;
}
.element-galerie .galerie-nav .slick-next {
  right: -1.5rem;
}
.element-galerie .galerie-nav .slick-arrow::before {
  color: #323232;
}

.element-text ul {
  padding-left: 0;
  list-style-type: none;
  display: inline-block;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.element-text ul li {
  text-align: left;
  width: fit-content;
}
.element-text ul li::before {
  content: "•";
  padding-right: 1rem;
}

.wpcf7-form {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

form {
  margin-bottom: 1rem;
}
@media screen and (max-width: 600px) {
  form {
    width: 100%;
  }
}
form .wpcf7-submit {
  margin-top: 15px;
  padding: 5px 15px;
  background-color: #E30613;
  color: white;
  transition: 0.2s ease-in-out;
  border-color: #323232 !important;
}
form .wpcf7-submit:hover {
  background-color: #e80613;
}

.form-group {
  position: relative;
  padding-top: 0.75rem;
  margin-bottom: 1rem;
  display: block;
}
.form-group .label {
  position: absolute;
  top: 0;
  font-size: 0.75rem;
  transition: 0.3s ease;
  left: 0.25rem;
  color: white;
}
.form-group .input {
  border: none;
  background: rgba(36, 36, 36, 0.1);
  outline: none;
  padding: 0.25rem;
  width: 100%;
  box-shadow: none;
}
.form-group::before, .form-group:after {
  position: absolute;
  content: "";
  left: 0;
  width: 100%;
  bottom: 0;
  height: 2px;
  display: block;
  background-color: rgba(227, 6, 19, 0.2);
}
.form-group::after {
  transition: 0.3s ease;
  background-color: #E30613;
}
.form-group.empty .label {
  top: 0.75rem;
  font-size: 1rem;
  left: 0.25rem;
}
.form-group.empty::after {
  width: 0;
}
.form-group.date .label {
  top: 0 !important;
  font-size: 0.75rem;
  left: 0.25rem;
}

button[type=submit] {
  border-radius: 5px;
  margin-top: 15px;
  padding: 5px 15px;
  background-color: #E30613;
  cursor: pointer;
  border: none;
  color: white;
  transition: 0.2s ease-in-out;
}
button[type=submit]:hover {
  background-color: #f90a18;
  border: none;
}

.element-text-image {
  width: 70%;
  margin: auto;
  display: flex;
  flex-direction: row;
  flex: auto;
}
.element-text-image .image-text-text {
  max-width: 40%;
}
.element-text-image .image-text-image {
  max-width: 60%;
  width: auto;
  height: 10rem;
  margin-left: 3rem;
  margin-bottom: 2rem;
}

.grecaptcha-badge {
  display: none;
}

.elem-bilder {
  margin-bottom: 2rem;
}
.elem-bilder a::after {
  display: none;
}

.emergency {
  height: 6.5rem;
  width: 6.5rem;
  position: fixed;
  bottom: 0;
  right: 0;
  margin: 2.5rem 0;
  transform: translateX(100%);
  animation: emergency 1s 2s ease-in forwards;
  cursor: pointer;
}
.emergency .contain {
  position: relative;
  height: 100%;
  width: 100%;
}
.emergency .contain .emergimg {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  animation: rotation 1s 2s ease-in;
}

@keyframes emergency {
  from {
    transform: translateX(100%);
    margin: 2.5rem 0;
  }
  to {
    transform: translateX(0);
    margin: 2.5rem;
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-180deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

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