/**** BASICS ****/
:root {
  font-size: 62.5%;
  --red: #e64e4e;
  --blue: #4898f5;
  --orange: #ea7043;
  --green: #03a295;
  --lightgrey: #ededed;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-size: 1.8rem;
  font-family: Helvetica, Arial, sans-serif;
  color: white;
}
h4, p {
  margin: 0;
}


/**** LAYOUT ****/
.sectionRed {
  width: 100%;
  background-color: var(--red);
}
.sectionBlue {
  width: 100%;
  background-color: var(--blue);
}
.sectionOrange {
  width: 100%;
  background-color: var(--orange);
}
.sectionGreen {
  width: 100%;
  background-color: var(--green);
}
.sectionLightgrey {
  width: 100%;
  background-color: var(--lightgrey);
  position: relative;
}
.wrapper {
  padding: 3.7rem 2.1rem 5.1rem 2.1rem;
}

/**** LOGO, NAV, BUTTONS ****/
.logoContainer {
  background-color: var(--red);
  padding: 3.7rem 2.1rem 2rem 2.1rem;
}
logoContainer__textsite {
  background-color: var(--lightgrey) !important;  
}
.logoMobile {
  width: 16rem;
  z-index: 2;
}
.logoMobile__red {
  width: 18rem;
  margin-top: 5.5rem;
  margin-bottom: 6.2rem;
}
.logoTgMobile__red {
  width: 21.8rem;
  padding-top: 0.5rem;
}
nav ul {
  list-style: none;
  padding-left: 0;
}
nav li {
  margin: 0 0 2.4rem 0;
}
.button {
  display: flex;
  height: 7.5rem;
  width: 100%;
  border-radius: 3.75rem;
  border: 0.2rem solid white;
  color: white;
  text-decoration: none;
  align-items: center;
  line-height: 1.38;
  padding-left: 7.2rem;
  padding-top: 0.5rem;
}
.button:hover {
  color: white;
  text-decoration: none;
}
.btnHear,
.btnClose,
.btnTime,
.btnInfo {
  position: relative;
}
.btnHear::before,
.btnClose::before,
.btnTime::before,
.btnInfo::before {
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  left: 2.5rem;
  top: 1.5rem;
}
.btnHear::before {
  background-image: url("../pic/icon-hear.svg");
  width: 3.3rem;
  height: 4.1rem;
}
.btnClose::before {
  background-image: url("../pic/icon-close.svg");
  width: 3.3rem;
  height: 4.1rem;
}
.btnTime::before {
  background-image: url("../pic/icon-time.svg");
  width: 3.3rem;
  height: 4.1rem;
}
.btnInfo::before {
  background-image: url("../pic/icon-info.svg");
  width: 3.3rem;
  height: 4.1rem;
}
.buttonTel {
  width: 28rem;
  height: 5.8rem;
  background-color: white;
  display: flex;
  border-radius: 2.9rem;
  font-size: 2.8rem;
  color: black;
  position: fixed;
  bottom: 3.4rem;
  left: calc(50% - 14rem);
  align-items: center;
  padding-left: 7rem;
  z-index: 2;
}
a.buttonTel:hover, a.buttonTel:focus {
    color: black;
    text-decoration: none;
}
.buttonTel::before {
  content: "";
  background-repeat: no-repeat;
  position: absolute;
  left: 2.5rem;
  top: 2rem;
  background-image: url("../pic/arrow-right.svg");
  width: 2.85rem;
  height: 8.5rem;
}
#scrollToTopBtn {
  border: 0.25rem solid var(--red);
  border-radius: 50%;
  cursor: pointer;
  width: 4.9rem;
  height: 4.9rem;
  padding: 1.1rem;
  position: absolute;
  right: 2.4rem;
  bottom: 6rem;
}
.hideTel {
display: none;
/*  opacity: 0;
  -webkit-transition: opacity 100ms ease-out;
  -moz-transition: opacity 100ms ease-out;
  -o-transition: opacity 100ms ease-out;
  transition: opacity 100ms ease-out; */
}
.buttonAngebot {
    width: 15.3rem;
    position: fixed;
    top: 3rem;
    right: 2rem;
    z-index: 2;
}

/**** CONTENT ****/
.contentRed {
  margin-top: 11rem;
  margin-bottom: 20rem;
  width: 100%;
  margin-left: -1.5rem;
}
.contentBlue,
.contentOrange,
.contentGreen {
  margin-bottom: 5.9rem;
  width: 100%;
  margin-left: -1.5rem;
}
.contentText {
  font-size: 1.8rem;
  line-height: 1.6;
}
.contentText__red {
  color: var(--red);
  font-size: 1.8rem;
  line-height: 1.6;
}
.titleBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.titleBox__icon {
  width: 5.5rem;
}
.titleBox__text {
  width: calc(100% - 5.5rem);
  display: flex;
  align-items: center;
}
.titleBox__text h4 {
  font-size: 1.8rem;
  line-height: 1.27;
  font-weight: bold;
  color: white;
}
.titleBox__icon--circle {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 2.1rem;
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem;
}
.titleBox__textRed {
  width: calc(100% - 5.5rem);
  display: flex;
  align-items: center;
}
.titleBox__textRed h4 {
  font-size: 1.8rem;
  line-height: 1.27;
  font-weight: bold;
  color: var(--red);
}
.titleBox__icon--circleRed {
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 2.1rem;
  border: 2px solid var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem;
}
.footerInfo {
  font-size: 2.4rem;
  line-height: 1.4;
  color: var(--red);
  padding-left: 4.3rem;
  position: relative;
  margin-top: 2.9rem;
  font-weight: bold;
}
.footerInfo::before {
  content: "";
  background-image: url("../pic/arrow-right_red.svg");
  position: absolute;
  width: 3.1rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  left: 0;
  top: 0.6rem;
}
.footerNavi {
  margin-top: 4.8rem;
}
.footerNavi__link {
  text-decoration: none;
  color: var(--red);
  padding-left: 4.3rem;
  line-height: 2;
  position: relative;
  font-weight: bold;
}
.footerNavi__link:hover {
  text-decoration: underline;
  color: var(--red);
}
.footerNavi__link::before {
  content: "";
  background-image: url("../pic/arrow-right_red.svg");
  position: absolute;
  width: 3.1rem;
  height: 1.5rem;
  background-repeat: no-repeat;
  left: 0;
  top: 0.1rem;
}
/**** MODAL (IMPRESSUM und DATENSCHUTZ) ****/
.uk-modal-body {
  background-color: var(--lightgrey);
}
.uk-modal-body h2,
.uk-modal-body h3,
.uk-modal-body p,
.uk-modal-body a {
  color: var(--red);
  margin: 0;
}
.uk-modal-body h2 {
  font-size: 2.8rem;
  margin-bottom: 5rem;
  font-weight: bold;
}
.uk-modal-body h3 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-weight: bold;
}
.uk-modal-body p {
  font-size: 1.8rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.uk-modal-body a {
  font-weight: bold;
  text-decoration: none;
}
.uk-modal-body a:hover {
  text-decoration: underline;
}

/**** Cookie Consent ****/
.consent_manager-wrapper-inner {
    background: var(--lightgrey)
}
.consent_manager-headline {
    font-weight: bold;
    font-size: 2.2rem;
    color: var(--red);
}
.consent_manager-text {
    font-size: 1.8rem;
    color: var(--red);
}
.consent_manager-cookiegroup-checkbox.pretty .state label {
    font-weight: bold;
    font-size: 1.8rem;
    color: var(--red);
}
#consent_manager-wrapper [class^="icon-"]:before, #consent_manager-wrapper [class*=" icon-"]:before {
    color: var(--red);
}
.consent_manager-show-details a {
    color: var(--red);
}
.consent_manager-save-selection, .consent_manager-accept-all  {
    background: var(--red);
    border-color: var(--red);
}
.consent_manager-save-selection {
    background: var(--lightgrey);
    border-color: var(--red);
    color: var(--red);
}
.consent_manager-cookiegroup-description {
    color: var(--red);
}
.consent_manager-show-details a:hover {
    color: var(--red);
}
.consent_manager-cookie {
    margin-top: 0.5em;
    border-left: 2px solid var(--red);
    padding: 0.5em 0.5em 0.5em 1em;
    background: var(--lightgrey);
    color: var(--red);
}
.consent_manager-cookie span.consent_manager-cookie-link-privacy-policy {
    display: none;
}
.consent_manager-sitelinks a {
    color: var(--red);
    font-weight: bold;
}

/**** IMPRESSUM und DATENSCHUTZ ****/
.text--bold{
  font-weight: bold;
}
.datenschutz__Wrapper, .impressum__Wrapper{
    background-color: var(--lightgrey);
    padding: 3.7rem 2.1rem 2rem 2.1rem;
}

.datenschutz__Container, .impressum__Container{
   width: 100%;
}
.datenschutz__Titel--red, .impressum__Titel--red{
   padding-bottom: 4rem;
   font-size: 2.8rem;
   margin-bottom: 5rem;
   font-weight: bold;
}
.datenschutz__Untertitel--red, .impressum__Untertitel--red{
   padding-bottom: 2rem;
   font-size: 2rem;
   margin-top: 3rem;
   margin-bottom: 2rem;
   font-weight: bold;
}
.datenschutz__Text--red, .impressum__Text--red{
   font-size: 1.8rem;
   margin-bottom: 1.5rem;
   padding-bottom: 3rem;
}
.datenschutz__Text--red a, .impressum__Text--red a{
  text-decoration: none;
  font-weight: bold;
 }

.datenschutz__Titel--red,
.datenschutz__Untertitel--red,
.datenschutz__Text--red, .datenschutz__Text--red a, 
.impressum__Titel--red, 
.impressum__Untertitel--red, 
.impressum__Text--red, .impressum__Text--red a {
  color: var(--red);
  margin: 0;
}

/*********************************/
/****** START MEDIA QUERIES ******/
/*********************************/
@media screen and (min-width: 768px) {
  .logoMobile {
      width: 16rem;
      position: fixed;
      top: 3.7rem;
      left: 3rem;
  }
.logoMobile.logoMobile__notFix {
      position: relative;
}
  .logoContainer {
    padding: 0;
  }
  .wrapper {
    padding: 3.7rem 4rem 5rem 24rem
  }  
  nav ul {
    padding-left: 0;
  }
  .wrapper__footer {
    padding: 3.7rem 4rem 5rem 3rem;
  }
    .buttonAngebot {
        width: 19rem;
        top: auto;
        bottom: 3rem;
        left: 2rem;
    }
/**** IMPRESSUM und DATENSCHUTZ ****/
      .datenschutz__Wrapper, .impressum__Wrapper {
       padding: 15rem 4rem 5rem 3rem;
    }
}

@media screen and (min-width: 1024px) {
  /**** LAYOUT ****/
    logoContainer__textsite {
      background-color: none;  
    }
  .sectionRed,
  .sectionBlue,
  .sectionOrange,
  .sectionGreen,
  .sectionLightgrey {
    width: 100%;
    min-height: 100vh;
  }
  .sectionLightgrey {
    display: flex;
  }
  .wrapper {
    padding: 7.2rem 2.3rem 3rem 16rem;
    display: flex;
    justify-content: space-between;
  }
  .wrapper__footer {
    padding-left: 15rem;
    flex-wrap: wrap;
  }
  .wrapper__footer--block1 {
    display: flex;
    justify-content: space-between;
  }
  .wrapper__footer--block1 > div {
    width: 48%;
  }
  .block1__container1 {
    width: 100%;
  }
  .block1__container2 {
    padding-right: 0;
  }
  .wrapper__footer--block2 {
    display: flex;
    width: 100%;
    align-items: end;
    margin-top:5rem;
  }
  .wrapper__footer--block2 div {
    width: 48%;
  }

  /**** LOGO, NAV, BUTTONS ****/
  .logoMobile {
    width: 12rem;
    position: fixed;
    left: 2.3rem;
    top: 7.2rem;
  }
.logoMobile.logoMobile__notFix {
      position: fixed;
}
  .logoMobile__red {
    order: 1;
    margin: 0 0 1.3rem 0;
  }
  nav {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: normal;
  }
  nav ul {
    padding-left: 0;
  }
  .buttonTel {
    bottom: 1.5rem;
    right: 2.3rem;
    left: auto;
  }
  .button {
    height: 7rem;
    width: 40rem;
    border-radius: 3.5rem;
    border: 0.3rem solid white;
    font-size: 1.8rem;
    line-height: 1.2;
    padding-left: 5.7rem;
    padding-top: 0.5rem;
    font-weight: bold;
    padding-right: 7rem;
  }
  .btnHear::before {
    width: 3.5rem;
    height: 4.2rem;
  }
  .btnClose::before {
    width: 3.5rem;
    height: 4.2rem;
  }
  .btnTime::before {
    width: 3.5rem;
    height: 4.2rem;
  }
  .btnInfo::before {
    width: 3.5rem;
    height: 4.2rem;
  }
  .btnHear::before,
  .btnClose::before,
  .btnTime::before,
  .btnInfo::before {
    left: 1.5rem;
    top: 0.8rem;
  }
  .btnHear::after,
  .btnClose::after,
  .btnTime::after,
  .btnInfo::after {
    content: "";
    position: absolute;
    background-image: url("../pic/arrow-right_white.svg");
    background-repeat: no-repeat;
    width: 3.6rem;
    height: 1.8rem;
    right: 2.5rem;
    top: calc(50% - 0.9rem);
  }
    .buttonAngebot {
        width: 15rem;
        top: auto;
        bottom: 1.2rem;
        left: 2rem;
    }

  /**** CONTENT ****/
  .contentRed {
    margin-top: 0;
    margin-bottom: 0;
    width: 48%;
    margin-left: 0;
  }
  .contentBlue,
  .contentOrange,
  .contentGreen {
    margin-bottom: 0;
    width: 48%;
    margin-left: 0;
  }
  .contentColumn {
    width: 48%;
  }
  .contentText {
    font-size: 2rem;
    line-height: 1.4;
  }
  .footerNavi {
    order: 2;
    margin: 0;
    display: inline-table;
    margin-right: auto;
    margin-left: 4rem;
  }
  .contentText__red {
    font-size: 2rem;
    line-height: 1.4;
    order: 3;
    display: inline-table;
  }
  .contentText__red--logoTg {
    padding-right: 20rem;
  }
  .footerInfo {
    font-size: 2.2rem;
  }
  .titleBox__text h4,
  .titleBox__textRed h4 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: bold;
  }
  .titleBox__icon--circle {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 2px solid white;
    padding: 0.8rem;
  }
  .titleBox__icon--circleRed {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    border: 2px solid var(--red);
    padding: 0.8rem;
  }
  .titleBox__icon {
    width: 7rem;
  }
  .titleBox__text, .titleBox__textRed {
    width: calc(100% - 9rem);
  }

/**** IMPRESSUM und DATENSCHUTZ ****/
  .datenschutz__Wrapper, .impressum__Wrapper {
   padding: 6.2rem 2.3rem 3rem 15rem;
}
.datenschutz__Container{
  width: 80%;
}
.impressum__Container{
  width: 70%;
}


@media screen and (min-width: 1440px) {
  /**** LAYOUT ****/
  .sectionRed,
  .sectionBlue,
  .sectionOrange,
  .sectionGreen,
  .sectionLightgrey {
    width: 100%;
    min-height: 100vh;
  }
  .sectionLightgrey {
    display: flex;
  }
  .wrapper {
    padding: 7.2rem 5.3rem 6rem 26.7rem;
    display: flex;
    justify-content: space-between;
  }
  .wrapper__footer {
    padding-left: 31rem;
    flex-wrap: wrap;
  }
  .wrapper__footer--block1 {
    display: flex;
    justify-content: space-between;
  }
  .wrapper__footer--block1 > div {
    width: 48%;
  }
  .block1__container1 {
    width: 100%;
  }
  .block1__container2 {
    padding-right: 0;
  }
  .wrapper__footer--block2 {
    display: flex;
    width: 100%;
    align-items: end;
  }
  .wrapper__footer--block2 div {
    width: 48%;
  }

  /**** LOGO, NAV, BUTTONS ****/
  .logoMobile {
    width: 15rem;
    position: fixed;
    left: 5.3rem;
    top: 7.2rem;
  }
  .logoMobile__red {
    order: 1;
    margin: 0 0 1.3rem 0;
  }
  nav {
    width: 48%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .buttonTel {
    bottom: 6.5rem;
    right: 6.9rem;
    left: auto;
  }
  .button {
    height: 9rem;
    width: 55.5rem;
    border-radius: 4.5rem;
    border: 0.3rem solid white;
    font-size: 2.5rem;
    line-height: 1.2;
    padding-left: 9.7rem;
    padding-top: 0.5rem;
    font-weight: bold;
  }
  .btnHear::before {
    width: 4.2rem;
    height: 4.9rem;
  }
  .btnClose::before {
    width: 4.2rem;
    height: 4.9rem;
  }
  .btnTime::before {
    width: 4.2rem;
    height: 4.9rem;
  }
  .btnInfo::before {
    width: 4.2rem;
    height: 4.9rem;
  }
  .btnHear::before,
  .btnClose::before,
  .btnTime::before,
  .btnInfo::before {
    left: 3.2rem;
    top: 1.5rem;
  }
  .btnHear::after,
  .btnClose::after,
  .btnTime::after,
  .btnInfo::after {
    content: "";
    position: absolute;
    background-image: url("../pic/arrow-right_white.svg");
    background-repeat: no-repeat;
    width: 3.6rem;
    height: 1.8rem;
    right: 3.5rem;
    top: calc(50% - 0.9rem);
  }
    .buttonAngebot {
        width: 21rem;
        top: auto;
        bottom: 5.5rem;
        left: 4rem;
    }

  /**** CONTENT ****/
  .contentRed {
    margin-top: 0;
    margin-bottom: 0;
    width: 48%;
    margin-left: 0;
  }
  .contentBlue,
  .contentOrange,
  .contentGreen {
    margin-bottom: 0;
    width: 48%;
    margin-left: 0;
  }
  .contentColumn {
    width: 48%;
  }
  .contentText {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  .footerNavi {
    order: 2;
    margin: 0;
    display: inline-table;
    margin-right: auto;
    margin-left: 13rem;
  }
  .contentText__red {
    font-size: 2.8rem;
    line-height: 1.4;
    order: 3;
    display: inline-table;
  }
  .contentText__red--logoTg {
    padding-right: 20rem;
  }
  .footerInfo {
    font-size: 3rem;
  }
  .titleBox__text h4,
  .titleBox__textRed h4 {
    font-size: 2.8rem;
    line-height: 1.4;
    font-weight: bold;
  }
  .titleBox__icon--circle {
    width: 6.8rem;
    height: 6.8rem;
    border-radius: 50%;
    border: 3px solid white;
    padding: 1.2rem;
  }
  .titleBox__icon--circleRed {
    width: 6.8rem;
    height: 6.8rem;
    border-radius: 50%;
    border: 3px solid var(--red);
    padding: 1.2rem;
  }
  .titleBox__icon {
    width: 9rem;
  }
  .titleBox__text {
    width: calc(100% - 9rem);
  }

/**** IMPRESSUM und DATENSCHUTZ ****/
 .datenschutz__Wrapper, .impressum__Wrapper{
   padding: 6.2rem 5.3rem 6rem 26.7rem;
   padding-left: 31rem;
}
.datenschutz__Container{
   width: 70%;
}
.impressum__Container{
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.impressum__Box1, .impressum__Box2{
   width: 47%;
}
}
