@charset "UTF-8";
/**
 * Import definitions.
 *
 */
/**
 * Breakpoints - Map.
 *
 */
/**
 * Mixin to create a media query eg. min-width: $min
 *
 */
/**
 * Mixin to create a media query eg. max-width: $max
 *
 */
/**
 * Mixin to create a media query eg. min-width: $min and max-width: $max
 *
 */
/**
 * Definitions - Colors.
 *
 */
/* Print the CSS color vars */
:root {
  --mp--colors--tangaroa: #052440;
  --mp--colors--tangaroa--rgb: 5,36,64;
  --mp--colors--sail: #BDDEF2;
  --mp--colors--sail--rgb: 189,222,242;
  --mp--colors--concrete: #f2f2f2;
  --mp--colors--concrete--rgb: 242,242,242;
  --mp--colors--black: #000000;
  --mp--colors--black--rgb: 0,0,0;
  --mp--colors--white: #ffffff;
  --mp--colors--white--rgb: 255,255,255;
  --mp--colors--gold-drop: #EF8800;
  --mp--colors--gold-drop--rgb: 239,136,0;
  --mp--colors--spring-green: #00FF6C;
  --mp--colors--spring-green--rgb: 0,255,108;
  --mp--colors--red: #F80000;
  --mp--colors--red--rgb: 248,0,0;
}

/**
 * Definitions - Return the color with the given name and an optional alpha value.
 *
 */
/**
 * Definitions - Colors classes.
 *
 */
.has-color-tangaroa {
  color: var(--mp--colors--tangaroa, #052440);
}

.has-background-color-tangaroa {
  background-color: var(--mp--colors--tangaroa, #052440);
}

.has-color-sail {
  color: var(--mp--colors--sail, #BDDEF2);
}

.has-background-color-sail {
  background-color: var(--mp--colors--sail, #BDDEF2);
}

.has-background-color-concrete {
  background-color: var(--mp--colors--concrete, #f2f2f2);
}

.has-color-concrete {
  color: var(--mp--colors--concrete, #f2f2f2) !important;
}

.has-background-color-black {
  background-color: var(--mp--colors--black, #000000);
}

.has-color-black {
  color: var(--mp--colors--black, #000000);
}

.has-background-color-white {
  background-color: var(--mp--colors--white, #ffffff);
}

.has-color-white {
  color: var(--mp--colors--white, #ffffff) !important;
}

.has-background-color-gold-drop {
  background-color: var(--mp--colors--gold-drop, #EF8800);
}

/**
* buttons.
*
*/
.mp-buttons-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0;
  gap: 20px;
  text-align: right;
  margin-top: 20px;
}
.mp-buttons-column.justify-content-flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mp-buttons-column.justify-content-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mp-button-general {
  position: relative;
  padding: 10px 20px;
  height: 50px;
  border-radius: 40px;
  cursor: pointer;
  -webkit-transition: color 150ms, background-color 150ms, width 200ms ease;
  transition: color 150ms, background-color 150ms, width 200ms ease;
}
.mp-button-general a {
  font-size: 1.1rem;
  font-weight: 600;
}
.mp-button-general.mp-button-primary {
  background-color: transparent;
  border: 2px solid var(--mp--colors--gold-drop, #EF8800);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.mp-button-general.mp-button-primary:after {
  content: "";
  background-color: var(--mp--colors--gold-drop, #EF8800);
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  -webkit-transition: width 400ms;
  transition: width 400ms;
  z-index: -1;
}
.mp-button-general.mp-button-primary a {
  color: var(--mp--colors--white, #ffffff) !important;
}
.mp-button-general.mp-button-primary:hover::after {
  width: 0%;
}
.mp-button-general.mp-button-primary:hover a {
  color: var(--mp--colors--gold-drop, #EF8800) !important;
}
.mp-button-general.mp-button-primary .mp-button-link {
  position: relative;
}
.mp-button-general.mp-button-secondary {
  background-color: transparent;
  border: 2px solid var(--mp--colors--gold-drop, #EF8800);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.mp-button-general.mp-button-secondary:after {
  content: "";
  background-color: var(--mp--colors--gold-drop, #EF8800);
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 100%;
  border-radius: 40px;
  -webkit-transition: width 400ms;
  transition: width 400ms;
  z-index: -1;
}
.mp-button-general.mp-button-secondary a {
  color: var(--mp--colors--gold-drop, #EF8800) !important;
}
.mp-button-general.mp-button-secondary:hover::after {
  width: 100%;
}
.mp-button-general.mp-button-secondary:hover a {
  color: var(--mp--colors--white, #ffffff) !important;
}
.mp-button-general.mp-button-plain::after, .mp-button-general.mp-button-plain-light::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background-color: var(--mp--colors--gold-drop, #EF8800);
  border-radius: 2px;
  -webkit-transition: width 300ms ease;
  transition: width 300ms ease;
}
.mp-button-general.mp-button-plain a, .mp-button-general.mp-button-plain-light a {
  color: var(--mp--colors--tangaroa, #052440) !important;
}
.mp-button-general.mp-button-plain:hover::after, .mp-button-general.mp-button-plain-light:hover::after {
  width: 100%;
}
.mp-button-general.mp-button-plain-light a, .mp-button-general.mp-button-plain-light-light a {
  color: var(--mp--colors--white, #ffffff) !important;
}

/**
* Import - Font - Noto Sans.
*
*/
@font-face {
  font-family: "Noto Sans";
  font-style: semibold;
  font-weight: 600;
  src: url("../fonts/NotoSans-SemiBold.ttf");
}
@font-face {
  font-family: "Noto Sans";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/NotoSans-Regular.ttf");
}
@font-face {
  font-family: "Alegreya";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/Alegreya-VariableFont_wght.ttf");
}
@font-face {
  font-family: "Loved by the King";
  font-style: regular;
  font-weight: 400;
  src: url("../fonts/LovedbytheKing-Regular.ttf");
}
/**
* Definitions of Font.
*
*/
* {
  font-family: "Noto Sans", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 400;
}
@media (min-width: 768px) {
  * {
    font-size: 1rem;
  }
}

/**
* Definitions of span, a and p.
*
*/
span,
a,
p {
  line-height: 1.6;
  color: var(--mp--colors--black, #000000);
}

.strong {
  font-weight: 600;
}

a {
  text-decoration: none;
  -webkit-transition: color 150ms ease;
  transition: color 150ms ease;
}
a:hover {
  color: var(--mp--colors--sail, #BDDEF2);
}

.text-align-center {
  text-align: center;
}

/**
* Definitions of span, a and p.
*
*/
.small-print {
  font-size: 12px !important;
}

/**
 * Definitions - font-sizes.
 *
 */
:root {
  --mp--font--sizes--small: 0.9rem;
  --mp--font--sizes--medium: 1.2rem;
  --mp--font--sizes--large: 1.6rem;
}

.has-font-size-small {
  font-size: var(--mp--font--sizes--small);
}

.has-font-size-medium {
  font-size: var(--mp--font--sizes--medium);
}

.has-font-size-large {
  font-size: var(--mp--font--sizes--large);
}

/**
* Headings - Genarall style.
*
*/
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--mp--colors--tangaroa, #052440);
  font-family: "Alegreya", serif;
}

/**
* Headings - sizes.
*
*/
h1 {
  font-size: 2.2rem;
  font-family: "Loved by the King", cursive;
  margin-bottom: 20px;
}
@media (min-width: 540px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 540px) {
  h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 22px;
}
@media (min-width: 540px) {
  h3 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 16px;
}
@media (min-width: 540px) {
  h4 {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 14px;
}
@media (min-width: 540px) {
  h5 {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  h5 {
    font-size: 1.5rem;
  }
}

h6 {
  font-size: 12px;
}
@media (min-width: 540px) {
  h6 {
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) {
  h6 {
    font-size: 1.2rem;
  }
}

.h1 {
  font-size: 2.2rem;
  font-family: "Loved by the King", cursive;
  margin-bottom: 20px;
}
@media (min-width: 540px) {
  .h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .h1 {
    font-size: 3.5rem;
  }
}

.h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (min-width: 540px) {
  .h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .h2 {
    font-size: 2.5rem;
  }
}

.h3 {
  font-size: 22px;
}
@media (min-width: 540px) {
  .h3 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .h3 {
    font-size: 2rem;
  }
}

.h4 {
  font-size: 16px;
}
@media (min-width: 540px) {
  .h4 {
    font-size: 1.4rem;
  }
}
@media (min-width: 1024px) {
  .h4 {
    font-size: 1.5rem;
  }
}

.h5 {
  font-size: 14px;
}
@media (min-width: 540px) {
  .h5 {
    font-size: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .h5 {
    font-size: 1.5rem;
  }
}

.h6 {
  font-size: 12px;
}
@media (min-width: 540px) {
  .h6 {
    font-size: 1.1rem;
  }
}
@media (min-width: 1024px) {
  .h6 {
    font-size: 1.2rem;
  }
}

/**
* Headings - Hero.
*
*/
.mp-hero-headline {
  font-size: 2.5rem;
  line-height: 1.2;
}
@media (min-width: 540px) {
  .mp-hero-headline {
    font-size: 4.5rem;
    color: var(--mp--colors--white, #ffffff);
  }
}
@media (min-width: 1024px) {
  .mp-hero-headline {
    font-size: 6.5rem;
  }
}

/**
* Counter.
*
*/
.has-count-1,
.has-count-2,
.has-count-3,
.has-count-4,
.has-count-5,
.has-count-6 {
  display: inline-block;
  position: relative;
}
.has-count-1::before,
.has-count-2::before,
.has-count-3::before,
.has-count-4::before,
.has-count-5::before,
.has-count-6::before {
  content: "I";
  color: var(--mp--colors--sail, #BDDEF2);
  font-family: "Alegreya", serif;
  font-size: 50px;
  position: absolute;
  -webkit-transform: translate(-15px, -20px);
          transform: translate(-15px, -20px);
  z-index: -1;
}
@media (min-width: 768px) {
  .has-count-1::before,
.has-count-2::before,
.has-count-3::before,
.has-count-4::before,
.has-count-5::before,
.has-count-6::before {
    font-size: 60px;
    -webkit-transform: translate(-15px, -26px);
            transform: translate(-15px, -26px);
  }
}
@media (min-width: 1024px) {
  .has-count-1::before,
.has-count-2::before,
.has-count-3::before,
.has-count-4::before,
.has-count-5::before,
.has-count-6::before {
    font-size: 75px;
    -webkit-transform: translate(-15px, -33px);
            transform: translate(-15px, -33px);
  }
}
@media (min-width: 1360px) {
  .has-count-1::after,
.has-count-2::after,
.has-count-3::after,
.has-count-4::after,
.has-count-5::after,
.has-count-6::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(100% + 20px);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: calc(100% - 80px);
    height: 3px;
    border-radius: 2px;
    background-color: orange;
  }
}

.has-count-2::before {
  content: "II";
}

.has-count-3::before {
  content: "III";
}

.has-count-4::before {
  content: "IV";
}

.has-count-5::before {
  content: "V";
}

.has-count-6::before {
  content: "VI";
}

/**
* Table.
*
*/
table {
  width: 100%;
}
table tr th,
table tr td {
  padding: 5px;
  text-align: left;
  background-color: rgba(var(--mp--colors--sail--rgb, #BDDEF2), 0.4);
}
table tr th {
  background-color: rgba(var(--mp--colors--sail--rgb, #BDDEF2), 0.7);
}
table tr .first-row {
  width: 30%;
}

/**
 * Import element styles.
 *
 */
/**
* General.
*
*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
* body {
  background: var(--mp--colors--white, #ffffff);
  color: var(--mp--colors--black, #000000);
}

.mp-content {
  padding: 0;
}

.margin-bottom-none {
  margin-bottom: 0 !important;
}

/**
* Content width.
*
*/
.mp-content-full-screen {
  max-width: none;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}

.mp-content-full-width {
  max-width: 2000px;
  margin-left: auto;
  margin-right: auto;
}

.mp-content-limitation {
  max-width: 1400px;
  padding-right: 0px;
  padding-left: 0px;
  margin-left: auto;
  margin-right: auto;
}

.mp-content-limitation-padding {
  max-width: 1400px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}

/**
* Padding.
*
*/
.mp-padding-inner-very-small {
  padding: 5px 10px;
}

.mp-padding-inner-small {
  padding: 10px;
}
@media (min-width: 768px) {
  .mp-padding-inner-small {
    padding: 20px;
  }
}

.mp-padding-inner-regular {
  padding: 20px;
}

.mp-padding-inner-large {
  padding: 20px;
}
@media (min-width: 820px) {
  .mp-padding-inner-large {
    padding: 40px;
  }
}

.mp-padding-inner-big {
  padding: 20px;
}
@media (min-width: 650px) {
  .mp-padding-inner-big {
    padding: 40px;
  }
}
@media (min-width: 820px) {
  .mp-padding-inner-big {
    padding: 80px;
  }
}

/**
* Margin.
*
*/
.has-margin-top-none {
  margin-top: 0;
}

/**
* Text Align.
*
*/
.mp-text-align-center {
  text-align: center;
}

/**
* Display none Classes.
*
*/
@media (min-width: 650px) {
  .hide-on-desktop {
    display: none !important;
  }
}

@media (max-width: 649px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.has-list-item li {
  list-style: none;
  position: relative;
  margin-left: 20px;
}
.has-list-item li::before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: var(--mp--colors--gold-drop, #EF8800);
  -webkit-transform: translate(-22px, 7px);
          transform: translate(-22px, 7px);
}

/**
* Mixin to use the Body Class in the Content.
*
*/
/**
* Header.
*
*/
#mp-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0;
}
#mp-header .mp-header-container {
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
#mp-header .mp-header-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
#mp-header .mp-header-content .mp-logo-container {
  margin-left: 0;
  float: left;
  width: 50%;
}
#mp-header .mp-header-content .mp-logo-container a img {
  height: 75px;
  padding: 10px 0;
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content .mp-logo-container a img {
    height: 100px;
    padding: 15px 0 0 0;
  }
}
#mp-header .mp-header-content div.mp-menu-header {
  margin: 0 0 0 auto;
  width: 100%;
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}
@media (max-width: 1023px) {
  #mp-header .mp-header-content div.mp-menu-header {
    height: 0;
  }
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content div.mp-menu-header {
    clear: none;
    float: right;
    max-height: none;
    width: auto;
    padding-top: 20px;
  }
}
#mp-header .mp-header-content div.mp-menu-header ul.mp-meta-menu-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
@media (max-width: 1023px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-meta-menu-points {
    margin-bottom: 20px;
  }
}
#mp-header .mp-header-content div.mp-menu-header ul.mp-meta-menu-points a {
  display: block;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--mp--colors--black, #000000);
  white-space: nowrap;
  -webkit-transition: color 200ms eas;
  transition: color 200ms eas;
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-meta-menu-points a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--mp--colors--gold-drop, #EF8800);
    border-radius: 2px;
    -webkit-transition: width 300ms ease;
    transition: width 300ms ease;
  }
}
#mp-header .mp-header-content div.mp-menu-header ul.mp-meta-menu-points a:hover {
  text-shadow: 0px 0px 10px rgba(var(--mp--colors--sail--rgb, #BDDEF2), 0.5);
}
@media (max-width: 1023px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-meta-menu-points a:hover {
    color: var(--mp--colors--gold-drop, #EF8800);
  }
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-meta-menu-points a:hover::after {
    width: 100%;
  }
}
#mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points {
    clear: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    float: right;
    max-height: none;
  }
}
#mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points a {
  display: block;
  padding: 20px;
  padding-left: 0;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--mp--colors--tangaroa, #052440);
  white-space: nowrap;
  -webkit-transition: color 200ms eas;
  transition: color 200ms eas;
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points a::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--mp--colors--gold-drop, #EF8800);
    border-radius: 2px;
    -webkit-transition: width 300ms ease;
    transition: width 300ms ease;
  }
}
#mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points a:hover {
  text-shadow: 0px 0px 10px rgba(var(--mp--colors--sail--rgb, #BDDEF2), 0.5);
}
@media (max-width: 1023px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points a:hover {
    color: var(--mp--colors--gold-drop, #EF8800);
  }
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points a:hover::after {
    width: 100%;
  }
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points a {
    padding: 20px 30px;
  }
}
#mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points li:last-child a {
  padding-right: 0;
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content div.mp-menu-header ul.mp-menu-points .mp-active-page a::after {
    width: 100%;
  }
}
#mp-header .mp-header-content .mp-menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  padding: 28px;
  padding-right: 0;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-right: 0;
  margin-left: auto;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content .mp-menu-icon {
    display: none;
    padding: 28px 20px;
  }
}
#mp-header .mp-header-content .mp-menu-icon .mp-navicon {
  display: block;
  height: 2px;
  position: relative;
  width: 20px;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  background: var(--mp--colors--tangaroa, #052440);
}
#mp-header .mp-header-content .mp-menu-icon .mp-navicon::before, #mp-header .mp-header-content .mp-menu-icon .mp-navicon::after {
  background: var(--mp--colors--tangaroa, #052440);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  width: calc(100% + 10px);
}
#mp-header .mp-header-content .mp-menu-icon .mp-navicon:before {
  top: 10px;
}
#mp-header .mp-header-content .mp-menu-icon .mp-navicon:after {
  top: -10px;
}
#mp-header .mp-header-content .mp-menu-points,
#mp-header .mp-header-content .mp-meta-menu-points {
  clear: both;
  max-height: 0;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}
@media (min-width: 1024px) {
  #mp-header .mp-header-content .mp-menu-points,
#mp-header .mp-header-content .mp-meta-menu-points {
    clear: none;
    float: right;
    max-height: none;
  }
}
body.main-menu-open #mp-header .mp-header-content .mp-menu-header {
  margin: 0;
  padding-top: 20px;
  position: relative;
  height: auto;
}
body.main-menu-open #mp-header .mp-header-content .mp-menu-header ul.mp-menu-points,
body.main-menu-open #mp-header .mp-header-content .mp-menu-header .mp-meta-menu-points {
  max-height: 500px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
body.main-menu-open #mp-header .mp-header-content .mp-menu-icon .mp-navicon {
  background: transparent;
}
body.main-menu-open #mp-header .mp-header-content .mp-menu-icon .mp-navicon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
body.main-menu-open #mp-header .mp-header-content .mp-menu-icon .mp-navicon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
body.main-menu-open #mp-header .mp-header-content .mp-menu-icon:not(.steps) .mp-navicon::before, body.main-menu-open #mp-header .mp-header-content .mp-menu-icon:not(.steps) .mp-navicon::after {
  top: 0;
}
#mp-header .mp-header-wave {
  width: calc(100% + 40px);
  -webkit-transform: translate(-20px, -1px);
          transform: translate(-20px, -1px);
  pointer-events: none;
}
#mp-header .mp-header-wave img {
  -webkit-filter: drop-shadow(0px 2px 15px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(0px 2px 15px rgba(0, 0, 0, 0.4));
}

/**
* Footer.
*
*/
body .mp-footer-wave {
  margin-top: 100px;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
body .mp-footer {
  width: 100%;
  position: relative;
  display: block;
  text-align: left;
  padding: 0;
  background-color: var(--mp--colors--tangaroa, #052440);
}
body .mp-footer .mp-inner-footer {
  margin: auto;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-pack: flexx-start;
      -ms-flex-pack: flexx-start;
          justify-content: flexx-start;
}
@media (max-width: 1023px) {
  body .mp-footer .mp-inner-footer {
    padding-top: 30px;
  }
}
body .mp-footer .mp-inner-footer .mp-footer-items {
  width: 100%;
  padding: 10px 20px 20px 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (min-width: 540px) {
  body .mp-footer .mp-inner-footer .mp-footer-items {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  body .mp-footer .mp-inner-footer .mp-footer-items {
    width: 33%;
    padding: 10px 20px 20px 0px;
  }
}
body .mp-footer .mp-inner-footer .mp-footer-items img {
  max-width: 110px;
  width: 75%;
  padding: 0;
}
body .mp-footer .mp-inner-footer .mp-footer-items p {
  margin-top: 5px;
  font-size: 16px;
  text-align: left;
  line-height: 25px;
}
body .mp-footer .mp-inner-footer .mp-footer-items a {
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}
body .mp-footer .mp-inner-footer .mp-footer-items a:hover {
  color: var(--mp--colors--sail, #BDDEF2);
}
body .mp-footer .mp-inner-footer .mp-footer-items span {
  margin: 20px 0;
  color: var(--mp--colors--white, #ffffff);
}
body .mp-footer .mp-inner-footer .mp-footer-items .social-media-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
body .mp-footer .mp-inner-footer .mp-footer-items .social-media-icons img {
  max-height: 50px;
}
body .mp-footer .mp-inner-footer .mp-footer-items .social-media-icons a {
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}
body .mp-footer .mp-inner-footer .mp-footer-items .social-media-icons a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
body .mp-footer ul {
  padding: 0;
  list-style: none;
  color: var(--mp--colors--white, #ffffff);
  font-size: 15px;
  letter-spacing: 0.5px;
  text-align: left;
  margin-top: 15px;
}
body .mp-footer ul a {
  color: var(--mp--colors--white, #ffffff);
  font-size: 14px;
  text-decoration: none;
  outline: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
body .mp-footer ul li {
  margin: 0;
  margin-bottom: 5px;
}
body .mp-footer .mp-sub-footer {
  color: white;
  background-color: var(--mp--colors--sail, #BDDEF2);
}
body .mp-footer .mp-sub-footer p {
  padding: 5px 20px;
  font-size: 12px !important;
  color: var(--mp--colors--tangaroa, #052440);
}
body .mp-footer .mp-sub-footer .mp-content-limitation {
  padding: 0;
}

/**
* Import block styles
*
*/
/**
* Columns.
*
*/
.mp-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}
.mp-columns .mp-column {
  width: calc(50% - 10px);
}
@media (min-width: 768px) {
  .mp-columns .mp-column {
    width: calc(33% - 13px);
  }
}
@media (min-width: 1180px) {
  .mp-columns .mp-column {
    width: calc(25% - 15px);
  }
}
.mp-columns .mp-column-half {
  width: 100%;
}
@media (min-width: 768px) {
  .mp-columns .mp-column-half {
    width: calc(50% - 10px);
  }
}
.mp-columns .mp-column-full {
  width: 100%;
}
.mp-columns .mp-column-half-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  container-type: inline-size;
}
.mp-columns .mp-column-half-child .mp-column-half {
  width: 100%;
}
@container ( min-width: 600px ) {
  .mp-columns .mp-column-half-child .mp-column-half {
    width: calc(50% - 10px);
  }
}
.mp-columns .mp-column-small-and-big-smaller {
  width: 100%;
}
@media (min-width: 768px) {
  .mp-columns .mp-column-small-and-big-smaller {
    width: calc(40% - 10px);
  }
}
.mp-columns .mp-column-small-and-big-bigger {
  width: 100%;
}
@media (min-width: 768px) {
  .mp-columns .mp-column-small-and-big-bigger {
    width: calc(60% - 10px);
  }
}
.mp-columns .mp-column-big {
  width: 100%;
}
@media (min-width: 1280px) {
  .mp-columns .mp-column-big {
    width: 80%;
  }
}
.mp-columns img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .mp-columns img {
    max-height: 300px;
  }
}

/**
* Columns overlay.
*
*/
.has-mp-overlay-container {
  position: relative;
}
@media (max-width: 767px) {
  .has-mp-overlay-container {
    gap: 0px;
  }
}
.has-mp-overlay-container .has-mp-overlay-left {
  width: calc(100% - 20px - 20px);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -20px;
  z-index: 5;
}
@media (min-width: 768px) {
  .has-mp-overlay-container .has-mp-overlay-left {
    width: calc(50% - 10px + 40px);
    margin-left: -40px;
    margin-bottom: 0;
  }
}
.has-mp-overlay-container .has-mp-overlay-right {
  width: 100%;
}
@media (max-width: 767px) {
  .has-mp-overlay-container .has-mp-overlay-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 40px;
  }
}
@media (min-width: 768px) {
  .has-mp-overlay-container .has-mp-overlay-right {
    width: calc(50% - 10px + 40px);
    margin-right: -40px;
    margin-top: 40px;
    margin-bottom: 40px;
    z-index: 10;
  }
}

/**
* Columns overlay front page.
*
*/
.has-mp-overlay-container-front-page {
  position: relative;
  margin-bottom: 60px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .has-mp-overlay-container-front-page {
    gap: 0px;
  }
}
@media (min-width: 768px) {
  .has-mp-overlay-container-front-page {
    margin-bottom: 100px;
  }
}
.has-mp-overlay-container-front-page .has-mp-overlay-left {
  width: calc(100% - 10px - 20px);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: -20px;
  z-index: 5;
}
@media (min-width: 768px) {
  .has-mp-overlay-container-front-page .has-mp-overlay-left {
    width: calc(50% - 10px + 40px);
    margin-left: -40px;
    margin-bottom: -40px;
    margin-top: 40px;
  }
}
.has-mp-overlay-container-front-page .has-mp-overlay-right {
  width: 100%;
}
@media (max-width: 767px) {
  .has-mp-overlay-container-front-page .has-mp-overlay-right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    padding-top: 40px;
  }
}
@media (min-width: 768px) {
  .has-mp-overlay-container-front-page .has-mp-overlay-right {
    width: calc(50% - 10px + 40px);
    margin-right: -40px;
    z-index: 10;
  }
}

/**
* Sections.
*
*/
section {
  margin-bottom: 20px;
}

/**
* First Sections.
*
*/
.mp-first-section {
  margin-top: 120px;
}
@media (min-width: 1024px) {
  .mp-first-section {
    margin-top: 180px;
  }
}

/**
* Hero Image.
*
*/
@media (min-width: 768px) {
  .mp-section-hero-image {
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .mp-section-hero-image div.text-area {
    position: inherit;
    width: 100%;
  }
}
@media (min-width: 768px) {
  .mp-section-hero-image {
    min-height: 800px;
  }
}
@media (min-width: 1024px) {
  .mp-section-hero-image {
    min-height: 1200px;
  }
}
.mp-section-hero-image img {
  display: block;
  margin-top: 95px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-height: 400px;
  pointer-events: none;
}
@media (min-width: 768px) {
  .mp-section-hero-image img {
    position: absolute;
    top: 75px;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    margin-top: 0;
    max-height: 800px;
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .mp-section-hero-image img {
    max-height: 1200px;
    top: 110px;
  }
}
.mp-section-hero-image .mp-hero-headline {
  color: var(--mp--colors--tangaroa, #052440);
  padding-left: 20px;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .mp-section-hero-image .mp-hero-headline {
    margin-top: 200px;
    padding-left: 40px;
    color: var(--mp--colors--concrete, #f2f2f2);
  }
}
.mp-section-hero-image .info-box-oeffnungszeiten {
  background-color: var(--mp--colors--tangaroa, #052440);
  padding: 30px 20px;
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width: 768px) {
  .mp-section-hero-image .info-box-oeffnungszeiten {
    background-color: transparent;
    bottom: 30px;
    right: 60px;
    position: absolute;
  }
  .mp-section-hero-image .info-box-oeffnungszeiten.has-info-bage::after {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mp-section-hero-image .info-box-oeffnungszeiten {
    bottom: 130px;
  }
}
.mp-section-hero-image .info-box-oeffnungszeiten .hallenbad,
.mp-section-hero-image .info-box-oeffnungszeiten .freibad {
  width: 50%;
}
@media (min-width: 768px) {
  .mp-section-hero-image .info-box-oeffnungszeiten .hallenbad,
.mp-section-hero-image .info-box-oeffnungszeiten .freibad {
    max-width: 150px;
  }
}
.mp-section-hero-image .info-box-oeffnungszeiten .hallenbad .is-close,
.mp-section-hero-image .info-box-oeffnungszeiten .hallenbad .is-open,
.mp-section-hero-image .info-box-oeffnungszeiten .freibad .is-close,
.mp-section-hero-image .info-box-oeffnungszeiten .freibad .is-open {
  position: relative;
  margin: 10px 0 10px 30px;
}
.mp-section-hero-image .info-box-oeffnungszeiten .hallenbad .is-close::before,
.mp-section-hero-image .info-box-oeffnungszeiten .hallenbad .is-open::before,
.mp-section-hero-image .info-box-oeffnungszeiten .freibad .is-close::before,
.mp-section-hero-image .info-box-oeffnungszeiten .freibad .is-open::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: var(--mp--colors--red, #F80000);
  -webkit-transform: translate(-30px, 2px);
          transform: translate(-30px, 2px);
}
.mp-section-hero-image .info-box-oeffnungszeiten .hallenbad .is-open::before,
.mp-section-hero-image .info-box-oeffnungszeiten .freibad .is-open::before {
  background: var(--mp--colors--spring-green, #00FF6C);
}
.mp-section-hero-image .info-box-oeffnungszeiten .hallenbad .has-temperature-icon,
.mp-section-hero-image .info-box-oeffnungszeiten .freibad .has-temperature-icon {
  position: relative;
  margin: 10px 0 10px 30px;
}

/**
* Forms - general.
*
*/
input.mp-input {
  padding: 10px;
  background: transparent;
  border: 1px solid var(--mp--colors--tangaroa, #052440);
  outline: none;
  width: 100%;
  color: var(--mp--colors--black, #000000);
}
@container ( min-width: 600px ) {
  input.mp-input {
    width: calc(100% - 50px);
  }
}
input.mp-input:focus {
  border: 1px solid var(--mp--colors--sail, #BDDEF2);
}
input.mp-input[data-title]::after {
  background: red;
}

/**
* Form.
*
*/
form.mp-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  container-type: inline-size;
}
form.mp-form .mp-form-column {
  margin-bottom: 30px;
  margin-top: 0;
  position: relative;
}
form.mp-form .mp-form-column input.mp-input {
  position: relative;
  -webkit-transition: 300ms esea;
  transition: 300ms esea;
}
form.mp-form .mp-form-column span {
  position: absolute;
  left: 0;
  padding: 10px;
  padding-left: 20px;
  pointer-events: none;
  color: rgba(var(--mp--colors--black--rgb, #000000), 0.75);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
form.mp-form .mp-form-column input:valid,
form.mp-form .mp-form-column input:focus {
  padding-left: 15px;
}
form.mp-form .mp-form-column input:valid + span,
form.mp-form .mp-form-column input:focus + span {
  -webkit-transform: translate(5px, -11px);
          transform: translate(5px, -11px);
  padding: 0 10px;
  font-size: 14px;
  background: var(--mp--colors--concrete, #f2f2f2);
  border-left: 1px solid var(--mp--colors--sail, #BDDEF2);
  border-right: 1px solid var(--mp--colors--sail, #BDDEF2);
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
}
form.mp-form .mp-form-column.mp-form-column-small {
  width: 100%;
  margin-left: 0;
}
@container ( min-width: 600px ) {
  form.mp-form .mp-form-column.mp-form-column-small {
    width: 50%;
  }
}
form.mp-form .mp-form-column.mp-form-column-button input {
  float: right;
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
}
form.mp-form .mp-form-column.mp-form-column-large {
  width: 100%;
  margin-left: 0;
}
form.mp-form .mp-form-column.mp-form-column-large .mp-form-inner-column-small {
  width: 50%;
}
form.mp-form .mp-form-column.mp-form-column-large .mp-form-inner-column-small .mp-label-container {
  width: 100%;
}
form.mp-form .mp-form-column.mp-form-column-large.is-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
form.mp-form .mp-form-column.mp-form-column-large.is-flex .mp-form-inner-column-small {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
form.mp-form .mp-form-column.mp-form-column-small-large {
  width: 100%;
}
@container ( min-width: 600px ) {
  form.mp-form .mp-form-column.mp-form-column-small-large {
    width: 25%;
  }
}
form.mp-form .mp-form-column.mp-form-column-large-small {
  width: 100%;
}
@container ( min-width: 600px ) {
  form.mp-form .mp-form-column.mp-form-column-large-small {
    width: 66.6%;
  }
}
form.mp-form .mp-form-column .mp-file-input {
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
  margin-top: 15px;
  pointer: pointer;
}
form.mp-form .mp-form-column .mp-pop-up {
  display: none;
  padding: 20px;
  border: 2px solid red;
  margin: 20px 0;
  width: calc(100% - 44px);
}
@container ( min-width: 600px ) {
  form.mp-form .mp-form-column .mp-pop-up {
    width: calc(100% - 94px);
  }
}
form.mp-form .mp-form-column .mp-pop-up p, form.mp-form .mp-form-column .mp-pop-up a {
  font-size: 14px;
}
form.mp-form .mp-form-column .upload-file-to-big {
  display: block;
}
form.mp-form .mp-form-column .error-message {
  margin: 15px 0 0 0;
}
form.mp-form .mp-form-column-radio-button .mp-radio-button-label,
form.mp-form .mp-form-column-radio-button .checkbox-button-label,
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direktion: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
form.mp-form .mp-form-column-radio-button .mp-radio-button-label .mp-label-container,
form.mp-form .mp-form-column-radio-button .checkbox-button-label .mp-label-container,
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label .mp-label-container,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label .mp-label-container {
  width: calc(50% - 5px);
}
form.mp-form .mp-form-column-radio-button .mp-radio-button-label p.is-limo-label,
form.mp-form .mp-form-column-radio-button .checkbox-button-label p.is-limo-label,
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label p.is-limo-label,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label p.is-limo-label {
  font-weight: 600;
}
form.mp-form .mp-form-column-radio-button .mp-radio-button-label .is-limo,
form.mp-form .mp-form-column-radio-button .checkbox-button-label .is-limo,
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label .is-limo,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label .is-limo {
  padding-left: 20px;
}
form.mp-form .mp-form-column-radio-button .mp-radio-button-label label,
form.mp-form .mp-form-column-radio-button .checkbox-button-label label,
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label label,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label label {
  color: var(--mp--colors--black, #000000);
}
form.mp-form .mp-form-column-radio-button .mp-radio-button-label p.check,
form.mp-form .mp-form-column-radio-button .checkbox-button-label p.check,
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label p.check,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label p.check {
  position: relative;
  padding-left: 25px;
}
form.mp-form .mp-form-column-radio-button .mp-radio-button-label p.check:before,
form.mp-form .mp-form-column-radio-button .checkbox-button-label p.check:before,
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label p.check:before,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label p.check:before {
  content: "";
  width: 12px;
  height: 12px;
  border: 1px solid rgba(var(--mp--colors--white--rgb, #ffffff), 0);
  outline: var(--mp--colors--gold-drop, #EF8800);
  outline-width: thin;
  outline-style: solid;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 4px;
}
form.mp-form .mp-form-column-radio-button .mp-radio-button-label input[type=radio],
form.mp-form .mp-form-column-radio-button .mp-radio-button-label input[type=checkbox],
form.mp-form .mp-form-column-radio-button .checkbox-button-label input[type=radio],
form.mp-form .mp-form-column-radio-button .checkbox-button-label input[type=checkbox],
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label input[type=radio],
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label input[type=checkbox],
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label input[type=radio],
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label input[type=checkbox] {
  display: none;
}
form.mp-form .mp-form-column-radio-button .mp-radio-button-label input[type=radio]:checked ~ p.check:before,
form.mp-form .mp-form-column-radio-button .mp-radio-button-label input[type=checkbox]:checked ~ p.check:before,
form.mp-form .mp-form-column-radio-button .checkbox-button-label input[type=radio]:checked ~ p.check:before,
form.mp-form .mp-form-column-radio-button .checkbox-button-label input[type=checkbox]:checked ~ p.check:before,
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label input[type=radio]:checked ~ p.check:before,
form.mp-form .mp-form-column-checkbox-button .mp-radio-button-label input[type=checkbox]:checked ~ p.check:before,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label input[type=radio]:checked ~ p.check:before,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label input[type=checkbox]:checked ~ p.check:before {
  background: var(--mp--colors--gold-drop, #EF8800);
  border: 1px solid rgba(var(--mp--colors--white--rgb, #ffffff), 1);
}
form.mp-form .mp-form-column-radio-button .checkbox-button-label p.check:before,
form.mp-form .mp-form-column-checkbox-button .checkbox-button-label p.check:before {
  border-radius: 0;
}
form.mp-form .error-message {
  display: none;
  padding: 10px;
  border: 1px solid var(--mp--colors--gold-drop, #EF8800);
  color: var(--mp--colors--gold-drop, #EF8800);
  padding-left: 20px;
  margin: 0 0 20px 0;
  width: calc(100% - 24px);
  font-size: 14px;
}
@container ( min-width: 600px ) {
  form.mp-form .error-message {
    width: calc(100% - 50px);
  }
}
form.mp-form p.pflichtpfeld {
  font-size: 16px;
}

/**
* Slider.
*
*/
.container {
  width: 100%;
  max-height: 500px;
  height: 100%;
  position: relative;
  background: var(--mp--colors--sail, #BDDEF2);
  overflow: hidden;
}
@media (min-width: 1180px) {
  .container {
    max-height: 600px;
    height: 100%;
  }
}
.container .slider-module {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-animation: fade 1s;
          animation: fade 1s;
}
@-webkit-keyframes fade {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade {
  from {
    opacity: 0.1;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 1180px) {
  .container .slider-module {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.container .slider-module .slider-image {
  width: 100%;
  height: 50%;
}
@media (min-width: 1180px) {
  .container .slider-module .slider-image {
    width: 67%;
    height: auto;
  }
}
.container .slider-module .slider-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.container .slider-module .slider-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--mp--colors--sail, #BDDEF2);
  height: 100%;
  width: 100%;
}
@media (min-width: 1180px) {
  .container .slider-module .slider-text {
    width: 33%;
  }
}
.container .slider-module .slider-text .button {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.container .slider-module .slider-text .button img {
  height: 30px;
}
.container .slider-module .slider-text .button a {
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
}
.container .slider-module .slider-text .button a:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.container .dots {
  position: absolute;
  left: calc((100% - 12rem) / 2);
  bottom: 1rem;
  width: 12rem;
  z-index: 5;
}
@media (min-width: 1180px) {
  .container .dots {
    left: calc(100% - (33% + 12rem) / 2);
  }
}
.container .dots .dot {
  width: 2rem;
  height: 2rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--mp--colors--gold-drop, #EF8800);
}

/**
* Angebots und Events teaser.
*
*/
.mp-teaser-colmns .mp-teaser-colmn {
  min-height: 200px;
}
@media (min-width: 540px) {
  .mp-teaser-colmns .mp-teaser-colmn {
    min-height: 400px;
  }
}
.mp-teaser-colmns .mp-teaser-colmn .teaser-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  min-height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 540px) {
  .mp-teaser-colmns .mp-teaser-colmn .teaser-content {
    min-height: 400px;
  }
}
.mp-teaser-colmns .mp-teaser-colmn .teaser-content h3 {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mp-teaser-colmns .mp-teaser-colmn .teaser-content h3.has-alter {
  background-position: top;
  padding-top: 50px;
}
.mp-teaser-colmns .mp-teaser-colmn .teaser-content.is-aquafit-spezial {
  position: relative;
}
.mp-teaser-colmns .mp-teaser-colmn .teaser-content.is-aquafit-spezial::after {
  content: "Aquafit spezial";
  position: absolute;
  top: -12px;
  right: -12px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background: var(--mp--colors--gold-drop, #EF8800);
  color: var(--mp--colors--white, #ffffff);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.mp-teaser-colmns .mp-teaser-colmn .teaser-content.has-icon {
  position: relative;
}
.mp-teaser-colmns .mp-teaser-colmn .teaser-content.has-icon::after {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  height: 80px;
  width: 80px;
  background: url(../img/svg/abzeichen-seepferchen.svg);
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.mp-teaser-colmns .mp-teaser-colmn .teaser-content.has-icon.bronze::after {
  background: url(../img/svg/abzeichen-bronze.svg);
}
.mp-teaser-colmns .mp-teaser-colmn .teaser-content.has-icon.silber::after {
  background: url(../img/svg/abzeichen-silber.svg);
}

.teaser-fruehschwimmer-container {
  min-height: 200px;
  position: relative;
}
@media (min-width: 540px) {
  .teaser-fruehschwimmer-container {
    min-height: 400px;
  }
}
.teaser-fruehschwimmer-container:after {
  content: "6 Uhr bis 9 Uhr";
  position: absolute;
  top: -30px;
  right: -20px;
  height: 100px;
  width: 100px;
  border-radius: 50%;
  background: var(--mp--colors--gold-drop, #EF8800);
  color: var(--mp--colors--white, #ffffff);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
.teaser-fruehschwimmer-container .teaser-fruehschwimmer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 200px;
}
@media (min-width: 540px) {
  .teaser-fruehschwimmer-container .teaser-fruehschwimmer {
    min-height: 400px;
  }
}
.teaser-fruehschwimmer-container .teaser-fruehschwimmer .background-image {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}

/**
* Kurseblöcke.
*
*/
.mp-kurse-buchen-container {
  container-type: inline-size;
}
.mp-kurse-buchen-container.is-ausgebucht {
  opacity: 0.5;
}
.mp-kurse-buchen-container.is-ausgebucht .mp-buttons-column {
  display: none;
}
.mp-kurse-buchen-container .header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 20px;
  width: 100%;
  background-color: var(--mp--colors--tangaroa, #052440);
}
@container ( max-width: 450px ) {
  .mp-kurse-buchen-container .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mp-kurse-buchen-container .header p {
  color: var(--mp--colors--white, #ffffff);
}
.mp-kurse-buchen-container .header .ausgebucht::before,
.mp-kurse-buchen-container .header .frei::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: var(--mp--colors--red, #F80000);
  -webkit-transform: translate(-30px, 2px);
          transform: translate(-30px, 2px);
}
@container ( max-width: 450px ) {
  .mp-kurse-buchen-container .header .ausgebucht,
.mp-kurse-buchen-container .header .frei {
    margin: 10px 30px;
  }
}
.mp-kurse-buchen-container .header .frei::before {
  background: var(--mp--colors--spring-green, #00FF6C);
}
.mp-kurse-buchen-container .content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 3px;
  border: 1px solid var(--mp--colors--sail, #BDDEF2);
  border-top: none;
}
@container ( min-width: 500px ) {
  .mp-kurse-buchen-container .content-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.mp-kurse-buchen-container .content-area .text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.mp-kurse-buchen-container .content-area .text-area .content-area-text {
  width: 100%;
}
@container ( min-width: 400px ) {
  .mp-kurse-buchen-container .content-area .text-area .content-area-text {
    width: calc(50% - 10px);
  }
}
@container ( min-width: 500px ) {
  .mp-kurse-buchen-container .content-area .text-area .content-area-text {
    width: 100%;
  }
}
.mp-kurse-buchen-container .content-area .kurs-information {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 17px;
}
@container ( min-width: 500px ) {
  .mp-kurse-buchen-container .content-area .kurs-information {
    width: 40%;
  }
}
.mp-kurse-buchen-container .content-area .termine {
  width: 100%;
}
@container ( min-width: 500px ) {
  .mp-kurse-buchen-container .content-area .termine {
    width: 60%;
  }
}
.mp-kurse-buchen-container .content-area .termine table {
  width: 100%;
}
@container ( max-width: 500px ) {
  .mp-kurse-buchen-container .content-area .hide-on-big {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@container ( min-width: 500px ) {
  .mp-kurse-buchen-container .content-area .hide-on-big {
    display: none;
  }
}
@container ( max-width: 500px ) {
  .mp-kurse-buchen-container .content-area .hide-on-small {
    display: none;
  }
}

/**
* Termine.
*
*/
.multiple-dates {
  container-type: inline-size;
}
.multiple-dates .ausgebucht-text {
  display: none;
}
.multiple-dates .ausgebucht {
  opacity: 0.5;
}
.multiple-dates .ausgebucht .frei-text {
  display: none;
}
.multiple-dates .ausgebucht .ausgebucht-text {
  display: block;
}
.multiple-dates .ausgebucht .ausgebucht-button a {
  display: none;
}
.multiple-dates .ausgebucht-text p,
.multiple-dates .frei-text p {
  position: relative;
  margin-left: 30px;
}
.multiple-dates .ausgebucht-text p::before,
.multiple-dates .frei-text p::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background: var(--mp--colors--red, #F80000);
  -webkit-transform: translate(-30px, 2px);
          transform: translate(-30px, 2px);
}
.multiple-dates .frei-text p::before {
  background: var(--mp--colors--spring-green, #00FF6C);
}
.multiple-dates .ausgebucht-button a {
  color: var(--mp--colors--gold-drop, #EF8800);
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}
.multiple-dates .ausgebucht-button a:hover {
  color: var(--mp--colors--tangaroa, #052440);
}
.multiple-dates .content-area {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@container ( min-width: 1000px ) {
  .multiple-dates .content-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.multiple-dates .content-area .text-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}
.multiple-dates .content-area .kurs-information {
  container-type: inline-size;
  width: 100%;
}
@container (min-width: 1000px) {
  .multiple-dates .content-area .kurs-information {
    width: 40%;
  }
}
.multiple-dates .content-area .kurs-information .content-area-text {
  width: 100% !important;
}
@container ( min-width: 550px ) {
  .multiple-dates .content-area .kurs-information .content-area-text {
    width: calc(50% - 10px) !important;
  }
}
@container ( min-width: 800px ) {
  .multiple-dates .content-area .kurs-information .content-area-text {
    width: calc(33.3333333333% - 13.3333333333px) !important;
  }
}
.multiple-dates .content-area .termine {
  width: 100%;
}
@container (min-width: 1000px) {
  .multiple-dates .content-area .termine {
    width: 60%;
  }
}
@container ( max-width: 600px ) {
  .multiple-dates .content-area .termine {
    overflow-x: scroll;
  }
}
.multiple-dates .content-area .termine table {
  min-width: 600px;
  overflow-x: scroll;
}

/**
* Import parts styles.
*
*/
/**
 * Info disturber.
 *
 */
.has-info-bage {
  position: relative;
}
.has-info-bage:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  top: -20px;
  right: 20px;
  background: url(../img/svg/disturber-i.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: -webkit-transform 200ms ease;
  transition: -webkit-transform 200ms ease;
  transition: transform 200ms ease;
  transition: transform 200ms ease, -webkit-transform 200ms ease;
  z-index: 1;
}
@media (min-width: 650px) {
  .has-info-bage:after {
    top: -30px;
    width: 60px;
    height: 60px;
  }
}
.has-info-bage:hover::after {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.has-info-bage .mp-column-full {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (min-width: 650px) {
  .has-info-bage .mp-column-full {
    padding-top: 40px;
  }
}

/**
 * Icons.
 *
 */
.has-mail-icon li,
.has-mail-icon p,
.has-mail-icon a,
.has-phone-icon li,
.has-phone-icon p,
.has-phone-icon a {
  margin-left: 30px !important;
}
.has-mail-icon li::before,
.has-mail-icon p::before,
.has-mail-icon a::before,
.has-phone-icon li::before,
.has-phone-icon p::before,
.has-phone-icon a::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background-image: url(../img/svg/icon-phone.svg);
  background-repeat: no-repeat;
  -webkit-transform: translate(-30px, 2px);
          transform: translate(-30px, 2px);
}

.has-mail-icon li::before,
.has-mail-icon p::before,
.has-mail-icon a::before {
  background-image: url(../img/svg/icon-mail.svg);
}

.has-temperatur-icon {
  margin-left: 30px !important;
  margin-top: 20px;
}
.has-temperatur-icon::before {
  content: "";
  position: absolute;
  height: 40px;
  width: 35px;
  background-image: url(../img/svg/icon-temperatur.svg);
  background-repeat: no-repeat;
  -webkit-transform: translate(-36px, -4px);
          transform: translate(-36px, -4px);
}

/**
 * Filmnacht.
 *
 */
.has-info-film {
  position: relative;
}
.has-info-film::after {
  content: "Im Sommer immer freitags";
  position: absolute;
  top: -30px;
  right: 0px;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  background: var(--mp--colors--gold-drop, #EF8800);
  color: var(--mp--colors--white, #ffffff);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  z-index: 20;
}