@charset "UTF-8";
/*
Theme Name: Sharing Theme
Author: Rixner.net
Author URI: https://rixner.net/
Description: Wordpress sharing theme
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sharing
Tags:
*/
/* ========================================================= */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body main {
  flex: 1;
}
body main ul {
  margin-left: 0 !important;
}
body main ul li {
  margin-bottom: 1rem;
}

/*=============================================
=            Header           =
=============================================*/
header h1 {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 0;
  color: #2862A1;
}
header h1 a {
  color: inherit;
  text-decoration: none;
}
header #logo img {
  width: 100%;
  height: auto;
  max-width: 500px;
}
@media screen and (max-width: 1024px) {
  header #logo img {
    max-width: 300px;
  }
}
@media screen and (max-width: 480px) {
  header #logo img {
    max-width: 200px;
  }
}

/*=============================================
=            Hero Section           =
=============================================*/
.hero-section {
  width: 100%;
  overflow: hidden;
}
.hero-section .hero-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero-section .hero-image-wrapper {
    height: 200px;
  }
}
@media screen and (max-width: 480px) {
  .hero-section .hero-image-wrapper {
    height: 150px;
  }
}
.hero-section .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/*=============================================
=            Mega Menu           =
=============================================*/
nav.main-menu a.mega-menu-link {
  margin: 0 1.5rem !important;
}
@media screen and (max-width: 1160px) {
  nav.main-menu a.mega-menu-link {
    margin: 0 1rem !important;
    font-size: 1.7rem !important;
  }
}

nav.main-menu a.mega-menu-link > span.mega-indicator {
  margin: 0 0rem 0rem 0.25rem !important;
  font-size: 1.6rem !important;
}

nav.main-menu a.mega-menu-link + ul.mega-sub-menu {
  margin-left: calc(1.5rem + 2px) !important;
  padding: 1rem 0 !important;
}
nav.main-menu a.mega-menu-link + ul.mega-sub-menu a.mega-menu-link {
  margin: 0 1rem !important;
}
@media screen and (max-width: 1160px) {
  nav.main-menu a.mega-menu-link + ul.mega-sub-menu a.mega-menu-link {
    font-size: 1.5rem !important;
  }
}

nav.main-menu a.mega-menu-link + ul.mega-sub-menu > li > a + ul.mega-sub-menu {
  margin-left: 0 !important;
  margin-top: -0.7rem !important;
  padding: 0.5rem 0 !important;
}

nav.main-menu li.current-menu-item > a,
nav.main-menu li.current_page_item > a,
nav.main-menu li.current-menu-ancestor > a,
nav.main-menu li.current_page_ancestor > a,
nav.main-menu li.current-menu-parent > a,
nav.main-menu li.current_page_parent > a,
nav.main-menu li.mega-current-menu-item > a.mega-menu-link,
nav.main-menu li.mega-current-page-ancestor > a.mega-menu-link,
nav.main-menu li.mega-current-menu-ancestor > a.mega-menu-link {
  color: #2862A1 !important;
  font-weight: 600;
}

/*=============================================
=            Content           =
=============================================*/
main img,
main img[width],
main img[height] {
  max-width: 100% !important;
  height: auto !important;
}
main article table {
  width: 100%;
  margin-bottom: 2rem;
  border-collapse: collapse;
  display: table !important;
}
main article table thead th {
  font-weight: 600;
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid rgba(90, 90, 90, 0.3);
}
main article table tbody td {
  padding: 1rem;
  border-bottom: 1px solid rgba(90, 90, 90, 0.2);
  display: table-cell !important;
}
main article table tbody td a {
  color: #2862A1;
  text-decoration: none;
}
main article table tbody td a:hover {
  text-decoration: underline !important;
}
main article table tbody tr {
  display: table-row !important;
}
main article table tbody tr:last-child td {
  border-bottom: none;
}
main .alignleft {
  float: left;
  margin: 0 2rem 1rem 0;
  max-width: 50%;
  width: auto;
  height: auto;
}
@media screen and (max-width: 768px) {
  main .alignleft {
    float: none;
    margin: 0 auto 1rem;
    display: block;
    max-width: 100%;
    width: 100%;
  }
}
main .alignright {
  float: right;
  margin: 0 0 1rem 2rem;
  max-width: 50%;
  width: auto;
  height: auto;
}
@media screen and (max-width: 768px) {
  main .alignright {
    float: none;
    margin: 0 auto 1rem;
    display: block;
    max-width: 100%;
    width: 100%;
  }
}
main .aligncenter {
  display: block;
  margin: 0 auto 1rem;
  clear: both;
}
main .alignnone {
  margin: 0 0 1rem;
}
main .size-full,
main .size-large {
  max-width: 1200px !important;
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 1200px) {
  main .size-full,
  main .size-large {
    max-width: 100% !important;
    width: 100% !important;
  }
}
main .size-medium {
  max-width: 800px !important;
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 800px) {
  main .size-medium {
    max-width: 100% !important;
    width: 100% !important;
  }
}
main .size-thumbnail {
  max-width: 150px !important;
  width: auto !important;
  height: auto !important;
}
@media screen and (max-width: 768px) {
  main .size-thumbnail {
    max-width: 100% !important;
    width: 100% !important;
  }
}
main .size-content-large {
  max-width: 1200px !important;
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 1200px) {
  main .size-content-large {
    max-width: 100% !important;
    width: 100% !important;
  }
}
main .kurs-details {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
main .kurs-details .kurs-labels .kurs-beginn,
main .kurs-details .kurs-labels .kurs-ende,
main .kurs-details .kurs-labels .kurs-gebuehr {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  main .kurs-details .kurs-labels .kurs-beginn,
  main .kurs-details .kurs-labels .kurs-ende,
  main .kurs-details .kurs-labels .kurs-gebuehr {
    margin-bottom: 1rem;
  }
}
main .kurs-details .kurs-labels .kurs-beginn strong,
main .kurs-details .kurs-labels .kurs-ende strong,
main .kurs-details .kurs-labels .kurs-gebuehr strong {
  font-weight: 600;
  color: #2862A1;
}
main .kurs-details .kurs-values .kurs-beginn-value,
main .kurs-details .kurs-values .kurs-ende-value,
main .kurs-details .kurs-values .kurs-gebuehr-value {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  main .kurs-details .kurs-values .kurs-beginn-value,
  main .kurs-details .kurs-values .kurs-ende-value,
  main .kurs-details .kurs-values .kurs-gebuehr-value {
    margin-bottom: 1rem;
  }
}
main .kurs-leiter {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
main .kurs-leiter strong {
  font-weight: 600;
  color: #2862A1;
}
main .kurs-leiter a {
  color: #2862A1;
  text-decoration: none;
}
main .kurs-leiter a:hover {
  text-decoration: underline;
}
main .size-content-medium {
  max-width: 800px !important;
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 800px) {
  main .size-content-medium {
    max-width: 100% !important;
    width: 100% !important;
  }
}
main .size-content-small {
  max-width: 400px !important;
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 400px) {
  main .size-content-small {
    max-width: 100% !important;
    width: 100% !important;
  }
}
main figure,
main figure[style],
main .wp-caption {
  margin: 0 0 2rem !important;
  max-width: 100% !important;
}
main figure img,
main figure[style] img,
main .wp-caption img {
  margin-bottom: 0.5rem;
  max-width: 100% !important;
  height: auto !important;
}
main figcaption {
  font-size: 1.2rem;
  color: #5A5A5A;
  text-align: left;
  font-style: italic;
  margin-top: 0.5rem;
}
main figure.alignleft,
main .wp-caption.alignleft {
  float: left;
  margin: 0 2rem 2rem 0 !important;
  max-width: 50% !important;
  width: auto !important;
}
@media screen and (max-width: 768px) {
  main figure.alignleft,
  main .wp-caption.alignleft {
    float: none;
    margin: 0 auto 2rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}
main figure.alignleft img,
main .wp-caption.alignleft img {
  max-width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 768px) {
  main figure.alignleft img,
  main .wp-caption.alignleft img {
    width: 100% !important;
  }
}
main figure.alignright,
main .wp-caption.alignright {
  float: right;
  margin: 0 0 2rem 2rem !important;
  max-width: 50% !important;
  width: auto !important;
}
@media screen and (max-width: 768px) {
  main figure.alignright,
  main .wp-caption.alignright {
    float: none;
    margin: 0 auto 2rem !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}
main figure.alignright img,
main .wp-caption.alignright img {
  max-width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 768px) {
  main figure.alignright img,
  main .wp-caption.alignright img {
    width: 100% !important;
  }
}
main figure.aligncenter,
main .wp-caption.aligncenter {
  display: block;
  margin: 0 auto 2rem !important;
  clear: both;
  max-width: 100% !important;
}
main figure.aligncenter img,
main .wp-caption.aligncenter img {
  max-width: 100% !important;
  height: auto !important;
}
main .gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
main .gallery .gallery-item {
  flex: 1 1 auto;
  min-width: 200px;
}
main .gallery .gallery-item img {
  width: 100%;
  height: auto;
}
main h2 {
  font-weight: 400;
  margin-bottom: 3rem;
  color: #2862A1;
}

/*=============================================
=            Footer           =
=============================================*/
footer {
  font-size: 1.3rem;
}
footer p {
  margin-bottom: 0.5rem;
  color: white;
}
footer nav a {
  color: white;
  text-decoration: none;
}
footer nav a:hover {
  color: white;
  text-decoration: underline;
}
footer nav.footer-meta-menu ul li:not(:last-child)::after {
  content: "·";
  margin: 0 0.5rem;
  color: white;
}
footer .border-top {
  border-top: 1px solid rgba(90, 90, 90, 0.2);
}
@media screen and (max-width: 500px) {
  footer .footer-company-info p .footer-main-name,
  footer .footer-company-info p .footer-adresse,
  footer .footer-company-info p .footer-plz-ort {
    display: block;
    margin-bottom: 0.1rem;
  }
  footer .footer-company-info p .footer-separator {
    display: none;
  }
}

/*=============================================
=            Category Posts List           =
=============================================*/
.category-post-item {
  border-top: 1px solid rgba(90, 90, 90, 0.4);
  padding: 2rem 0 0.5rem 0;
  margin-top: 1.5rem;
}
.category-post-item .post-meta {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.category-post-item h3 {
  margin-bottom: 0.5rem;
}
.category-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.category-post-item .read-more-wrapper {
  margin-top: 1rem;
}
.category-post-item .read-more-link {
  color: #2862A1;
}
.category-post-item .read-more-link:hover {
  text-decoration: underline;
}

/*=============================================
=            Kurse Table           =
=============================================*/
.kurs-sort-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(90, 90, 90, 0.2);
  border-bottom: 1px solid rgba(90, 90, 90, 0.2);
}
.kurs-sort-wrapper label {
  font-size: 1.3rem;
  margin-bottom: 0;
  color: #5A5A5A;
  white-space: nowrap;
}
.kurs-sort-wrapper select.form-select {
  width: 100%;
  max-width: 260px;
  font-size: 1.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  border-color: rgba(90, 90, 90, 0.4);
  box-shadow: none;
  background-color: #fff;
}
.kurs-sort-wrapper select.form-select:focus {
  border-color: #2862A1;
  box-shadow: 0 0 0 0.15rem rgba(40, 98, 161, 0.15);
}
@media screen and (max-width: 480px) {
  .kurs-sort-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  .kurs-sort-wrapper select.form-select {
    width: 100%;
    max-width: 100%;
  }
}

.kurs-table-wrapper .table-responsive table.table thead th {
  font-weight: 600;
  padding: 1rem 0rem;
}
.kurs-table-wrapper .table-responsive table.table thead th a {
  color: inherit;
  text-decoration: none !important;
  cursor: pointer;
  display: inline-block;
  transition: color 0.2s;
}
.kurs-table-wrapper .table-responsive table.table thead th a:hover {
  color: #2862A1;
  text-decoration: none !important;
}
.kurs-table-wrapper .table-responsive table.table thead th a .sort-triangle {
  color: #2862A1;
  margin-left: 0.3rem;
  font-size: 0.7em;
  vertical-align: middle;
}
.kurs-table-wrapper .table-responsive table.table tbody td {
  padding: 1rem 0rem;
}
.kurs-table-wrapper .table-responsive table.table tbody td a {
  color: #2862A1;
  text-decoration: none;
}
.kurs-table-wrapper .table-responsive table.table tbody td a:hover {
  text-decoration: underline !important;
}
.kurs-table-wrapper .mobile-sort-wrapper {
  margin-bottom: 2rem;
}
.kurs-table-wrapper .mobile-sort-wrapper label {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.kurs-table-wrapper .mobile-sort-wrapper select.form-select {
  font-size: 1.2rem;
  padding: 0.55rem 1.25rem;
}
.kurs-table-wrapper .kurs-cards .kurs-card {
  background-color: #fff;
  border: 1px solid rgba(90, 90, 90, 0.2) !important;
  border-left: none !important;
  border-right: none !important;
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.kurs-table-wrapper .kurs-cards .kurs-card .kurs-card-item {
  margin-bottom: 0rem;
}
.kurs-table-wrapper .kurs-cards .kurs-card .kurs-card-item:last-child {
  margin-bottom: 0;
}
.kurs-table-wrapper .kurs-cards .kurs-card .kurs-card-item strong {
  font-weight: 600;
  color: #2862A1;
}
.kurs-table-wrapper .kurs-cards .kurs-card .kurs-card-item .col-15 a {
  color: #2862A1;
  text-decoration: none;
}
.kurs-table-wrapper .kurs-cards .kurs-card .kurs-card-item .col-15 a:hover {
  text-decoration: underline !important;
}
.kurs-table-wrapper .kurs-cards .kurs-card:last-child {
  margin-bottom: 0;
}

a.text-decoration-none:hover {
  text-decoration: underline !important;
}

/*=============================================
=            Contact Form 7           =
=============================================*/
.wpcf7 .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 1.5rem;
}
.wpcf7 .wpcf7-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
  color: #5A5A5A;
}
.wpcf7 .wpcf7-form input[type=text],
.wpcf7 .wpcf7-form input[type=email],
.wpcf7 .wpcf7-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #5A5A5A;
  background-color: #fff;
  border: 1px solid rgba(90, 90, 90, 0.3);
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.wpcf7 .wpcf7-form input[type=text]:focus,
.wpcf7 .wpcf7-form input[type=email]:focus,
.wpcf7 .wpcf7-form textarea:focus {
  outline: 0;
  border-color: #2862A1;
  box-shadow: 0 0 0 0.2rem rgba(40, 98, 161, 0.25);
}
.wpcf7 .wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}
.wpcf7 .wpcf7-form input[type=submit] {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  background-color: #2862A1;
  color: #fff;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.wpcf7 .wpcf7-form input[type=submit]:hover {
  background-color: rgb(29.8507462687, 73.1343283582, 120.1492537313);
  text-decoration: none;
}
.wpcf7 .wpcf7-form input[type=submit]:focus {
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(40, 98, 161, 0.25);
}
.wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  color: #e67e7e;
  font-size: 1.4rem;
  margin-top: 0.5rem;
  display: block;
}
.wpcf7 .wpcf7-form .wpcf7-validation-errors,
.wpcf7 .wpcf7-form .wpcf7-mail-sent-ok {
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 0.25rem;
}
.wpcf7 .wpcf7-form .wpcf7-validation-errors {
  background-color: rgba(230, 126, 126, 0.1);
  border: 1px solid #e67e7e;
  color: #e67e7e;
}
.wpcf7 .wpcf7-form .wpcf7-mail-sent-ok {
  background-color: rgba(63, 160, 129, 0.1);
  border: 1px solid #3fa081;
  color: #3fa081;
}

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