@font-face {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/AbhayaLibre-Bold.ttf");
}
@font-face {
  font-family: "BarlowSemiCondensed";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/BarlowSemiCondensed-Bold.ttf");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/Barlow-Regular.ttf");
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 400;
  src: url("fonts/Barlow-Italic.ttf");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/Barlow-Medium.ttf");
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 500;
  src: url("fonts/Barlow-MediumItalic.ttf");
}
@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/Barlow-Bold.ttf");
}
@font-face {
  font-family: "Barlow";
  font-style: italic;
  font-weight: 700;
  src: url("fonts/Barlow-BoldItalic.ttf");
}
body {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.5em;
  color: #243E20;
  margin: 0;
  background-color: #FFFFF2;
  transition: 0.3s opacity ease;
}
body.fade-out {
  opacity: 0;
  transition: none;
}

* {
  font-family: "Barlow", sans-serif;
  box-sizing: border-box;
}

*::-moz-selection {
  background-color: #fafaf6;
}

*::selection {
  background-color: #fafaf6;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5em;
  margin: 1em 0 0.5em 0;
}

h1 {
  font-family: "AbhayaLibre", serif;
  font-weight: 700;
  font-size: clamp(40px, 8vw, 80px);
  line-height: 1em;
  color: #1E582F;
}

h2 {
  font-family: "AbhayaLibre", serif;
  font-weight: 700;
  font-size: clamp(40px, 5vw, 80px);
  line-height: 1em;
  color: #1E582F;
  margin: 0 0 5% 0;
}

h3 {
  font-family: "BarlowSemiCondensed", sans-serif;
  font-size: clamp(20px, 4vw, 30px);
  line-height: 1.2em;
  font-weight: 700;
  color: #1E582F;
}

h4 {
  font-size: 1.6em;
  font-weight: 400;
}

h5 {
  font-size: 1.3em;
  font-weight: 400;
}

h6 {
  font-size: 1em;
  font-weight: 400;
}

p {
  font-weight: 500;
  margin: 0 0 1em 0;
}
p:last-child {
  margin: 0;
}

a {
  color: #1E582F;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

a.btn {
  color: #FFFFF2;
  background-color: #1E582F;
  font-weight: 700;
  font-style: italic;
  padding: 15px 60px;
  border-radius: 40px 0 40px 40px;
  display: inline-block;
  float: left;
  transition: all ease 0.2s;
  overflow: hidden;
  position: relative;
}
@media (max-width: 992px) {
  a.btn {
    padding: 8px 30px;
  }
}
a.btn:hover {
  text-decoration: none;
  background-color: #226335;
  transform: translateY(-3px);
  box-shadow: 0 3px 0 #11321b;
}
a.btn:active {
  transform: translateY(0);
  background-color: #1a4d29;
  box-shadow: 0 0 0;
}
a.btn span {
  position: relative;
  z-index: 10;
}
a.btn.icon {
  background-color: #1E582F;
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: inline-block;
  float: left;
  padding: 0;
}
a.btn.icon:hover {
  text-decoration: none;
  background-color: #226335;
  transform: translateY(-3px);
  box-shadow: 0 3px 0 #11321b;
}
a.btn.icon:active {
  transform: translateY(0);
  background-color: #1a4d29;
  box-shadow: 0 0 0;
}
@media (max-width: 1200px) {
  a.btn.icon {
    width: 57px;
    height: 57px;
  }
}
@media (max-width: 992px) {
  a.btn.icon {
    width: 43px;
    height: 43px;
  }
}
@media (max-width: 767px) {
  a.btn.icon {
    width: 40px;
    height: 40px;
  }
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

blockquote {
  font-size: 1.2em;
  line-height: 1.6em;
  color: #9cc895;
  border: none;
  font-weight: 400;
  font-style: italic;
  padding: 30px;
}

hr {
  border-top: 1px solid #243E20;
  border-bottom: 0;
  margin: 3em 0;
}

pre {
  overflow: scroll;
  border: 1px solid #243E20;
  border-radius: 0;
}

article {
  margin: 0 0 15px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  color: #7cb773;
  background-color: #1f1f1f;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
table th, table td {
  text-align: left;
  border: 1px solid black;
  padding: 2%;
}
table th p:last-child, table td p:last-child {
  margin-bottom: 0;
}

abbr {
  cursor: help;
  text-decoration: none;
}

code {
  color: #243E20;
  border-radius: 5px;
  padding: 2px 6px;
}

ol ol {
  list-style-type: lower-alpha;
}

dl dt {
  font-weight: 700;
}
dl dd {
  margin: 0;
  padding: 0;
  margin-inline-start: 0;
}

.clear:before, .clear:after {
  content: "";
  display: table;
}
.clear:after {
  clear: both;
}

#page-wrap {
  min-width: 320px;
  margin: 0 auto;
  overflow: hidden;
}

section {
  box-sizing: content-box;
}

.spacer {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 5%;
}
.spacer::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-image: url("img/line.svg");
  background-position: left;
}
.spacer::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-image: url("img/line.svg");
  background-position: right;
}
.spacer img {
  display: inline-block;
}
@media (max-width: 992px) {
  .spacer img {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .spacer img {
    width: 60px;
  }
}

.sub-head .inner {
  padding-left: 5%;
  padding-right: 5%;
  background-color: #E4EADA;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 40px;
}
.sub-head .inner p.page-title {
  font-family: "BarlowSemiCondensed", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.sub-head .inner p.page-title a {
  text-decoration: none;
}
.sub-head svg.swing-bottom {
  display: block;
  fill: #E4EADA;
  height: auto;
  width: 100%;
}

.sub-content {
  max-width: 1400px;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 10%;
}
.sub-content .center {
  max-width: 900px;
  margin: auto;
}

section.intro {
  text-align: center;
}
section.intro .intro-top {
  background-image: url("img/intro.jpg");
  background-size: cover;
  background-position: top center;
  color: #ffffff;
  position: relative;
}
section.intro .intro-top::after {
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: rgb(0, 0, 0);
  background: linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  z-index: 0;
  opacity: 0.6;
}
@media (max-width: 767px) {
  section.intro .intro-top::after {
    height: 80%;
    opacity: 0.7;
  }
}
section.intro .intro-top .inner {
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 30px;
  position: relative;
  z-index: 1;
  height: 60vh;
  min-height: 500px;
}
@media (max-width: 767px) {
  section.intro .intro-top .inner {
    height: 320px;
    min-height: auto;
  }
}
section.intro .intro-top .inner p.page-title {
  font-family: "BarlowSemiCondensed", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}
section.intro .intro-top .inner h1 {
  color: #ffffff;
  margin: 0;
}
section.intro .intro-top svg {
  position: absolute;
  bottom: 0;
  left: 0;
  fill: #FFFFF2;
  height: auto;
  width: 100%;
}
section.intro .intro-bottom {
  max-width: 1400px;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 10%;
}
@media (max-width: 767px) {
  section.intro .intro-bottom {
    margin-bottom: 15%;
  }
}
section.intro .intro-bottom .inner h3 {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
section.intro .intro-bottom .inner p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
section.intro .intro-bottom .spacer {
  margin-top: 5%;
}

section.text-image {
  max-width: 1400px;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  margin-top: 10%;
  margin-bottom: 10%;
}
@media (max-width: 767px) {
  section.text-image {
    margin-top: 15%;
  }
}
@media (max-width: 767px) {
  section.text-image {
    margin-bottom: 15%;
  }
}
section.text-image .inner {
  display: flex;
  gap: 10%;
}
@media (max-width: 992px) {
  section.text-image .inner {
    display: block;
  }
}
section.text-image .inner.right {
  flex-direction: row-reverse;
}
section.text-image .inner.left {
  flex-direction: row;
}
section.text-image .inner .text {
  width: 55%;
}
@media (max-width: 992px) {
  section.text-image .inner .text {
    margin: auto;
    width: auto;
    text-align: left;
  }
}
section.text-image .inner .image {
  width: 45%;
}
@media (max-width: 992px) {
  section.text-image .inner .image {
    margin: auto;
    margin-bottom: 5%;
    width: auto;
    max-width: 400px;
  }
}
section.text-image .mask1 {
  -webkit-mask-image: url(img/mask1.png);
  mask-image: url(img/mask1.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
section.text-image .mask2 {
  -webkit-mask-image: url(img/mask2.png);
  mask-image: url(img/mask2.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media (max-width: 992px) {
  section.text-image .list-info {
    margin-top: 15%;
  }
}
section.text-image .list-info-cols {
  display: inline-flex;
  flex-wrap: wrap;
}
section.text-image .list-info-cols .col {
  flex: 50%;
  padding-top: 30px;
}
@media (max-width: 992px) {
  section.text-image .list-info-cols .col {
    flex: 100%;
    padding-top: 15px;
  }
}
section.text-image .list-info-cols .col:nth-child(odd) {
  padding-right: 15px;
}
@media (max-width: 992px) {
  section.text-image .list-info-cols .col:nth-child(odd) {
    padding-right: 0;
  }
}
section.text-image .list-info-cols .col:nth-child(even) {
  padding-left: 15px;
}
@media (max-width: 992px) {
  section.text-image .list-info-cols .col:nth-child(even) {
    padding-left: 0;
  }
}
section.text-image .list-info-cols .col .col-inner {
  background-color: #E4EADA;
  height: 120px;
  width: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-weight: 500;
}
@media (max-width: 992px) {
  section.text-image .list-info-cols .col .col-inner {
    height: auto;
    padding: 15px;
  }
}
section.text-image .list-info-cols .col .col-inner img {
  margin-right: 20px;
}
@media (max-width: 767px) {
  section.text-image .list-info-cols .col .col-inner img {
    width: 70px;
  }
}
section.text-image .list-info-cols .col.cta a.col-inner {
  color: #ffffff;
  background-color: #1E582F;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  opacity: 1;
  transform: translateY(0);
  transition: all ease 0.3s;
}
@media (max-width: 992px) {
  section.text-image .list-info-cols .col.cta a.col-inner {
    padding: 30px 15px;
  }
}
section.text-image .list-info-cols .col.cta a.col-inner:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
section.text-image .list-info-cols .col.cta a.col-inner span {
  font-size: 21px;
}
@media (max-width: 992px) {
  section.text-image .list-info-cols .col.cta a.col-inner span {
    font-size: 16px;
  }
}
section.text-image .list-info-cols .col.cta a.col-inner span.mail {
  font-size: 26px;
  font-weight: 700;
}
@media (max-width: 992px) {
  section.text-image .list-info-cols .col.cta a.col-inner span.mail {
    font-size: 18px;
  }
}

section.slide-info {
  position: relative;
}
section.slide-info svg.swing-top,
section.slide-info svg.swing-bottom {
  display: block;
  fill: #E4EADA;
  height: auto;
  width: 100%;
}
section.slide-info .inner {
  background-color: #E4EADA;
  padding: 5% 0 6% 0;
}
section.slide-info .inner .slide-info-title {
  max-width: 1400px;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}
section.slide-info .inner .slide-info-cols {
  max-width: 1400px;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}
section.slide-info .inner .swiper {
  padding-left: 5%;
  padding-right: 5%;
}
section.slide-info .inner .swiper .swiper-wrapper {
  max-width: 1400px;
}
section.slide-info .inner .swiper .swiper-wrapper .swiper-slide img {
  border-radius: 20px;
}
section.slide-info .inner .swiper .swiper-wrapper .swiper-slide.swiper-slide-active .sub {
  opacity: 1;
}
section.slide-info .inner .swiper .swiper-wrapper .swiper-slide .sub {
  opacity: 0;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(14px, 2vw, 18px);
  text-align: center;
  transition: opacity ease 1.5s;
  margin-top: 30px;
}
section.slide-info .inner .swiper .navigation {
  max-width: 1400px;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: -32px;
}
section.slide-info .inner .swiper .navigation .swiper-button-next, section.slide-info .inner .swiper .navigation .swiper-button-prev {
  position: relative;
  width: auto;
  display: block;
  margin: 0;
  height: auto;
  color: #1E582F;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 700;
  letter-spacing: 0.1em;
}
section.slide-info .inner .swiper .navigation .swiper-button-next::after, section.slide-info .inner .swiper .navigation .swiper-button-prev::after {
  display: none;
}
section.slide-info .inner .swiper .navigation .swiper-button-next svg, section.slide-info .inner .swiper .navigation .swiper-button-prev svg {
  fill: #1E582F;
  transform: translateY(6px);
}
@media (max-width: 767px) {
  section.slide-info .inner .swiper .navigation .swiper-button-next span, section.slide-info .inner .swiper .navigation .swiper-button-prev span {
    display: none;
  }
}
section.slide-info .inner .swiper .navigation .swiper-button-next {
  right: 0;
  float: right;
}
section.slide-info .inner .swiper .navigation .swiper-button-next svg {
  margin-left: 5px;
}
section.slide-info .inner .swiper .navigation .swiper-button-prev {
  left: 0;
  float: left;
}
section.slide-info .inner .swiper .navigation .swiper-button-prev svg {
  margin-right: 5px;
}
section.slide-info .inner .slide-info-cols {
  margin-top: 5%;
  display: flex;
  gap: 3%;
}
@media (max-width: 992px) {
  section.slide-info .inner .slide-info-cols {
    display: block;
  }
}
section.slide-info .inner .slide-info-cols .col {
  flex: 1 1 0;
}
@media (max-width: 992px) {
  section.slide-info .inner .slide-info-cols .col {
    margin-bottom: 1em;
  }
}

section.footer {
  max-width: 1400px;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
  padding-bottom: 5%;
  margin-top: -2%;
}
section.footer a {
  display: inline-block;
  float: left;
  margin-right: 15px;
}
@media (max-width: 520px) {
  section.footer a {
    float: none;
  }
}
section.footer a:last-child {
  margin-right: 0;
}
section.footer .footer-links:before, section.footer .footer-links:after {
  content: "";
  display: table;
}
section.footer .footer-links:after {
  clear: both;
}
@media (max-width: 520px) {
  section.footer .footer-links {
    margin-top: 40px;
  }
}
section.footer .footer-links .nav-imprint {
  font-size: 16px;
  font-weight: 500;
  float: left;
}
section.footer .footer-links .nav-imprint:before, section.footer .footer-links .nav-imprint:after {
  content: "";
  display: table;
}
section.footer .footer-links .nav-imprint:after {
  clear: both;
}
@media (max-width: 520px) {
  section.footer .footer-links .nav-imprint {
    float: none;
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}
section.footer .footer-links .nav-social {
  float: right;
}
section.footer .footer-links .nav-social:before, section.footer .footer-links .nav-social:after {
  content: "";
  display: table;
}
section.footer .footer-links .nav-social:after {
  clear: both;
}
@media (max-width: 520px) {
  section.footer .footer-links .nav-social {
    float: none;
    width: 100%;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */