@media (max-width: 768px) {
  .logo {
    max-width: 230px;
    margin-left: 15px; } }
@media (max-width: 480px) {
  .logo {
    max-width: 175px;
    margin-left: 15px; } }

.section-1 {
  height: 70vh;
  background-image: url("../Assets/img/bg-01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center; }
  .section-1 .intro__text {
    color: white;
    left: 50%;
    bottom: 50px;
    transform: translate(-50%, 0%); }
  .section-1 .scroll__indicator {
    width: 25px;
    height: 25px;
    border-top: 3px solid white;
    border-right: 3px solid white;
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translate(-50%, 0%) rotate(135deg); }
  .section-1 .bounce {
    -moz-animation: bounce 3s infinite;
    -webkit-animation: bounce 3s infinite;
    animation: bounce 3s infinite; }
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translate(-50%, 0) rotate(135deg);
    transform: translate(-50%, 0) rotate(135deg); }
  40% {
    -moz-transform: translate(-50%, -15px) rotate(135deg);
    transform: translate(-50%, -15px) rotate(135deg); }
  60% {
    -moz-transform: translate(-50%, -5px) rotate(135deg);
    transform: translate(-50%, -5px) rotate(135deg); } }
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translate(-50%, 0px) rotate(135deg);
    transform: translate(-50%, 0px) rotate(135deg); }
  40% {
    -webkit-transform: translate(-50%, -15px) rotate(135deg);
    transform: translate(-50%, -15px) rotate(135deg); }
  60% {
    -webkit-transform: translate(-50%, -5px) rotate(135deg);
    transform: translate(-50%, -5px) rotate(135deg); } }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translate(-50%, 0px) rotate(135deg);
    -ms-transform: translate(-50%, 0px) rotate(135deg);
    -webkit-transform: translate(-50%, 0px) rotate(135deg);
    transform: translate(-50%, 0px) rotate(135deg); }
  40% {
    -moz-transform: translate(-50%, -15px) rotate(135deg);
    -ms-transform: translate(-50%, -15px) rotate(135deg);
    -webkit-transform: translate(-50%, -15px) rotate(135deg);
    transform: translate(-50%, -15px) rotate(135deg); }
  60% {
    -moz-transform: translate(-50%, -5px) rotate(135deg);
    -ms-transform: translate(-50%, -5px) rotate(135deg);
    -webkit-transform: translate(-50%, -5px) rotate(135deg);
    transform: translate(-50%, -5px) rotate(135deg); } }
.section-2 .kompetenzen--list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (max-width: 768px) {
    .section-2 .kompetenzen--list {
      flex-wrap: wrap; } }
  .section-2 .kompetenzen--list li {
    padding: 5px 15px;
    margin: 10px 10px;
    border: 1px solid #8b1215;
    background-color: white;
    display: block;
    transition: 0.25s ease-out;
    text-decoration: none;
    flex: 1;
    text-align: center;
    color: #8b1215;
    cursor: pointer; }
    .section-2 .kompetenzen--list li:hover {
      background-color: #8b1215;
      color: white; }
.section-2 .section__headline {
  font-size: 36px;
  color: #b2a08a;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (max-width: 1280px) {
    .section-2 .section__headline {
      font-size: 30px; } }
  @media (max-width: 768px) {
    .section-2 .section__headline {
      font-size: 26px; } }
  .section-2 .section__headline:before {
    content: "";
    display: block;
    width: 17px;
    height: 2px;
    background-color: #b2a08a;
    margin-right: 12px; }
  .section-2 .section__headline:after {
    content: "";
    display: block;
    width: 17px;
    height: 2px;
    background-color: #b2a08a;
    margin-left: 12px; }
.section-2 .contact__btn {
  border: 1px solid #8b1215;
  color: #8b1215;
  background-color: white;
  padding: 10px;
  display: block;
  transition: 0.25s ease-out;
  text-decoration: none; }
  .section-2 .contact__btn:hover {
    background-color: #8b1215;
    color: white;
    text-decoration: none; }

.section-3 {
  background-image: url("../Assets/img/bg-02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative; }
  .section-3 .bg__dimm {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); }
  .section-3 .quote {
    color: white;
    font-size: 26px;
    line-height: 48px;
    text-align: center; }
    @media (max-width: 1280px) {
      .section-3 .quote {
        font-size: 20px;
        line-height: 38px; } }
    @media (max-width: 1024px) {
      .section-3 .quote {
        font-size: 18px;
        line-height: 30px; } }
    .section-3 .quote:before {
      content: '\201C';
      display: block;
      font-size: 220px;
      position: absolute;
      color: #606060;
      left: 20px;
      top: 40px;
      transform: translate(-50%, 0%); }
      @media (max-width: 1024px) {
        .section-3 .quote:before {
          font-size: 150px; } }
      @media (max-width: 768px) {
        .section-3 .quote:before {
          display: none; } }
    .section-3 .quote:after {
      content: '\201E';
      display: block;
      position: absolute;
      font-size: 220px;
      color: #606060;
      right: 20px;
      bottom: 40px;
      transform: translate(50%, 0%); }
      @media (max-width: 1024px) {
        .section-3 .quote:after {
          font-size: 150px; } }
      @media (max-width: 768px) {
        .section-3 .quote:after {
          display: none; } }

@media (max-width: 768px) {
  .section-4 .tab-col {
    padding: 0px; } }
.section-4 .section__headline {
  font-size: 36px;
  color: #b2a08a;
  display: flex;
  justify-content: center;
  align-items: center; }
  @media (max-width: 1280px) {
    .section-4 .section__headline {
      font-size: 30px; } }
  @media (max-width: 768px) {
    .section-4 .section__headline {
      font-size: 26px; } }
  .section-4 .section__headline:before {
    content: "";
    display: block;
    width: 17px;
    height: 2px;
    background-color: #b2a08a;
    margin-right: 12px; }
  .section-4 .section__headline:after {
    content: "";
    display: block;
    width: 17px;
    height: 2px;
    background-color: #b2a08a;
    margin-left: 12px; }
.section-4 .nav-pills li {
  padding: 10px 0px;
  background-color: white;
  flex: 1; }
  @media (max-width: 768px) {
    .section-4 .nav-pills li p {
      display: none;
      font-size: 10px; } }
  .section-4 .nav-pills li .fas {
    color: #a5927a; }
  .section-4 .nav-pills li svg .st0 {
    fill: #c7b299; }
  .section-4 .nav-pills li a {
    color: #706f6f;
    text-decoration: none; }
    .section-4 .nav-pills li a svg {
      width: 100%;
      padding: 0px 35px; }
      @media (max-width: 768px) {
        .section-4 .nav-pills li a svg {
          padding: 0px 15px; } }
    .section-4 .nav-pills li a:hover {
      text-decoration: none; }
  .section-4 .nav-pills li .down-arrow {
    margin-top: 5px;
    margin-bottom: 15px;
    width: 15px;
    height: 15px;
    border-top: 2px solid #c7b299;
    border-right: 2px solid #c7b299;
    transform: rotate(135deg); }
  .section-4 .nav-pills li.active {
    background-color: #a5927a; }
    .section-4 .nav-pills li.active svg .st0 {
      fill: white; }
    .section-4 .nav-pills li.active a {
      color: white; }
    .section-4 .nav-pills li.active .down-arrow {
      border-top: 1px solid white;
      border-right: 1px solid white; }

.section-5 {
  background-image: url("../Assets/img/bg-03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative; }
  .section-5 h2 {
    margin-bottom: 40px; }
  .section-5 .bg__dimm {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); }
  .section-5 select, .section-5 input, .section-5 textarea {
    background-color: transparent;
    color: white !important;
    padding: 12px;
    border-color: #e4d0b6;
    border-width: 2px;
    border-style: solid;
    font-family: 'Hind', sans-serif; }
    @media (max-width: 768px) {
      .section-5 select, .section-5 input, .section-5 textarea {
        padding: 8px; } }
    @media (max-width: 480px) {
      .section-5 select, .section-5 input, .section-5 textarea {
        padding: 6px; } }
    .section-5 select::placeholder, .section-5 input::placeholder, .section-5 textarea::placeholder {
      /* Chrome, Firefox, Opera, Safari 10.1+ */
      color: white;
      opacity: 1;
      /* Firefox */
      text-transform: uppercase; }
    .section-5 select:-ms-input-placeholder, .section-5 input:-ms-input-placeholder, .section-5 textarea:-ms-input-placeholder {
      /* Internet Explorer 10-11 */
      color: white;
      text-transform: uppercase; }
    .section-5 select::-ms-input-placeholder, .section-5 input::-ms-input-placeholder, .section-5 textarea::-ms-input-placeholder {
      /* Microsoft Edge */
      color: white;
      text-transform: uppercase; }
  .section-5 select:focus {
    background-color: transparent !important;
    color: #8b1215 !important; }
  .section-5 .section__headline {
    font-size: 36px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center; }
    @media (max-width: 1280px) {
      .section-5 .section__headline {
        font-size: 30px; } }
    @media (max-width: 768px) {
      .section-5 .section__headline {
        font-size: 26px; } }
    .section-5 .section__headline:before {
      content: "";
      display: block;
      width: 17px;
      height: 2px;
      background-color: white;
      margin-right: 12px; }
    .section-5 .section__headline:after {
      content: "";
      display: block;
      width: 17px;
      height: 2px;
      background-color: white;
      margin-left: 12px; }
  .section-5 .submit-btn {
    border: none;
    padding: 10px 50px;
    text-transform: uppercase;
    cursor: pointer;
    color: white;
    background-color: #8b1215;
    font-family: 'Hind', sans-serif;
    display: block;
    transition: 0.25s ease-out;
    text-decoration: none; }
    .section-5 .submit-btn:hover {
      background-color: white;
      color: #8b1215 !important;
      text-decoration: none; }

.section-6 .lines {
  color: #b2a08a;
  display: flex;
  justify-content: center;
  align-items: center; }
  .section-6 .lines:before {
    content: "";
    display: block;
    width: 17px;
    height: 2px;
    background-color: #b2a08a;
    margin-right: 12px; }
  .section-6 .lines:after {
    content: "";
    display: block;
    width: 17px;
    height: 2px;
    background-color: #b2a08a;
    margin-left: 12px; }
.section-6 a:hover {
  color: #8b1215; }

.section-7 {
  /*.map{
    background-image: url("../Assets/img/map.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
  }*/ }

.tab-content {
  color: white;
  background-color: #a5927a;
  padding: 5px 15px; }
  .tab-content .tab-pane {
    word-break: break-word; }

.bg__brown {
  background-color: #a5927a; }

.color-beige {
  color: #b2a08a; }

.color-red {
  color: #8b1215; }

.terms-link {
  text-decoration: underline; }
  .terms-link:hover {
    color: #8b1215; }

.color-white {
  color: white; }

header {
  z-index: 3;
  position: absolute;
  width: 100%; }
  header .header-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px; }
    header .header-container .upper__part {
      align-self: flex-end;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      margin-top: 20px; }
      @media (max-width: 768px) {
        header .header-container .upper__part {
          margin-top: 10px; } }
      header .header-container .upper__part .tel a {
        color: #ffffff; }
      header .header-container .upper__part a {
        display: inline-block;
        margin-right: 15px;
        color: white; }
        header .header-container .upper__part a:hover {
          text-decoration: none;
          color: white; }
    header .header-container .lower__part {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-right: 15px;
      margin-top: 15px; }
      header .header-container .lower__part .nav-toggle {
        cursor: pointer; }
        header .header-container .lower__part .nav-toggle .bar1, header .header-container .lower__part .nav-toggle .bar2, header .header-container .lower__part .nav-toggle .bar3 {
          width: 35px;
          height: 3px;
          background-color: white;
          margin: 8px 0;
          transition: 0.4s; }
          @media (max-width: 768px) {
            header .header-container .lower__part .nav-toggle .bar1, header .header-container .lower__part .nav-toggle .bar2, header .header-container .lower__part .nav-toggle .bar3 {
              margin: 7px 0; } }
          @media (max-width: 480px) {
            header .header-container .lower__part .nav-toggle .bar1, header .header-container .lower__part .nav-toggle .bar2, header .header-container .lower__part .nav-toggle .bar3 {
              margin: 6px 0; } }
        header .header-container .lower__part .nav-toggle.change .bar1 {
          -webkit-transform: rotate(-45deg) translate(-9px, 6px);
          transform: rotate(-45deg) translate(-9px, 6px); }
        header .header-container .lower__part .nav-toggle.change .bar2 {
          opacity: 0; }
        header .header-container .lower__part .nav-toggle.change .bar3 {
          -webkit-transform: rotate(45deg) translate(-8px, -8px);
          transform: rotate(45deg) translate(-8px, -8px); }
  header .navigation {
    width: 30vw;
    height: 100vh;
    background-color: white;
    position: fixed;
    right: 0px;
    top: 0px;
    transform: translate(100%, 0%);
    transition: all 0.25s ease-in-out; }
    @media (max-width: 1024px) {
      header .navigation {
        width: 50vw; } }
    @media (max-width: 768px) {
      header .navigation {
        width: 100vw; } }
    header .navigation.open {
      transform: translate(0%, 0%); }
    header .navigation .close-menu {
      position: absolute;
      right: 32px;
      top: 32px;
      cursor: pointer;
      width: 32px;
      height: 32px; }
      header .navigation .close-menu:before {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 40px;
        width: 4px;
        background-color: #8b1215;
        transform: rotate(45deg); }
      header .navigation .close-menu:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 40px;
        width: 4px;
        background-color: #8b1215;
        transform: rotate(-45deg); }
    header .navigation .menu {
      /* height: 100%;*/
      margin-top: 20%;
      display: flex;
      justify-content: center;
      align-items: center; }
      header .navigation .menu ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 50px 0px;
        width: 100%;
        text-align: center; }
        header .navigation .menu ul li {
          padding: 20px 0px;
          border-bottom: 2px solid #b2a08a;
          width: 100%;
          text-transform: uppercase;
          font-family: "Times New Roman", Times, serif; }
          header .navigation .menu ul li a {
            font-size: 26px;
            color: #8b1215; }
            header .navigation .menu ul li a:hover {
              text-decoration: none; }
          header .navigation .menu ul li:last-child {
            border-bottom: none; }
    header .navigation .contact {
      display: flex;
      justify-content: center; }
      header .navigation .contact a {
        color: #8b1215;
        font-size: 26px;
        margin: 0px 15px; }

.section-dimm {
  opacity: 0;
  transition: all 0.2s ease-in;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 1;
  pointer-events: none; }
  .section-dimm.active {
    opacity: 1; }

body {
  color: #706f6f;
  font-family: "Times New Roman", Times, serif; }
  body p, body a, body li {
    font-size: 16px;
    font-family: 'Hind', sans-serif;
    font-weight: normal; }
    @media (max-width: 768px) {
      body p, body a, body li {
        font-size: 14px; } }

.font-48 {
  font-size: 48px; }
  @media (max-width: 1280px) {
    .font-48 {
      font-size: 38px; } }
  @media (max-width: 768px) {
    .font-48 {
      font-size: 28px; } }
  @media (max-width: 430px) {
    .font-48 {
      font-size: 24px; } }

.font-36 {
  font-size: 36px; }
  @media (max-width: 1280px) {
    .font-36 {
      font-size: 28px; } }
  @media (max-width: 768px) {
    .font-36 {
      font-size: 22px; } }
  @media (max-width: 430px) {
    .font-36 {
      font-size: 20px; } }

.font-26 {
  font-size: 26px; }
  @media (max-width: 1280px) {
    .font-26 {
      font-size: 22px; } }
  @media (max-width: 768px) {
    .font-26 {
      font-size: 18px; } }

.font-20 {
  font-size: 20px; }
  @media (max-width: 1280px) {
    .font-20 {
      font-size: 18px; } }
  @media (max-width: 768px) {
    .font-20 {
      font-size: 16px; } }

.font-16 {
  font-size: 16px; }
  @media (max-width: 1280px) {
    .font-16 {
      font-size: 14px; } }
  @media (max-width: 768px) {
    .font-16 {
      font-size: 12px; } }

.font-hind {
  font-family: 'Hind', sans-serif;
  font-weight: normal; }

.font-libre {
  font-family: 'Libre Baskerville', serif; }

.font-libre-bold {
  font-family: 'Libre Baskerville', serif;
  font-weight: bold; }

.footer {
  background-color: #8b1215;
  padding: 10px 25px 25px 25px;
  display: flex;
  justify-content: flex-end;
  align-items: center; }
  .footer a {
    color: white;
    text-decoration: none;
    padding: 0px 15px; }
    .footer a:hover {
      text-decoration: none; }
    .footer a.back-top {
      width: 12px;
      height: 12px;
      border-top: 1px solid white;
      border-right: 1px solid white;
      transform: translate(0%, 50%) rotate(-45deg);
      padding: 0px;
      margin: 0px 15px; }

/*# sourceMappingURL=style.css.map */
