@charset "UTF-8";
.text-center {
  text-align: center;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
}

section {
  width: 100%;
  max-width: 90rem;
  margin: 0 auto;
}

a:hover,
.fa-facebook-square:hover,
.fa-youtube-square:hover {
  color: rgb(0, 0, 0);
}

.container {
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 991.99px) {
  .container {
    width: 100%;
  }
}
@media (max-width: 1199.99px) {
  .container {
    width: 90%;
  }
}
@media (max-width: 575.99px) {
  .container .item {
    width: 100%;
  }
}
@media (min-width: 576px) {
  .container .item {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .container .item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .container .item {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .container .item {
    width: 50%;
  }
}

.img-fluid {
  width: 100%;
  height: auto;
}

/* header */
header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 90rem;
  margin: 0 auto;
  height: 6rem;
  margin-bottom: 1rem;
}
@media (max-width: 991.99px) {
  header {
    margin-bottom: 0rem;
  }
}
header .img-header {
  max-height: 6rem;
  padding-left: 2rem;
  padding-top: 0.5rem;
}
@media (max-width: 991.99px) {
  header {
    flex-direction: column;
    height: auto;
  }
  header .img-header {
    max-height: 5rem;
    padding-left: 0rem;
    padding-top: 0.5rem;
  }
}
header .header-item {
  flex: 0 1 auto;
}
header .header-item:nth-child(1) {
  width: 40%;
  background-color: rgb(255, 255, 255);
  align-self: center;
}
@media (max-width: 991.99px) {
  header .header-item:nth-child(1) {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0.5rem 1rem;
  }
}
header .header-item:nth-child(2) {
  width: 60%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: flex-end;
  align-content: flex-end;
}
header .header-item:nth-child(2) .icons {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  align-content: center;
  padding-right: 4em;
}
header .header-item:nth-child(2) .icons a {
  color: rgb(0, 0, 0);
}
header .header-item:nth-child(2) .icons a:hover {
  color: rgb(63, 150, 70);
}
header .header-item:nth-child(2) .icons .img-icon {
  margin-right: 2rem;
}
header .header-item:nth-child(2) .img-icon {
  width: 2rem;
  height: auto;
}
@media (max-width: 991.99px) {
  header .header-item:nth-child(2) {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
  }
  header .header-item:nth-child(2) .icons {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding-top: 0.5rem;
    padding-right: 0rem;
  }
  header .header-item:nth-child(2) .icons .img-icon {
    margin-right: 0rem;
  }
}

.nav {
  height: 2rem;
  width: 100%;
  position: relative;
}

.nav > .nav-header {
  display: inline;
}

.nav > .nav-btn {
  display: none;
}

.nav > .nav-links {
  display: inline;
  float: right;
  font-size: 1rem;
  padding-right: 3rem;
}

.nav > .nav-links > a {
  display: inline-block;
  padding: 0.3rem 1rem;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: 500;
}

.nav > .nav-links > a:hover {
  color: rgb(63, 150, 70);
}

.nav > #nav-check {
  display: none;
}

@media (max-width: 991.99px) {
  .nav {
    height: 3.05rem;
    width: 100%;
  }
  .nav > .nav-btn {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-self: center;
    align-items: center;
    background-color: rgb(63, 150, 70);
    color: rgb(255, 255, 255);
  }
  .nav > .nav-btn > label {
    display: inline-block;
    line-height: 3.3rem;
    font-size: 2rem;
    cursor: pointer;
  }
  .nav > .nav-btn > label:hover, .nav #nav-check:checked ~ .nav-btn > label {
    line-height: 3.1rem;
    font-size: 2rem;
  }
  .nav > .nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: rgb(255, 255, 255);
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 48px;
    margin: 0 auto;
    padding: 0;
  }
  .nav > .nav-links > a {
    display: block;
    width: 100%;
    text-align: center;
  }
  .nav > .nav-links > a:hover {
    background-color: rgb(63, 150, 70);
    color: rgb(255, 255, 255);
  }
  .nav > #nav-check:not(:checked) ~ .nav-links {
    height: 0px;
  }
  .nav > #nav-check:checked ~ .nav-links {
    height: calc(100vh - 50px);
    overflow-y: auto;
  }
}
.bg-green {
  background-color: rgb(63, 150, 70);
  color: rgb(255, 255, 255);
}

.bg-red {
  background-color: rgb(190, 22, 35);
  color: rgb(255, 255, 255);
}

.bg-orange {
  background-color: rgb(234, 184, 51);
  color: rgb(0, 0, 0);
}

.font-orange {
  color: rgb(234, 184, 51);
}

.font-green {
  color: rgb(63, 150, 70);
}

.font-white {
  color: rgb(255, 255, 255);
  font-weight: 600;
}

.icon::before {
  font-family: "fontawesome";
  margin-right: 0.5em;
}

.icon-fa::before {
  content: "⬢";
  color: rgb(190, 22, 35);
  font-size: 1.2rem;
}

.funktionstraining .icon-fa::before {
  content: "⬢";
  color: rgb(234, 184, 51);
  font-size: 1.2rem;
}

#rehasport,
#funktionstraining,
#uebungsleiter,
#verein {
  padding: 1rem;
}
@media (max-width: 991.99px) {
  #rehasport,
  #funktionstraining,
  #uebungsleiter,
  #verein {
    padding: 1rem 0rem;
  }
}
#rehasport .textfield,
#funktionstraining .textfield,
#uebungsleiter .textfield,
#verein .textfield {
  padding-right: 3rem;
}

.container ul {
  margin-left: 1rem;
}
@media (max-width: 767.99px) {
  .container ul {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 991.99px) {
  .container ul {
    margin-left: 0rem;
  }
}
.container ul li {
  font-weight: 550;
}
@media (max-width: 991.99px) {
  .container ul li {
    line-height: 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .container ul li {
    line-height: 2.8rem;
    font-size: 1.2rem;
  }
}

.textfield-button {
  padding: 0 2rem;
}
button {
  border: 0;
}

#octagon {
  width: 150px;
  height: 50px;
  background: rgb(63, 150, 70);
  position: relative;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  margin-top: 2rem;
  margin-right: 3rem;
  cursor: pointer;
}
#octagon:hover {
  color: rgb(0, 0, 0);
}
@media (max-width: 575.99px) {
  #octagon {
    margin-right: 3rem;
  }
}
@media (min-width: 768px) {
  #octagon {
    margin-right: 2rem;
  }
}

#octagon:before {
  content: "";
  width: 150px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 15px solid rgb(63, 150, 70);
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
}

#octagon:after {
  content: "";
  width: 150px;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 15px solid rgb(63, 150, 70);
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
}

#octagonx {
  width: 150px;
  height: 50px;
  background: rgb(190, 22, 35);
  position: relative;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  margin-top: 2rem;
  margin-right: 3rem;
  cursor: pointer;
}
#octagonx:hover {
  color: rgb(0, 0, 0);
}

#octagonx:before {
  content: "";
  width: 150px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 15px solid rgb(190, 22, 35);
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
}

#octagonx:after {
  content: "";
  width: 150px;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 15px solid rgb(190, 22, 35);
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
}

#octagong {
  width: 150px;
  height: 50px;
  background: rgb(234, 184, 51);
  position: relative;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  margin-top: 2rem;
  margin-right: 3rem;
  cursor: pointer;
}
#octagong:hover {
  color: rgb(0, 0, 0);
}

#octagong:before {
  content: "";
  width: 150px;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  border-bottom: 15px solid rgb(234, 184, 51);
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
}

#octagong:after {
  content: "";
  width: 150px;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 15px solid rgb(234, 184, 51);
  border-left: 15px solid #ffffff;
  border-right: 15px solid #ffffff;
}

h1 {
  margin-top: 2rem;
}
@media (max-width: 991.99px) {
  h1 {
    margin-top: 0;
  }
}

h3 {
  margin-top: 0;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 3em;
  justify-content: space-between;
  width: 100%;
  background-color: rgb(63, 150, 70);
  color: rgb(255, 255, 255);
}
.footer .item {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  padding: 1rem 0;
}
.footer .item:nth-child(1) {
  width: 20%;
}
@media (max-width: 767.99px) {
  .footer .item:nth-child(1) {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer .item:nth-child(1) {
    width: 50%;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .footer .item:nth-child(1) {
    width: 25%;
    text-align: center;
  }
}
.footer .item:nth-child(1) .img-fluid {
  width: auto;
  max-height: 6rem;
}
.footer .item:nth-child(2) {
  width: 35%;
}
@media (max-width: 767.99px) {
  .footer .item:nth-child(2) {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer .item:nth-child(2) {
    width: 50%;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .footer .item:nth-child(2) {
    width: 25%;
    text-align: center;
  }
}
.footer .item:nth-child(2) tr td:nth-child(1) {
  color: rgb(234, 184, 51);
}
.footer .item:nth-child(3) {
  width: 30%;
}
@media (max-width: 767.99px) {
  .footer .item:nth-child(3) {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer .item:nth-child(3) {
    width: 50%;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .footer .item:nth-child(3) {
    width: 25%;
    text-align: center;
  }
}
.footer .item:nth-child(3) p {
  padding-top: 1rem;
}
.footer .item:nth-child(3) h1 {
  margin-top: 1rem;
}
@media (max-width: 991.99px) {
  .footer .item:nth-child(3) {
    text-align: center;
  }
}
.footer .item:nth-child(4) {
  width: 15%;
}
@media (max-width: 767.99px) {
  .footer .item:nth-child(4) {
    width: 100%;
    text-align: center;
  }
}
@media (min-width: 768px) {
  .footer .item:nth-child(4) {
    width: 50%;
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .footer .item:nth-child(4) {
    width: 25%;
    text-align: center;
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0px auto;
}

td, th {
  padding: 0;
  border: 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.8rem;
}

.fa-facebook-square,
.fa-youtube-square {
  color: rgb(234, 184, 51);
  padding: 0 1rem;
}

.footer2 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-content: center;
  align-items: center;
  background-color: rgb(63, 150, 70);
  margin-top: 6px;
  padding: 1rem 0;
}
@media (max-width: 767.99px) {
  .footer2 .png {
    padding: 1rem 1rem 0 1rem;
  }
}
.footer2 img {
  height: 4rem;
  width: auto;
}

#hinweis {
  padding: 2rem;
}
#hinweis h2 {
  margin-top: 3rem;
}
#hinweis h3 {
  margin-top: 2rem;
}/*# sourceMappingURL=main.css.map */