* {
  margin: 0;
  padding: 0;
  border: none;
  box-sizing: border-box;
}

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

body {
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

h1:not(:first-child),
h2:not(:first-child),
h3:not(:first-child),
h4:not(:first-child),
h5:not(:first-child),
h6:not(:first-child) {
  margin-top: 2em;
}
h1:not(:last-child),
h2:not(:last-child),
h3:not(:last-child),
h4:not(:last-child),
h5:not(:last-child),
h6:not(:last-child) {
  margin-bottom: 1em;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

p:not(:last-child) {
  margin-bottom: 0.75rem;
}

a {
  color: inherit;
}

.btn:not(:first-child) {
  margin-top: 1.5rem;
}
.btn:not(:last-child) {
  margin-bottom: 1.5rem;
}
.btn a {
  background-color: #a8bdb2;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 2rem;
  border-radius: 999px;
  display: inline-block;
  transition: background-color 0.3s ease;
  font-weight: 600;
  text-align: center;
  font-size: inherit;
}
.btn a:hover {
  background-color: #8a9b8e;
}

.admin-bar .site__header {
  top: 32px;
}

.site__header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site__header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: calc(100% - 4rem);
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.site__header__logo img {
  height: 2rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
}
.site__header .primary-menu {
  display: flex;
  list-style: none;
  list-style-type: none;
  margin: 0;
}
.site__header .primary-menu li {
  margin: 0;
  list-style: none;
  position: relative;
}
.site__header .primary-menu > li.current_page_item > a,
.site__header .primary-menu > li.current_page_parent > a {
  font-weight: 700;
}
.site__header .primary-menu a {
  color: inherit;
  text-decoration: none;
}
.site__header .primary-menu > li > a {
  display: block;
  padding: 1.5rem 1rem;
}
.site__header .primary-menu .sub-menu {
  position: absolute;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  z-index: 1000;
  top: 100%;
  left: 0;
  width: 200px;
  transition: all 0.2s ease-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  pointer-events: none;
}
.site__header .primary-menu .sub-menu li:not(:first-child) {
  margin-top: 0.5rem;
}
.site__header .primary-menu li:hover > .sub-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.site__header__toggle {
  display: none;
}

.site__main > :first-child:not(.has-background) {
  margin-top: 5rem;
}

.block__header {
  overflow: hidden;
}
.block__header__wrapper {
  aspect-ratio: 3/1;
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}
.block__header__content {
  color: #fff;
  background-color: rgba(27, 65, 45, 0.6);
  padding: 4rem;
  text-align: center;
  width: 800px;
  max-width: calc(100% - 4rem);
}
.block__header__content a {
  color: inherit;
}
.block__header__content h1 {
  margin-bottom: 1rem;
}

.block__text.has-background {
  padding: 5rem 0;
  background-color: #a8bdb2;
  color: #1b412d;
}
.block__text.has-background .btn a {
  background-color: #fff;
  color: inherit;
}
.block__text.has-background .btn a:hover {
  background-color: #edf7f2;
}
.block__text__wrapper {
  max-width: calc(100% - 4rem);
  width: 1200px;
  margin: auto;
}
.block__text__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 0.75rem 2rem;
  margin-top: 2rem;
}

:not(.has-background) + .block__text,
.has-background + .block__text:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__team {
  background-color: #a8bdb2;
  color: #1b412d;
  padding: 4rem 0;
  text-align: center;
}
.block__team__wrapper {
  max-width: calc(100% - 4rem);
  width: 1200px;
  margin: auto;
}
.block__team__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 3rem 1rem;
  margin-top: 4rem;
}
.block__team__items h3 {
  margin-bottom: 0;
}
.block__team__items img {
  max-width: 100%;
  width: 15rem;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 999px;
}
.block__team__items i {
  display: block;
  margin-bottom: 0.75rem;
}

:not(.has-background) + .block__team,
.has-background + .block__team:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__partner {
  text-align: center;
}
.block__partner__wrapper {
  max-width: calc(100% - 4rem);
  width: 1200px;
  margin: auto;
}
.block__partner__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 3rem 1rem;
  margin-top: 4rem;
  color: #1b412d;
}
.block__partner__items:not(:last-child) {
  margin-bottom: 4rem;
}
.block__partner__items img {
  max-height: 8rem;
  width: auto;
}

:not(.has-background) + .block__partner,
.has-background + .block__partner:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.site__footer {
  position: relative;
  padding-bottom: 4rem;
}
.site__footer__content {
  color: #fff;
  background-color: rgba(27, 65, 45, 0.6);
  padding: 4rem 2rem;
  text-align: center;
  width: 800px;
  max-width: calc(100% - 4rem);
  margin: auto;
}
.site__footer h2 {
  margin-bottom: 2rem;
}
.site__footer__contact {
  text-align: left;
  margin: 2rem auto 0 auto;
}
.site__footer__contact td {
  vertical-align: top;
}
.site__footer__contact td:first-child {
  padding-right: 0.5rem;
}
.site__footer__contact tr:not(:last-child) td {
  padding-bottom: 0.5rem;
}
.site__footer__imprint {
  background-color: #1b412d;
  color: #fff;
  text-align: center;
  width: 800px;
  max-width: calc(100% - 4rem);
  margin: auto;
  padding: 1rem;
}
.site__footer__imprint a {
  color: inherit;
  text-decoration: none;
}

:not(.has-background) + .site__footer,
.has-background + .site__footer:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__news__wrapper {
  max-width: calc(100% - 4rem);
  width: 1200px;
  margin: auto;
}
.block__news__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 3rem;
  margin-top: 4rem;
  color: #1b412d;
  text-align: center;
}
.block__news__items a {
  text-decoration: none;
}
.block__news__items img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  max-width: 100%;
  display: block;
  margin-bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.block__news__items h3 {
  margin-bottom: 0;
  background-color: #a8bdb2;
  color: #fff;
  padding: 1rem;
  margin-top: 0;
  transition: background-color 0.3s ease-out;
}
.block__news__items h3:hover {
  background-color: #8a9b8e;
}
.block__news__items p {
  margin: 1rem 0;
}

:not(.has-background) + .block__news,
.has-background + .block__news:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__calendar {
  background-color: #a8bdb2;
  color: #1b412d;
  padding: 4rem 0;
}
.block__calendar__wrapper {
  max-width: calc(100% - 4rem);
  width: 1200px;
  margin: auto;
}
.block__calendar__table {
  border-collapse: collapse;
  width: 100%;
}
.block__calendar__table__date {
  font-weight: 700;
  white-space: nowrap;
}
.block__calendar__table td {
  vertical-align: top;
}
.block__calendar__table td:first-child {
  padding-right: 2rem;
}
.block__calendar__table tr:not(:first-child) td {
  padding-top: 2rem;
}
.block__calendar__table tr:not(:last-child) td {
  padding-bottom: 2rem;
}
.block__calendar__table tr:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.block__calendar .btn a {
  background-color: #fff;
  color: inherit;
}
.block__calendar .btn a:hover {
  background-color: #edf7f2;
}

:not(.has-background) + .block__calendar,
.has-background + .block__calendar:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__slider .swiper-slide {
  overflow: hidden;
  height: auto;
}
.block__slider__slide {
  height: 90vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.block__slider__bg {
  position: absolute;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  display: block;
}
.block__slider__content {
  color: #fff;
  background-color: rgba(27, 65, 45, 0.6);
  padding: 4rem;
  text-align: center;
  width: 800px;
  max-width: calc(100% - 4rem);
  position: relative;
}
.block__slider__content a {
  color: inherit;
}
.block__slider__content h1 {
  margin-bottom: 1rem;
}
.block__slider .swiper-pagination {
  position: static;
  background-color: #a8bdb2;
  height: auto;
  display: flex;
  padding: 1rem;
  justify-content: center;
}
.block__slider .swiper-pagination.swiper-pagination-lock {
  display: none;
}
.block__slider .swiper-pagination-bullet {
  display: block;
  background: #fff;
  width: 30px;
  border-radius: 99px;
  height: 4px;
  transition: all 0.3s ease-out;
}
.block__slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
  width: 50px;
}
.block__slider__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #1b412d;
  border-radius: 999px;
  width: 50px;
  height: 50px;
  right: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.block__slider__next:hover {
  background-color: #edf7f2;
}
.block__slider__prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  color: #1b412d;
  border-radius: 999px;
  width: 50px;
  height: 50px;
  left: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.block__slider__prev:hover {
  background-color: #edf7f2;
}

:not(.has-background) + .block__slider,
.has-background + .block__slider:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__imgtext__wrapper {
  display: flex;
  align-items: center;
}
.block__imgtext__img {
  flex: 1 1 30rem;
  align-self: stretch;
}
.block__imgtext__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.block__imgtext__text {
  flex: 1 1 30rem;
}
.block__imgtext__text__content {
  max-width: 600px;
  padding: 4rem 0 4rem 4rem;
}
.block__imgtext.reverse .block__imgtext__text__content {
  margin-left: auto;
  padding: 4rem 4rem 4rem 0;
}
.block__imgtext.small .block__imgtext__wrapper {
  width: 1200px;
  margin: auto;
  max-width: calc(100% - 4rem);
}
.block__imgtext.small .block__imgtext__text {
  padding: 0;
}
.block__imgtext.small .block__imgtext__text__content {
  max-width: auto;
}
.block__imgtext.small .block__imgtext__img {
  align-self: center;
}

:not(.has-background) + .block__imgtext,
.has-background + .block__imgtext:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.block__cta {
  background-color: #1b412d;
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}
.block__cta__wrapper {
  max-width: calc(100% - 4rem);
  width: 1000px;
  margin: auto;
}
.block__cta .btn a {
  background-color: #fff;
  color: #1b412d;
}
.block__cta .btn a:hover {
  background-color: #edf7f2;
}

:not(.has-background) + .block__cta,
.has-background + .block__cta:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.parallax-container {
  position: relative;
  overflow: hidden;
}

.parallax-image {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  padding: 0;
  z-index: -1;
}

.block__bgtext__bg {
  position: sticky;
  top: 0;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  display: block;
}
.block__bgtext__wrapper {
  max-width: calc(100% - 4rem);
  margin: auto;
  width: 1200px;
  min-height: 100vh;
}
.block__bgtext__content {
  max-width: 600px;
  margin-left: auto;
  background-color: rgba(27, 65, 45, 0.6);
  padding: 4rem;
  color: #fff;
  position: relative;
  z-index: 10;
}
.block__bgtext__content figure,
.block__bgtext__content img,
.block__bgtext__content video {
  max-width: 100%;
  height: auto;
  display: block;
}
.block__bgtext__content figure:not(:first-child),
.block__bgtext__content img:not(:first-child),
.block__bgtext__content video:not(:first-child) {
  margin-top: 3rem;
}
.block__bgtext__content figure:not(:last-child),
.block__bgtext__content img:not(:last-child),
.block__bgtext__content video:not(:last-child) {
  margin-bottom: 3rem;
}
.block__bgtext__content figure figcaption,
.block__bgtext__content img figcaption,
.block__bgtext__content video figcaption {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 0.5rem;
}
.block__bgtext.text-left .block__bgtext__content {
  margin-left: 0;
  margin-right: auto;
}
.block__bgtext.text-left .block__bgtext__bg {
  -o-object-position: 90% center;
     object-position: 90% center;
}
.block__bgtext.text-right .block__bgtext__content {
  margin-left: auto;
  margin-right: 0;
}
.block__bgtext.text-right .block__bgtext__bg {
  -o-object-position: 10% center;
     object-position: 10% center;
}
.block__bgtext.text-center .block__bgtext__content {
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
}
.block__bgtext.text-center .block__bgtext__bg {
  -o-object-position: center center;
     object-position: center center;
}

:not(.has-background) + .block__bgtext,
.has-background + .block__bgtext:not(.has-background) {
  margin: 5rem auto 0 auto;
}

.bafg-slider-description {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 0.5rem;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .site__header {
    padding: 1rem 0;
  }
  .site__header__wrapper {
    display: block;
  }
  .site__header .site__header__navigation {
    display: none;
  }
  .site__header .primary-menu {
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .site__header .primary-menu > li > a {
    padding: 0;
  }
  .site__header .primary-menu .sub-menu {
    position: static;
    display: block;
    background-color: #eee;
    padding: 1rem;
    opacity: 1;
    visibility: visible;
    border-radius: 5px;
    box-shadow: none;
    margin: 0.5rem 0 1rem 0;
    transform: none;
  }
  .site__header__toggle {
    display: block;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-color: transparent;
    font-weight: 600;
    color: #333;
    font-size: inherit;
  }
  .site__header__logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .site__header .custom-logo {
    max-width: 60vw;
    height: auto;
  }
  .block__header__content,
  .site__footer__content {
    padding: 2rem;
  }
  .block__imgtext {
    margin-bottom: 5rem;
  }
  .block__imgtext__wrapper {
    flex-direction: column;
    gap: 5rem;
  }
  .block__imgtext__img, .block__imgtext__text {
    flex: 0 0 auto;
  }
  .block__imgtext:not(.small) .block__imgtext__text__content {
    max-width: calc(100% - 4rem);
    margin: auto;
  }
  .block__imgtext.reverse .block__imgtext__wrapper {
    flex-direction: column-reverse;
  }
  .block__imgtext__text__content {
    padding: 0 !important;
    max-width: 100%;
  }
  .block__imgtext.small .block__imgtext__text__content {
    padding: 0;
  }
  .block__bgtext__wrapper {
    max-width: calc(100% - 1rem);
  }
  .block__bgtext__content {
    padding: 2rem;
  }
  .block__slider__content {
    padding: 2rem;
  }
  .block__slider__content h1 {
    font-size: 1.25rem;
  }
  .block__header__wrapper {
    aspect-ratio: 1/1;
  }
}/*# sourceMappingURL=style.css.map */