.su-primary-background-color {
  background-color: #395E66;
}

.su-secondary-background-color {
  background-color: #387D7A;
}

.su-tertiary-background-color {
  background-color: #32936F;
}

.su-quaternary-background-color {
  background-color: #26A96C;
}

.su-quintary-background-color {
  background-color: #2BC016;
}

.su-primary-color {
  color: #395E66;
}

.su-secondary-color {
  color: #387D7A;
}

.su-tertiary-color {
  color: #32936F;
}

.su-quaternary-color {
  color: #26A96C;
}

.su-quintary-color {
  color: #2BC016;
}

.su-flex {
  display: flex;
}

.su-flex-space-between {
  justify-content: space-between;
}
.su-flex-space-between .su-flex-space-between-items {
  display: inline-block;
}

.su-flex-center-y {
  align-items: center;
}

.su-flex-2-1 {
  flex: 1 2;
}
.su-flex-2-1 div {
  display: inline-block;
}

strong,
.su-bold {
  font-family: "Roboto Bold";
}

.su-headline-1 {
  font-size: 60px;
  color: #395E66;
  position: relative;
}
.su-headline-1:after {
  content: "";
  width: 50px;
  border-bottom: 3px solid #395E66;
  position: absolute;
  left: 0;
  bottom: 0;
}

.su-headline-2 {
  font-size: 40px;
  color: #387D7A;
}

.su-headline-3 {
  font-size: 30px;
  color: #395E66;
}

.su-headline-4 {
  font-size: 26px;
  color: #26A96C;
}

@media screen and (max-width: 576px) {
  .su-headline-1 {
    font-size: 50px;
  }
  .su-headline-2 {
    font-size: 30px;
  }
  .su-headline-3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 376px) {
  .su-headline-1 {
    font-size: 40px;
  }
  .su-headline-2 {
    font-size: 20px;
  }
  .su-headline-3 {
    font-size: 18px;
  }
}
.su-small-text {
  font-size: 12px;
}

.su-w-100 {
  width: 100%;
}

.su-w-90 {
  width: 90%;
}

.su-h-100 {
  height: 100%;
}

.su-background-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.su-image-aspect {
  aspect-ratio: 3/1;
  object-fit: cover;
}

.middle-block {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.width-100 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .width-100 {
    width: 70%;
  }
}

.width-90 {
  width: 90%;
}
@media screen and (max-width: 768px) {
  .width-90 {
    width: 70%;
  }
}

.width-80 {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .width-80 {
    width: 50%;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  transition: background-color 0.25s ease;
}
.header .header-logo a {
  border-bottom: 0;
}
.header .header-logo .header-logo-image {
  width: 250px;
  transition: width 0.25s ease;
}
@media screen and (max-width: 900px) {
  .header .header-logo .header-logo-image {
    width: 200px;
  }
}
@media screen and (max-width: 576px) {
  .header .header-logo .header-logo-image {
    height: auto;
    width: 130px;
    display: flex;
    vertical-align: middle;
  }
}
@media screen and (max-width: 576px) {
  .header .header-logo .header-logo-image-smaller {
    width: 120px;
  }
}
@media screen and (min-width: 576px) {
  .header .header-logo .header-logo-image-smaller {
    width: 160px;
  }
}
.header .header-items a {
  border: none;
}
.header .header-items:hover {
  cursor: pointer;
}
.header .header-items .header-item {
  display: inline-block;
}
.header .header-items .header-item .header-icon {
  height: 25px;
  vertical-align: middle;
}
.header .header-items span,
.header .header-items button span {
  color: #FFFFFF;
}
@media screen and (max-width: 900px) {
  .header .header-items span,
  .header .header-items button span {
    display: none !important;
  }
}

.colored-header {
  background-color: #395E66;
}

.header-image {
  height: 50vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.su-menu {
  color: #FFFFFF;
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  padding: 0;
}

.line {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 6;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.nav-full-background {
  visibility: hidden;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #395E66;
  z-index: 1;
}
.nav-full-background * {
  color: white;
}
.nav-full-background .container {
  max-width: 80%;
}
.nav-full-background .nav-container .nav-first-element-container,
.nav-full-background .nav-container .nav-second-element-container,
.nav-full-background .nav-container .nav-third-element-container {
  padding-inline-start: 30px !important;
  padding-inline-end: 30px !important;
}
@media screen and (min-width: 821px) {
  .nav-full-background .nav-container .nav-first-element-container,
  .nav-full-background .nav-container .nav-second-element-container,
  .nav-full-background .nav-container .nav-third-element-container {
    padding-bottom: 200px;
  }
  .nav-full-background .nav-container .nav-first-element-container {
    position: relative;
    left: 0;
    width: 30vw;
  }
  .nav-full-background .nav-container .nav-second-element-container {
    width: 25vw;
    position: absolute;
    top: 0;
    left: 80%;
    z-index: 2;
  }
  .nav-full-background .nav-container .nav-third-element-container {
    width: 25vw;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 99 !important;
  }
}
@media screen and (max-width: 820px) {
  .nav-full-background .nav-container {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .nav-full-background .nav-container .nav-first-element-container,
  .nav-full-background .nav-container .nav-second-element-container,
  .nav-full-background .nav-container .nav-third-element-container {
    padding-left: 0;
    padding-bottom: 30px;
    height: auto !important;
  }
  .nav-full-background .nav-container .nav-first-element-container li,
  .nav-full-background .nav-container .nav-second-element-container li,
  .nav-full-background .nav-container .nav-third-element-container li {
    padding-left: 30px;
  }
}
.nav-full-background .nav-container .nav-first-element-container,
.nav-full-background .nav-container .nav-second-element-container,
.nav-full-background .nav-container .nav-third-element-container {
  padding-top: 30px;
}
.nav-full-background .nav-container .nav-first-element-container,
.nav-full-background .nav-container .nav-first-element-container li,
.nav-full-background .nav-container .nav-second-element-container,
.nav-full-background .nav-container .nav-second-element-container li,
.nav-full-background .nav-container .nav-third-element-container,
.nav-full-background .nav-container .nav-third-element-container li {
  margin: 0px;
  list-style-type: none;
}
.nav-full-background .nav-container .nav-first-element-container .nav-first-element:last-child,
.nav-full-background .nav-container .nav-first-element-container .nav-second-element:last-child,
.nav-full-background .nav-container .nav-first-element-container .nav-third-element:last-child {
  border-bottom: none;
}
.nav-full-background .nav-container .nav-first-element-container .nav-first-element,
.nav-full-background .nav-container .nav-first-element-container .nav-first-element a,
.nav-full-background .nav-container .nav-first-element-container .nav-first-element h3 {
  transition: color 0.3s;
}
.nav-full-background .nav-container .nav-first-element-container .nav-first-element:hover,
.nav-full-background .nav-container .nav-first-element-container .nav-first-element a:hover,
.nav-full-background .nav-container .nav-first-element-container .nav-first-element h3:hover {
  color: black;
}
@media screen and (max-width: 1200px) {
  .nav-full-background .nav-container .nav-first-element-container .nav-first-element,
  .nav-full-background .nav-container .nav-first-element-container .nav-first-element a,
  .nav-full-background .nav-container .nav-first-element-container .nav-first-element h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 964px) {
  .nav-full-background .nav-container .nav-first-element-container .nav-first-element,
  .nav-full-background .nav-container .nav-first-element-container .nav-first-element a,
  .nav-full-background .nav-container .nav-first-element-container .nav-first-element h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 821px) {
  .nav-full-background .nav-container .nav-first-element-container .nav-first-element,
  .nav-full-background .nav-container .nav-first-element-container .nav-first-element a,
  .nav-full-background .nav-container .nav-first-element-container .nav-first-element h3 {
    font-size: 24px;
  }
}
.nav-full-background .nav-container .nav-second-element-container {
  background-color: #387D7A;
}
.nav-full-background .nav-container .nav-second-element-container .nav-second-element,
.nav-full-background .nav-container .nav-second-element-container .nav-second-element a,
.nav-full-background .nav-container .nav-second-element-container .nav-second-element h4 {
  transition: color 0.3s;
}
.nav-full-background .nav-container .nav-second-element-container .nav-second-element:hover,
.nav-full-background .nav-container .nav-second-element-container .nav-second-element a:hover,
.nav-full-background .nav-container .nav-second-element-container .nav-second-element h4:hover {
  color: black;
}
@media screen and (max-width: 1200px) {
  .nav-full-background .nav-container .nav-second-element-container .nav-second-element,
  .nav-full-background .nav-container .nav-second-element-container .nav-second-element a,
  .nav-full-background .nav-container .nav-second-element-container .nav-second-element h4 {
    font-size: 20px;
  }
}
@media screen and (max-width: 964px) {
  .nav-full-background .nav-container .nav-second-element-container .nav-second-element,
  .nav-full-background .nav-container .nav-second-element-container .nav-second-element a,
  .nav-full-background .nav-container .nav-second-element-container .nav-second-element h4 {
    font-size: 18px;
  }
}
@media screen and (max-width: 821px) {
  .nav-full-background .nav-container .nav-second-element-container .nav-second-element,
  .nav-full-background .nav-container .nav-second-element-container .nav-second-element a,
  .nav-full-background .nav-container .nav-second-element-container .nav-second-element h4 {
    font-size: 22px;
  }
}
.nav-full-background .nav-container .nav-third-element-container {
  background-color: #32936F;
}
.nav-full-background .nav-container .nav-third-element-container .nav-third-element,
.nav-full-background .nav-container .nav-third-element-container .nav-third-element a,
.nav-full-background .nav-container .nav-third-element-container .nav-third-element h5 {
  transition: color 0.3s;
}
.nav-full-background .nav-container .nav-third-element-container .nav-third-element:hover,
.nav-full-background .nav-container .nav-third-element-container .nav-third-element a:hover,
.nav-full-background .nav-container .nav-third-element-container .nav-third-element h5:hover {
  color: black;
}
@media screen and (max-width: 1200px) {
  .nav-full-background .nav-container .nav-third-element-container .nav-third-element,
  .nav-full-background .nav-container .nav-third-element-container .nav-third-element a,
  .nav-full-background .nav-container .nav-third-element-container .nav-third-element h5 {
    font-size: 18px;
  }
}
@media screen and (max-width: 964px) {
  .nav-full-background .nav-container .nav-third-element-container .nav-third-element,
  .nav-full-background .nav-container .nav-third-element-container .nav-third-element a,
  .nav-full-background .nav-container .nav-third-element-container .nav-third-element h5 {
    font-size: 16px;
  }
}
@media screen and (max-width: 821px) {
  .nav-full-background .nav-container .nav-third-element-container .nav-third-element,
  .nav-full-background .nav-container .nav-third-element-container .nav-third-element a,
  .nav-full-background .nav-container .nav-third-element-container .nav-third-element h5 {
    font-size: 20px;
  }
}

.footer {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer .footer-informations {
  width: auto;
  background-color: rgba(224, 230, 237, 0.95);
}
.footer .footer-informations a {
  color: #395E66;
}
@media only screen and (max-width: 576px) {
  .footer .footer-informations {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.simple-footer {
  background-color: #e0e6ed;
  color: black;
}

.footer .footer-link-collection a,
.simple-footer .footer-link-collection a {
  margin-right: 16px;
}
@media only screen and (min-width: 1400px) {
  .footer .footer-link-collection .col-xxl-3,
  .simple-footer .footer-link-collection .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
@media only screen and (max-width: 1700px) and (min-width: 1600px) {
  .footer .footer-link-collection a,
  .simple-footer .footer-link-collection a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1599px) and (min-width: 1400px) {
  .footer .footer-link-collection a,
  .simple-footer .footer-link-collection a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1399px) and (min-width: 1300px) {
  .footer .footer-link-collection a,
  .simple-footer .footer-link-collection a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1299px) and (min-width: 1200px) {
  .footer .footer-link-collection a,
  .simple-footer .footer-link-collection a {
    font-size: 10px;
  }
}

.su-no-margin {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.su-margin-x-1 {
  margin-left: 8px;
  margin-right: 8px;
}

.su-margin-xs-1 {
  margin-left: 8px;
}

.su-margin-xe-1 {
  margin-right: 8px;
}

.su-margin-y-1 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.su-margin-ys-1 {
  margin-top: 8px;
}

.su-margin-ye-1 {
  margin-bottom: 8px;
}

.su-margin-x-2 {
  margin-left: 16px;
  margin-right: 16px;
}

.su-margin-xs-2 {
  margin-left: 16px;
}

.su-margin-xe-2 {
  margin-right: 16px;
}

.su-margin-y-2 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.su-margin-ys-2 {
  margin-top: 16px;
}

.su-margin-ye-2 {
  margin-bottom: 16px;
}

.su-margin-x-3 {
  margin-left: 24px;
  margin-right: 24px;
}

.su-margin-xs-3 {
  margin-left: 24px;
}

.su-margin-xe-3 {
  margin-right: 24px;
}

.su-margin-y-3 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.su-margin-ys-3 {
  margin-top: 24px;
}

.su-margin-ye-3 {
  margin-bottom: 24px;
}

.su-margin-x-4 {
  margin-left: 32px;
  margin-right: 32px;
}

.su-margin-xs-4 {
  margin-left: 32px;
}

.su-margin-xe-4 {
  margin-right: 32px;
}

.su-margin-y-4 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.su-margin-ys-4 {
  margin-top: 32px;
}

.su-margin-ye-4 {
  margin-bottom: 32px;
}

.su-margin-x-5 {
  margin-left: 40px;
  margin-right: 40px;
}

.su-margin-xs-5 {
  margin-left: 40px;
}

.su-margin-xe-5 {
  margin-right: 40px;
}

.su-margin-y-5 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.su-margin-ys-5 {
  margin-top: 40px;
}

.su-margin-ye-5 {
  margin-bottom: 40px;
}

.su-margin-x-6 {
  margin-left: 48px;
  margin-right: 48px;
}

.su-margin-xs-6 {
  margin-left: 48px;
}

.su-margin-xe-6 {
  margin-right: 48px;
}

.su-margin-y-6 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.su-margin-ys-6 {
  margin-top: 48px;
}

.su-margin-ye-6 {
  margin-bottom: 48px;
}

.su-margin-x-7 {
  margin-left: 56px;
  margin-right: 56px;
}

.su-margin-xs-7 {
  margin-left: 56px;
}

.su-margin-xe-7 {
  margin-right: 56px;
}

.su-margin-y-7 {
  margin-top: 56px;
  margin-bottom: 56px;
}

.su-margin-ys-7 {
  margin-top: 56px;
}

.su-margin-ye-7 {
  margin-bottom: 56px;
}

.su-margin-x-8 {
  margin-left: 64px;
  margin-right: 64px;
}

.su-margin-xs-8 {
  margin-left: 64px;
}

.su-margin-xe-8 {
  margin-right: 64px;
}

.su-margin-y-8 {
  margin-top: 64px;
  margin-bottom: 64px;
}

.su-margin-ys-8 {
  margin-top: 64px;
}

.su-margin-ye-8 {
  margin-bottom: 64px;
}

.su-margin-x-9 {
  margin-left: 72px;
  margin-right: 72px;
}

.su-margin-xs-9 {
  margin-left: 72px;
}

.su-margin-xe-9 {
  margin-right: 72px;
}

.su-margin-y-9 {
  margin-top: 72px;
  margin-bottom: 72px;
}

.su-margin-ys-9 {
  margin-top: 72px;
}

.su-margin-ye-9 {
  margin-bottom: 72px;
}

.su-margin-x-10 {
  margin-left: 80px;
  margin-right: 80px;
}

.su-margin-xs-10 {
  margin-left: 80px;
}

.su-margin-xe-10 {
  margin-right: 80px;
}

.su-margin-y-10 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.su-margin-ys-10 {
  margin-top: 80px;
}

.su-margin-ye-10 {
  margin-bottom: 80px;
}

.su-margin-x-11 {
  margin-left: 88px;
  margin-right: 88px;
}

.su-margin-xs-11 {
  margin-left: 88px;
}

.su-margin-xe-11 {
  margin-right: 88px;
}

.su-margin-y-11 {
  margin-top: 88px;
  margin-bottom: 88px;
}

.su-margin-ys-11 {
  margin-top: 88px;
}

.su-margin-ye-11 {
  margin-bottom: 88px;
}

.su-margin-x-12 {
  margin-left: 96px;
  margin-right: 96px;
}

.su-margin-xs-12 {
  margin-left: 96px;
}

.su-margin-xe-12 {
  margin-right: 96px;
}

.su-margin-y-12 {
  margin-top: 96px;
  margin-bottom: 96px;
}

.su-margin-ys-12 {
  margin-top: 96px;
}

.su-margin-ye-12 {
  margin-bottom: 96px;
}

.su-no-padding {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.su-padding-x-1 {
  padding-left: 8px;
  padding-right: 8px;
}

.su-padding-xs-1 {
  padding-left: 8px;
}

.su-padding-xe-1 {
  padding-right: 8px;
}

.su-padding-y-1 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.su-padding-ys-1 {
  padding-top: 8px;
}

.su-padding-ye-1 {
  padding-bottom: 8px;
}

.su-padding-x-2 {
  padding-left: 16px;
  padding-right: 16px;
}

.su-padding-xs-2 {
  padding-left: 16px;
}

.su-padding-xe-2 {
  padding-right: 16px;
}

.su-padding-y-2 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.su-padding-ys-2 {
  padding-top: 16px;
}

.su-padding-ye-2 {
  padding-bottom: 16px;
}

.su-padding-x-3 {
  padding-left: 24px;
  padding-right: 24px;
}

.su-padding-xs-3 {
  padding-left: 24px;
}

.su-padding-xe-3 {
  padding-right: 24px;
}

.su-padding-y-3 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.su-padding-ys-3 {
  padding-top: 24px;
}

.su-padding-ye-3 {
  padding-bottom: 24px;
}

.su-padding-x-4 {
  padding-left: 32px;
  padding-right: 32px;
}

.su-padding-xs-4 {
  padding-left: 32px;
}

.su-padding-xe-4 {
  padding-right: 32px;
}

.su-padding-y-4 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.su-padding-ys-4 {
  padding-top: 32px;
}

.su-padding-ye-4 {
  padding-bottom: 32px;
}

.su-padding-x-5 {
  padding-left: 40px;
  padding-right: 40px;
}

.su-padding-xs-5 {
  padding-left: 40px;
}

.su-padding-xe-5 {
  padding-right: 40px;
}

.su-padding-y-5 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.su-padding-ys-5 {
  padding-top: 40px;
}

.su-padding-ye-5 {
  padding-bottom: 40px;
}

.su-padding-x-6 {
  padding-left: 48px;
  padding-right: 48px;
}

.su-padding-xs-6 {
  padding-left: 48px;
}

.su-padding-xe-6 {
  padding-right: 48px;
}

.su-padding-y-6 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.su-padding-ys-6 {
  padding-top: 48px;
}

.su-padding-ye-6 {
  padding-bottom: 48px;
}

.su-padding-x-7 {
  padding-left: 56px;
  padding-right: 56px;
}

.su-padding-xs-7 {
  padding-left: 56px;
}

.su-padding-xe-7 {
  padding-right: 56px;
}

.su-padding-y-7 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.su-padding-ys-7 {
  padding-top: 56px;
}

.su-padding-ye-7 {
  padding-bottom: 56px;
}

.su-padding-x-8 {
  padding-left: 64px;
  padding-right: 64px;
}

.su-padding-xs-8 {
  padding-left: 64px;
}

.su-padding-xe-8 {
  padding-right: 64px;
}

.su-padding-y-8 {
  padding-top: 64px;
  padding-bottom: 64px;
}

.su-padding-ys-8 {
  padding-top: 64px;
}

.su-padding-ye-8 {
  padding-bottom: 64px;
}

.su-padding-x-9 {
  padding-left: 72px;
  padding-right: 72px;
}

.su-padding-xs-9 {
  padding-left: 72px;
}

.su-padding-xe-9 {
  padding-right: 72px;
}

.su-padding-y-9 {
  padding-top: 72px;
  padding-bottom: 72px;
}

.su-padding-ys-9 {
  padding-top: 72px;
}

.su-padding-ye-9 {
  padding-bottom: 72px;
}

.su-padding-x-10 {
  padding-left: 80px;
  padding-right: 80px;
}

.su-padding-xs-10 {
  padding-left: 80px;
}

.su-padding-xe-10 {
  padding-right: 80px;
}

.su-padding-y-10 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.su-padding-ys-10 {
  padding-top: 80px;
}

.su-padding-ye-10 {
  padding-bottom: 80px;
}

.su-padding-x-11 {
  padding-left: 88px;
  padding-right: 88px;
}

.su-padding-xs-11 {
  padding-left: 88px;
}

.su-padding-xe-11 {
  padding-right: 88px;
}

.su-padding-y-11 {
  padding-top: 88px;
  padding-bottom: 88px;
}

.su-padding-ys-11 {
  padding-top: 88px;
}

.su-padding-ye-11 {
  padding-bottom: 88px;
}

.su-padding-x-12 {
  padding-left: 96px;
  padding-right: 96px;
}

.su-padding-xs-12 {
  padding-left: 96px;
}

.su-padding-xe-12 {
  padding-right: 96px;
}

.su-padding-y-12 {
  padding-top: 96px;
  padding-bottom: 96px;
}

.su-padding-ys-12 {
  padding-top: 96px;
}

.su-padding-ye-12 {
  padding-bottom: 96px;
}

.blog-entries-slider .slick-list {
  margin: 0 -16px;
  padding: 16px 0;
}
.blog-entries-slider .slick-list a {
  margin: 0 16px;
  border-bottom: 0;
}
.blog-entries-slider .slick-list a:hover {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.16);
}
.blog-entries-slider .start-page-news .blog-entry-tile-image {
  height: 200px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.blog-entries-slider .start-page-news .blog-entry-tile {
  aspect-ratio: 1/0.75;
  overflow: auto;
}
.blog-entries-slider .start-page-news .primary-tile {
  background-color: #395E66;
  color: #FFFFFF;
}
.blog-entries-slider .start-page-news .primary-tile hr {
  background-color: #f2f5f6;
}
.blog-entries-slider .start-page-news .secondary-tile {
  background-color: #f2f5f6;
}
.blog-entries-slider .start-page-news .secondary-tile hr {
  background-color: #395E66;
}

.pdf-overview .pdf-overview-item img {
  width: 100%;
  transition: box-shadow 0.5s;
}
.pdf-overview .pdf-overview-item img:hover {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 768px) {
  .pdf-overview .pdf-overview-item img {
    width: 70%;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}

.teams .team {
  height: 400px;
}
.teams .team:hover {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.16);
}
.teams .team .on-top-text {
  margin-top: auto;
  background-color: rgba(224, 230, 237, 0.95);
}

.wysiwyg {
  overflow-x: auto;
}
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6,
.wysiwyg .h1,
.wysiwyg .h2,
.wysiwyg .h3,
.wysiwyg .h4,
.wysiwyg .h5,
.wysiwyg .h6 {
  line-height: unset;
}
.wysiwyg table {
  width: 100%;
  border-collapse: collapse;
}
.wysiwyg table td,
.wysiwyg table th {
  padding: 15px;
}
@media screen and (max-width: 576px) {
  .wysiwyg table td,
  .wysiwyg table th {
    font-size: 14px;
  }
}
.wysiwyg table thead th {
  background-color: #387D7A;
  color: #FFFFFF;
  font-family: "Roboto Bold";
}
.wysiwyg table tbody tr {
  background-color: #f2f5f6;
}
.wysiwyg table tbody tr:nth-child(odd) {
  background-color: #FFFFFF;
}
.wysiwyg a[href^="tel:"] {
  white-space: nowrap;
}

.breadcrumbs {
  background-color: #f2f5f6;
}
.breadcrumbs a {
  border: none;
}

.classes .class {
  height: 400px;
}
.classes .class .on-top-text {
  margin-top: auto;
  background-color: rgba(224, 230, 237, 0.95);
}

.tile-overview .tile {
  transition: box-shadow 0.5s;
  height: 150px;
}
.tile-overview .tile:hover {
  box-shadow: 0 0 1em rgba(0, 0, 0, 0.16);
}
.tile-overview .tile .on-top-text {
  margin-top: auto;
  background-color: rgba(224, 230, 237, 0.95);
}

#searchModal .modal-header {
  display: flex;
  justify-content: space-between;
}
#searchModal .modal-header #modal-close {
  background-color: #387D7A;
  transition: background 0.5s;
  height: 30px;
  width: 30px;
  border-radius: 5px;
}
#searchModal .modal-header #modal-close:hover {
  background-color: #395E66;
}
#searchModal button {
  transition: background 0.5s;
}
#searchModal button img {
  height: 25px;
  fill: black;
}
#searchModal button:hover {
  background-color: #395E66;
}

.su-iframe {
  width: 100%;
  border: 0;
}

@media screen and (max-width: 768px) {
  .person-collection .person-view-x .person-description {
    text-align: center;
  }
  .person-collection .person-view-x .person-description div {
    padding: 0;
  }
}

.gallery-container .gallery .gallery-img {
  object-fit: cover;
  object-position: center;
}
.gallery-container .gallery .slick-track {
  display: flex !important;
}
.gallery-container .gallery .slick-slide {
  height: inherit !important;
}
.gallery-container .img-full-page {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-size: contain;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-color: black;
}
.gallery-container .img-full-page img {
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.ti-item {
  background-color: #e0e6ed;
  border-bottom: 1px solid white;
}
.ti-item .ti-header,
.ti-item .ti-body .file-content {
  display: flex;
  justify-content: space-between;
}
.ti-item .ti-header:hover {
  cursor: pointer;
}
.ti-item .ti-body {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  border-width: 0;
  transition: max-height 0.1s ease-out, padding 0.3s ease-out, border-width 0.3s ease-out;
}
.ti-item .ti-body .simple-divider {
  border-bottom: 2px solid white;
}
.ti-item .ti-body .simple-divider-thick {
  border-bottom: 5px solid white;
}
.ti-item .ti-body p {
  border: none;
}
.ti-item .active {
  opacity: 1;
  max-height: 2000px;
  padding: 10px 0;
  border-width: 1px;
}

.active {
  background-color: #f6f9fa !important;
}

@font-face {
  font-family: "Roboto Light";
  src: url("fonts/Roboto-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Regular";
  src: url("fonts/Roboto-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Medium";
  src: url("fonts/Roboto-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Bold";
  src: url("fonts/Roboto-Bold.ttf") format("truetype");
}
body {
  font-family: "Roboto Regular", serif;
}
body,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body p,
body a,
body span {
  margin: 0;
  padding: 0;
}
body a,
body a:hover,
body a:focus {
  color: inherit;
  text-decoration: none;
}
body a {
  border-bottom: 1px solid lightgrey;
}

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