@charset "UTF-8";
:root {
  --bg-dark: #0F2243;
  --bg-light: #374C7B;
  --bg-white: #fafafa;
  --primary: #2487E2;
  --secondary: #34FF79;
  --dark-one: #343334;
  --dark-two: #565556;
  --error-col: #f00b0b;
  --booked-col: #f00b31;
  --font-one: "Ubuntu", sans-serif;
  --font-text: "Open Sans", sans-serif;
  --line-height: 1.7;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-family: var(--font-text);
  font-weight: 400;
  font-size: 10px;
  box-sizing: border-box;
  color: var(--dark-one);
  background: var(--bg-white);
}

body {
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-one);
  margin-block: 0;
}

h1 {
  font-style: italic;
  font-weight: bold;
  font-size: 5.2rem;
  text-transform: uppercase;
}

h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 4rem;
}

h3 {
  font-style: normal;
  font-weight: 500;
  font-size: 3.6rem;
}

h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 2.6rem;
}

h5 {
  font-style: normal;
  font-weight: 500;
  font-size: 2.4rem;
}

p, ul, ol {
  font-size: 1.6rem;
  line-height: var(--line-height);
}

.therapy p {
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

h5 > span {
  position: relative;
  top: 0.4rem;
  left: 0.2rem;
}

.bold {
  font-weight: 600;
}

/*===============
    components
=============== */
.main-container {
  width: 100%;
  overflow: hidden;
}

.outer-container {
  width: 100%;
  max-width: 100vw;
  height: 100%;
  padding: 0 2rem;
}

.container {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.section-anchor-container {
  position: relative;
}

.section-anchor {
  position: absolute;
  width: 0;
  height: 0;
}

.my-grid {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.section-heading {
  --heading-col: var(--dark-two);
  --heading-col-2: var(--primary);
  --heading-col-3: var(--secondary);
  text-align: center;
}

.section-heading h1 {
  color: var(--heading-col);
  transition: transform 200ms ease-out;
}

.section-heading h1 span {
  color: var(--heading-col-2);
}

.section-heading a:hover h1 {
  transform: scale(1.1);
}

.section-heading-divider {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.section-heading-divider > div {
  height: 0.8rem;
  width: 0.8rem;
  border-radius: 100rem;
  background: var(--heading-col);
  margin: 2rem 0.9rem;
}

.cta {
  color: var(--bg-white);
  position: relative;
  transition: filter 300ms ease-out;
}

.cta .btn {
  display: block;
  padding: 1rem 3rem;
  background: var(--primary);
  border-radius: 100rem;
  filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.2));
  font-size: 1.6rem;
}

.cta .btn p {
  font-size: inherit;
}

.cta .btn-icon {
  position: absolute;
  opacity: 0;
  top: 50%;
  right: 2rem;
  transition: all 300ms ease-out;
}

.cta .btn-icon .material-icons,
.cta .btn-icon .material-icons-outlined {
  transform: translateY(-48%);
  font-weight: 100;
  font-size: 2rem;
}

.cta .btn-text {
  transition: all 300ms ease-out;
}

.cta .btn:hover .btn-text,
.cta .btn:focus .btn-text {
  transform: translateX(-1rem);
}

.cta .btn:hover .btn-icon,
.cta .btn:focus .btn-icon {
  right: 1.2rem;
  opacity: 0.9;
}

.cta .btn:hover .btn-icon .btn-icon-bounce,
.cta .btn:focus .btn-icon .btn-icon-bounce {
  animation-delay: 300ms;
  animation: btn-arrow-bounce-x 600ms ease-in-out infinite alternate;
}

/*===============
    header
=============== */
header {
  --header-bg: rgba(0,0,0,0);
  --header-col: rgba(255, 255, 255, 0.95);
  width: 100%;
  height: 11rem;
  position: fixed;
  margin-bottom: -11rem;
  top: 0;
  left: 0;
  z-index: 5000;
  background: var(--header-bg);
  color: var(--header-col);
  font-family: var(--font-one);
  font-style: italic;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 500ms ease-in-out;
}

.header-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  height: 100%;
  align-items: center;
  display: flex;
  flex-direction: row;
}

nav {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  width: 9rem;
  filter: drop-shadow(0 0 3px rgba(52, 255, 120, 0.1098039216));
  transition: width 500ms ease-in-out, filter 200ms ease-out;
}

.nav-brand:hover {
  filter: drop-shadow(0 0 5px var(--secondary));
}

.nav-logo {
  width: 100%;
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-direction: row;
}

.menu-icons {
  display: none;
}

.nav-item {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 2rem;
}

.nav-item:last-child {
  margin-right: 0;
}

.nav-link {
  position: relative;
  font-family: var(--font-one);
  font-size: 1.6rem;
}

.nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  height: 2px;
  background-color: var(--header-col);
  transform: scaleX(0);
  transition: transform 200ms ease-out;
  opacity: 0.8;
  width: 100%;
}

.nav-link:hover::before {
  transform: scaleX(1);
}

.header-scrolled {
  --header-bg: rgba(255, 255, 255, 0.9);
  --header-col: var(--bg-dark);
  --header-bg: #0f2243ec;
  --header-col: var(--bg-white);
  height: 8rem;
  box-shadow: -1px -2px 15px 2´3px rgba(15, 34, 67, 0.5764705882);
}

.header-scrolled .nav-brand {
  width: 6rem;
}

@media (max-width: 1150px) {
  header,
  .header-scrolled {
    --header-col: var(--secondary);
    font-size: 2rem;
    font-family: var(--font-text);
  }
  .nav-list {
    width: 110vw;
    height: 110vh;
    background: var(--bg-dark);
    position: fixed;
    top: -5vh;
    right: -111vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 1000;
    transition: right 300ms linear;
    padding: 0;
    border-left: 2px solid var(--header-col);
    box-shadow: 1px 0px 20px rgba(0, 0, 0, 0.5);
  }
  .nav-list.active {
    right: -30vw;
    transition: right 500ms cubic-bezier(0.48, 0.08, 0.2, 1.48);
  }
  .nav-item {
    width: 100%;
    margin: 0;
    padding: 4vh 5vw;
    justify-content: left;
    position: relative;
  }
  .nav-item::after {
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--header-col);
    transform: translateX(110%);
  }
  .active .nav-item::after {
    content: "";
    transform: translateX(0);
    transition: transform 400ms ease-in-out;
    transition-delay: 200ms;
  }
  .active .nav-item:nth-child(2):after {
    transition-delay: 200ms;
  }
  .active .nav-item:nth-child(3):after {
    transition-delay: 300ms;
  }
  .active .nav-item:nth-child(4):after {
    transition-delay: 400ms;
  }
  .active .nav-item:nth-child(5):after {
    transition-delay: 500ms;
  }
  .active .nav-item:nth-child(6):after {
    transition-delay: 600ms;
  }
  .active .nav-item:nth-child(7):after {
    transition-delay: 700ms;
  }
  .nav-item:last-child::after {
    display: none;
  }
  .menu-icons {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 2.6rem;
    cursor: pointer;
  }
  .menu-icons.close {
    position: absolute;
    top: calc(5vh + 3rem);
    left: 5vw;
    opacity: 0;
  }
  .active .menu-icons.close {
    opacity: 1;
  }
  .nav-link::before {
    display: none;
  }
}
/*===============
    hero
=============== */
.hero-shadow {
  background: linear-gradient(178deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2)), linear-gradient(178deg, var(--bg-light) 25%, rgba(255, 255, 255, 0) 90%);
  padding-bottom: 20rem;
  z-index: 900;
}

.hero {
  position: relative;
  height: 85vh;
  background-color: var(--bg-dark);
  background-image: url("../img/bgs/main_bg_.jpg");
  background-size: cover;
  background-position: center 80%;
  mask: url(../img/hero-bg-2.svg) no-repeat bottom center;
  -webkit-mask: url(../img/hero-bg-2.svg) no-repeat bottom center;
  mask-size: 100% max(101%, 2787px);
  -webkit-mask-size: 100% max(101%, 2787px);
  z-index: 1100;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  opacity: 0.82;
  z-index: 1000;
}

.hero-bg-overlay-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  opacity: 0.25;
  z-index: 1010;
  mask: url(../img/hero-shading.svg) no-repeat bottom center;
  -webkit-mask: url(../img/hero-shading-col.svg) no-repeat bottom center;
  mask-size: cover;
  -webkit-mask-size: 100% 339px;
}

.hero .outer-container {
  position: relative;
  z-index: 1100;
}

.hero .container {
  height: 100%;
}

.hero-grid {
  justify-content: space-between;
  width: 100%;
}

.hero-message,
.hero-quote {
  color: var(--bg-white);
  margin-bottom: 7rem;
}

.hero-message {
  margin-right: 3rem;
}

.hero-quote {
  margin-left: 3rem;
}

.hero-text-two {
  color: var(--secondary);
}

.hero-quote-text {
  max-width: 40rem;
  text-align: center;
}

.hero-quote-author {
  text-align: right;
  font-size: 1.6rem;
}

.hero-quote-author p {
  font-size: inherit;
}

.hero-quote-start,
.hero-quote-end {
  display: inline-block;
  height: 2.5rem;
  width: 2rem;
  overflow: hidden;
  position: relative;
  opacity: 0.85;
  transform: rotateZ(1deg);
}

.hero-quote-start {
  top: 1.7rem;
}

.hero-quote-end {
  top: 0.3rem;
}

.hero-quote-mark::before {
  position: relative;
  color: var(--bg-white);
  font-family: "Buda", sans-serif;
  font-size: 7rem;
  font-weight: 100;
  top: -3rem;
  left: -0.3rem;
}

.hero-quote-start .hero-quote-mark::before {
  content: "„";
  top: -6.2rem;
}

.hero-quote-end .hero-quote-mark::before {
  content: "“";
  top: -2rem;
}

.hero-quote-dash {
  width: 100%;
  height: 1px;
  background: var(--bg-white);
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) -50%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.3) 150%);
  opacity: 0;
}

.hero-quote-author > p::before {
  content: "—";
  margin-right: 0.6rem;
}

.hero-circle-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-circle {
  width: 5rem;
  height: 5rem;
  transform: translateY(-13rem);
  border-radius: 100rem;
  background: linear-gradient(0deg, var(--bg-light) -100%, rgba(255, 255, 255, 0) 100%), var(--bg-white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
  z-index: 1250;
  display: flex;
}

.hero-circle:hover {
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.hero-link {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-link .material-icons,
.hero-link .material-icons-outlined {
  font-size: 22px;
  transform: translateY(3px);
}

.hero-link:hover {
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.3));
}

/*===============
    about me
=============== */
.about-me {
  position: relative;
  margin-top: -58.5rem;
  padding-top: 40rem;
  background: var(--bg-white);
  mask: url(../img/about-me-wave.svg) no-repeat bottom center;
  -webkit-mask: url(../img/about-me-wave.svg) no-repeat bottom center;
  mask-size: 100% max(101%, 3543px);
  -webkit-mask-size: 100% max(101%, 3543px);
}

#about {
  top: -16rem;
}

.about-me-shadow-top {
  width: 100%;
  height: 70rem;
  margin-top: -70rem;
  background: linear-gradient(178deg, var(--bg-light) 10%, rgba(255, 255, 255, 0) 90%);
  opacity: 0.5;
}

.about-me-shadow-bot {
  width: 100%;
  height: 50rem;
  margin-top: -50rem;
  opacity: 0.5;
  z-index: -1;
  position: relative;
}

.about-me-grid {
  margin-top: 2rem;
  margin-bottom: 22rem;
  justify-content: space-between;
}

.about-me-message {
  width: 50%;
  padding: 0 0 0 3rem;
  text-align: center;
}

.about-me-text {
  margin: 2rem 0;
}

.about-me-edu {
  margin-top: 5rem;
}

.about-me-edu h5 {
  margin-bottom: 1.5rem;
}

.about-me-edu-list span::after {
  /* font-family: 'Material Icons'; */
  /* content: "stars"; */
  content: "•";
  font-size: 2rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  position: relative;
  top: 0.3rem;
}

.about-me-edu-list span:last-child::after {
  content: "";
}

.about-me-pic-container {
  width: 35%;
  margin-bottom: -10rem;
  margin-top: 6rem;
}

/*===============
    therapy
=============== */
.therapy {
  margin-top: -70rem;
  padding-top: 70rem;
  background: linear-gradient(-20deg, var(--bg-dark) 10%, var(--bg-light) 90%);
  z-index: -1;
  padding-bottom: 5rem;
}

#therapy {
  top: -10rem;
}

.therapy-heading {
  --heading-col: var(--bg-white);
  --heading-col-2: var(--primary);
}

.therapy-grid {
  flex-direction: column;
  width: 100%;
  margin-bottom: 80rem;
}

.therapy-item {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  color: var(--bg-white);
  margin: 10rem 0;
  width: 100%;
}

.therapy-item.first-item {
  margin-top: 15rem;
}

.therapy-left {
  --align: left;
  flex-direction: row;
}

.therapy-right {
  --align: right;
  flex-direction: row-reverse;
}

.therapy-pic-shadow {
  background: linear-gradient(200deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
  padding: 1.4rem;
  border-radius: 100rem;
}

.therapy-right .therapy-pic-shadow {
  background: linear-gradient(320deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
}

.therapy-pic-overflow-container {
  width: 30rem;
  height: 30rem;
  border-radius: 100rem;
  overflow: hidden;
}

.therapy-pic {
  width: 100%;
  height: 100%;
  transition: transform 250ms ease-out;
  background-size: cover;
}

.therapy-pic:hover {
  transform: scale(1.25);
}

.therapy-info-text {
  text-align: var(--align);
  padding: 0 2rem;
  width: 100%;
  max-width: 60rem;
}

.therapy-description {
  margin: 2.5rem 0;
}

.therapy-item .therapy-link {
  display: none;
  color: var(--secondary);
  text-decoration: underline;
}

.therapy-item .therapy-link:hover {
  text-decoration: none;
}

/*===============
    courses
=============== */
.courses-wave {
  height: 55rem;
  margin-top: -25rem;
  margin-bottom: -95rem;
  background-color: var(--bg-white);
  background-image: linear-gradient(180deg, rgba(55, 76, 123, 0.5803921569) -60%, rgba(255, 255, 255, 0) 50%);
  mask: url(../img/course-wave.svg) no-repeat top center;
  -webkit-mask: url(../img/course-wave.svg) no-repeat top center;
  mask-size: 100% max(101%, 2387px);
  -webkit-mask-size: 100% max(101%, 2387px);
  z-index: 1500;
}

#courses {
  top: -50rem;
}

.courses-content {
  position: relative;
  z-index: 1550;
}

.courses-grid {
  flex-direction: column;
}

.courses-heading {
  --heading-col: var(--bg-white);
  --heading-col-2: var(--secondary);
}

.course-item-container {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  margin: 10rem 0;
  width: 100%;
}

.course-item {
  --card-rad: 5px;
  width: 33rem;
  min-width: 30rem;
  background: var(--bg-white);
  border-radius: var(--card-rad);
  border-top-left-radius: calc(var(--card-rad) + 3px);
  border-top-right-radius: calc(var(--card-rad) + 3px);
  margin: 2rem;
  filter: drop-shadow(1px 1px 20px rgba(15, 34, 67, 0.2));
  transition: all 150ms linear;
  position: relative;
}

.course-item:hover {
  filter: drop-shadow(1px 1px 15px rgba(15, 34, 67, 0.35));
  transform: translateY(-2rem);
}

.course-band {
  position: absolute;
  top: 0;
  width: 100%;
  height: 20rem;
  overflow: hidden;
  display: none;
  opacity: 0.95;
}

.course-band-content {
  position: absolute;
  width: 150%;
  height: 5.5rem;
  top: 5rem;
  transform: rotateZ(40deg);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  font-family: var(--font-one);
  text-transform: uppercase;
  font-weight: 500;
  color: var(--bg-white);
}

.course-pic-container {
  position: relative;
  z-index: -1;
}

.course-pic-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, var(--bg-dark) 100%);
  opacity: 0.5;
  transition: opacity 200ms linear;
}

.course-item:hover .course-pic-container::before {
  opacity: 0;
}

.course-pic-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 200ms linear;
}

.course-pic {
  border-top-left-radius: var(--card-rad);
  border-top-right-radius: var(--card-rad);
}

.course-highlight p {
  background: var(--primary);
  border-radius: 100rem;
  padding: 0.5rem 1.5rem;
  display: inline-block;
  transform: translateY(-50%);
  margin-left: 2rem;
  color: var(--bg-white);
}

.course-info {
  padding: 0 2.5rem 1.5rem 2.5rem;
}

.course-text {
  margin: 2rem 0;
}

.course-link {
  font-weight: 600;
  display: flex;
  flex: row;
  justify-content: space-between;
}

.course-item:hover .course-link {
  color: var(--primary);
}

.course-arrow {
  display: inline-block;
  margin-right: 1rem;
  visibility: hidden;
}

.course-arrow {
  display: inline-block;
  margin-right: 1rem;
  visibility: hidden;
}

.course-arrow span {
  transform: translateY(1px);
  font-size: 2.6rem;
}

.course-item:hover .course-arrow {
  visibility: inherit;
  /* animation: arrow-bounce 1100ms ease-in-out infinite; */
  animation: btn-arrow-bounce-x2 600ms ease-in-out infinite alternate;
}

.course-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
}

.courses-bottom-text {
  max-width: 70rem;
  text-align: center;
}

.courses-bottom-text p {
  font-family: var(--font-one);
  font-size: 2.4rem;
  font-weight: 300;
}

.courses-bottom-text span {
  font-weight: 600;
}

.courses-cta {
  margin: 9rem 0;
}

.course-booked .course-band {
  display: initial;
}

.course-booked .course-info {
  filter: grayscale(0.9);
}

.course-booked .course-link {
  display: none;
}

.course-booked .course-band-content {
  background: var(--booked-col);
  opacity: 0.9;
}

/*===============
    references
=============== */
.references {
  position: relative;
  z-index: 1600;
}

#references {
  top: -28rem;
}

.references-bg {
  width: 100%;
  height: 43.5rem;
  margin-top: 15rem;
  margin-bottom: -52.5rem;
  background-color: var(--bg-light);
  background-image: url("../img/bgs/mountains.jpg");
  background-size: cover;
  background-position: center center;
  opacity: 0.2;
}

.ref-grid {
  position: relative;
  justify-content: flex-end;
  align-items: flex-start;
}

.ref-text-container {
  position: absolute;
  left: 0;
  top: 24rem;
  width: 30rem;
  height: 100%;
}

.ref-text-item p {
  font-size: 3rem;
  font-family: var(--font-one);
}

.ref-text-item span {
  font-weight: 600;
}

.ref-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.ref-item-left {
  margin-left: 4rem;
  margin-right: 7rem;
  padding-top: 10rem;
  align-items: flex-end;
}

.ref-card-container {
  margin: 3rem 0;
  width: 100%;
  min-width: 30rem;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 4.7rem 2.2rem 2.2rem 4rem;
  position: relative;
  background: var(--bg-white);
}

.ref-card-container.left-top {
  max-width: 30rem;
}

.ref-card-container.left-bot {
  max-width: 50rem;
}

.ref-card-container.right-top {
  max-width: 45rem;
}

.ref-card-container.right-bot {
  max-width: 35rem;
}

.ref-pic-container {
  position: absolute;
  top: 2rem;
  left: -4rem;
  width: 8rem;
  height: 8rem;
  border-radius: 100rem;
  background-image: url(../img/logo_wide.svg);
  background-size: cover;
}

.ref-pic {
  border-radius: 100rem;
}

.ref-quotes {
  position: absolute;
  top: -2.9rem;
  right: 2rem;
  width: 5.8rem;
  height: 5.8rem;
  border-radius: 100rem;
  background: linear-gradient(50deg, var(--bg-light) 0, var(--bg-dark) 120%);
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
}

.ref-quotes::after {
  content: "“";
  position: absolute;
  color: var(--bg-white);
  font-family: "Buda", sans-serif;
  font-size: 10rem;
  font-weight: 100;
  top: 0.2rem;
  left: 1.1rem;
}

.ref-headline h5 {
  margin-bottom: 3rem;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  font-size: 2rem;
}

.ref-text p {
  font-size: 1.6rem;
}

/*===============
    contact
=============== */
.contact-wave {
  position: relative;
  height: 70rem;
  margin-top: -25rem;
  background-color: var(--bg-white);
  background-image: linear-gradient(0deg, rgba(55, 76, 123, 0.2470588235) -50%, rgba(255, 255, 255, 0) 50%);
  mask: url(../img/contact-wave.svg) no-repeat bottom center;
  -webkit-mask: url(../img/contact-wave.svg) no-repeat bottom center;
  mask-size: 100% max(101%, 2079px);
  -webkit-mask-size: 100% max(101%, 2079px);
  z-index: -1;
}

.contact {
  position: relative;
  background: red;
  margin-top: -65rem;
  padding-top: 65rem;
  z-index: 1500;
  background: linear-gradient(-20deg, var(--bg-dark) 10%, var(--bg-light) 90%);
}

#contact {
  top: -6rem;
}

.contact-grid {
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 8rem;
}

.contact-form-container {
  color: var(--bg-white);
  width: 50%;
  max-width: 56rem;
}

.contact-info-container {
  color: var(--bg-white);
  width: 46%;
  max-width: 45rem;
}

.input-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 3.5rem;
}

.input-container-name {
  display: flex;
  flex-direction: row;
}

.input-container-check {
  display: none;
  visibility: hidden;
  opacity: 0;
}

.input-box {
  width: 100%;
  font-size: 1.4rem;
}

.input-box {
  margin-right: 4rem;
}

.input-container-name .input-box:last-child {
  margin-right: 0;
}

.input-box.input-box-checkbox {
  margin-top: -1.5rem;
  margin-bottom: -1rem;
}

.input-box label {
  color: var(--secondary);
  display: block;
  margin-bottom: 1.5rem;
  font-family: var(--font-text);
  font-size: 1.6rem;
}

.input-box input,
.input-box textarea {
  border-radius: 10rem;
  width: 100%;
  color: var(--bg-white);
  outline: none;
  background: linear-gradient(15deg, rgba(255, 255, 255, 0.15) -14.56%, rgba(255, 255, 255, 0) 58.41%);
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 1.5rem 2rem;
}

.input-box input:focus,
.input-box textarea:focus {
  background: rgba(255, 255, 255, 0.1);
}

.input-box.input-box-message textarea {
  padding: 2rem;
  border-radius: 3rem;
  line-height: var(--line-height);
  height: 25rem;
  resize: none;
}

.input-box.input-box-message textarea::-webkit-scrollbar {
  display: none;
}

.input-box-checkbox {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}

#input-container-data {
  position: relative;
}

.input-box-checkbox .input-checkbox {
  width: 2rem;
  height: 2rem;
  margin-right: 1.5rem;
  border-radius: 10rem;
  position: relative;
  left: -5rem;
}

.input-box-checkbox label {
  margin-top: 1.5rem;
  color: var(--bg-white);
  font-size: 1.4rem;
}

.input-checkbox::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2rem;
  background: red;
  position: absolute;
  top: -0.1rem;
  left: 5rem;
  outline: none;
  background: linear-gradient(28.85deg, rgba(255, 255, 255, 0.15) -14.56%, rgba(255, 255, 255, 0) 58.41%);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 10rem;
}

.input-checkbox:focus::after {
  background: rgba(255, 255, 255, 0.1);
}

.input-checkbox:checked::before {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--bg-white);
  position: absolute;
  left: 5.6rem;
  top: 0.5rem;
  border-radius: 10rem;
  opacity: 0.9;
}

.input-box-button {
  width: initial;
}

.input-box-button .input-button {
  width: initial;
  background: none;
  border: none;
  color: var(--bg-white);
  border-radius: 100rem;
  background: var(--primary);
  filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 0.2));
  transition: filter 300ms ease-out;
  cursor: pointer;
}

.input-container.input-error input,
.input-container.input-error textarea,
.input-container.input-error .input-checkbox:after {
  border: 2px solid var(--error-col);
}

.input-container.input-error label {
  color: var(--error-col);
}

.feedback-container {
  margin: 0;
  margin-bottom: -1rem;
  padding: 0;
  width: 100%;
}

.input-feedback {
  margin: 0;
  margin-top: 1.3rem;
  margin-left: 1rem;
  font-size: 1.4rem;
  color: var(--bg-white);
}

#feedback-success.feedback-container {
  margin-top: 0;
  margin-bottom: 3rem;
}

#feedback-success .input-feedback {
  margin: auto;
  padding: 1.5rem 2rem;
  border: 2px solid var(--secondary);
  border-radius: 100rem;
  color: var(--secondary);
  text-align: center;
  background: rgba(52, 255, 120, 0.0941176471);
}

.form-cta .btn {
  padding: 1.2rem 3rem;
  background: var(--secondary);
}

.contact-info {
  margin: 2rem 0;
}

.contact-info-container a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-item {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
}

.contact-icon {
  font-size: 2rem;
  margin-right: 2.2rem;
}

.contact-icon .material-icons,
.contact-icon .material-icons-outlined {
  color: var(--secondary);
  transform: translateY(2px);
}

.opening-hours-item {
  display: flex;
  flex-direction: row;
  margin-bottom: 0.5rem;
}

.opening-hours-day {
  min-width: 3.5rem;
}

/*===============
    imprint / data-protection
=============== */
.imprint {
  padding-top: 15rem;
  background: var(--bg-dark);
  color: var(--bg-white);
}

.imprint h1,
.imprint h2 {
  margin-bottom: 1rem;
  margin-top: 3rem;
  color: var(--secondary);
}

.imprint h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.imprint table {
  font-size: 1.8rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.imprint a:hover {
  text-decoration: underline;
  text-underline-offset: 1px;
}

.imprint ul {
  list-style-type: disc;
  margin-left: 5rem;
}

.imprint .main-container a {
  color: var(--primary);
}

/*===============
    footer
=============== */
footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--bg-white);
  margin-top: 3rem;
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 10rem;
}

.footer-container p,
.footer-container a {
  font-size: 1.4rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}

.footer-container a:hover {
  text-decoration: underline;
  text-underline-offset: 1px;
}

.footer-right {
  text-align: right;
}

.cookie-container {
  position: relative;
  padding-top: 3rem;
  padding-bottom: 1rem;
}

.cookie-info {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: 90%;
  min-height: 5rem;
  background-color: var(--bg-white);
  background-size: 200%;
  background-position: 40% 80%;
  border-radius: 1.9rem;
  text-align: center;
  padding: 2rem 1.5rem;
  font-size: 1.3rem;
  opacity: 0;
  transition: all 300ms ease-out;
  visibility: hidden;
  color: var(--dark-one);
}

.cookie-info::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: var(--bg-white);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(40%) rotateZ(45deg);
}

.cookie-container:hover .cookie-info {
  opacity: 1;
  visibility: initial;
  transition: all 500ms ease-out;
}

#cookies {
  cursor: pointer;
  text-decoration: none;
}

/*===============
    slide-in animations
=============== */
.therapy-left .therapy-pic-container.slide-in {
  transform: translateX(-50vw);
  opacity: 0;
}

.therapy-right .therapy-pic-container.slide-in {
  transform: translateX(50vw);
  opacity: 0;
}

.slide-me-in {
  visibility: hidden;
}

.slide-in {
  animation: slide-in-horizontally 900ms ease-out forwards;
  visibility: initial;
}

.slided-in,
.slide-default {
  visibility: initial;
  opacity: 1;
  transform: initial;
}

/*===============
    fade-in animations
=============== */
.therapy-right .therapy-info-container.fade-in {
  opacity: 0;
}

.fade-me-in {
  visibility: hidden;
}

.fade-in {
  animation: fade-in 1500ms ease-out forwards;
  visibility: initial;
}

.faded-in,
.fade-default {
  visibility: initial;
  opacity: 1;
}

/*===============
    keyframes
=============== */
@keyframes slide-in-horizontally {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes btn-arrow-bounce-x {
  from {
    transform: translateX(-0.2rem);
  }
  to {
    transform: translateX(0.2rem);
  }
}
@keyframes btn-arrow-bounce-x2 {
  from {
    transform: translateX(-0.3rem);
  }
  to {
    transform: translateX(0.3rem);
  }
}
@keyframes arrow-bounce {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 0;
    transform: translateX(1.8rem);
  }
  100% {
    transform: translateX(1.8rem);
    opacity: 0;
  }
}
/*===============
    media-queries
=============== */
@media (max-width: 1150px) {
  .hero {
    mask-size: 100% max(101%, 1787px);
    -webkit-mask-size: 100% max(101%, 1787px);
  }
  .hero-bg-overlay-wave {
    mask-size: 100% 229px;
    -webkit-mask-size: 100% 229px;
  }
  .about-me {
    mask-size: 100% max(101%, 1943px);
    -webkit-mask-size: 100% max(101%, 1943px);
  }
  .courses-wave {
    mask-size: 100% max(101%, 1387px);
    -webkit-mask-size: 100% max(101%, 1387px);
  }
  .contact-wave {
    mask-size: 100% max(101%, 1079px);
    -webkit-mask-size: 100% max(101%, 1079px);
  }
  .about-me-pic-container {
    overflow: hidden;
    width: 60vw;
    height: 60vw;
    border-radius: 100rem;
    padding: 5rem;
    margin-bottom: 5rem;
    margin-top: 0rem;
  }
  .therapy-grid {
    padding-top: 5rem;
  }
  .references {
    margin-top: 20rem;
  }
  .references .contact-wave {
    margin-top: -55rem;
  }
  .ref-text-container {
    top: -8rem;
    width: 100%;
    text-align: center;
  }
  .cookie-container.cookie-active .cookie-info {
    opacity: 1;
    visibility: initial;
    transition: all 500ms ease-out;
  }
  .imprint .container {
    padding-right: 10rem;
    padding-left: 10rem;
  }
}
@media (max-width: 850px) {
  .my-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero {
    mask-size: 100% max(101%, 1187px);
    -webkit-mask-size: 100% max(101%, 1187px);
  }
  .hero-bg-overlay-wave {
    mask-size: 100% 129px;
    -webkit-mask-size: 100% 129px;
  }
  .about-me {
    mask-size: 100% max(101%, 1543px);
    -webkit-mask-size: 100% max(101%, 1543px);
  }
  .courses-wave {
    mask-size: 100% max(101%, 1387px);
    -webkit-mask-size: 100% max(101%, 1387px);
  }
  .contact-wave {
    mask-size: 100% max(101%, 1079px);
    -webkit-mask-size: 100% max(101%, 1079px);
  }
  .hero-grid {
    justify-content: center;
  }
  .hero-message {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .hero-quote {
    display: none;
  }
  .about-me-message {
    width: 100%;
    padding: 0;
  }
  .therapy-item {
    flex-direction: column;
    margin: 7rem 0;
  }
  .therapy-right {
    --align: left;
  }
  .therapy-pic-container {
    margin-bottom: 5rem;
  }
  .therapy-pic-overflow-container {
    max-width: 80vw;
    max-height: 80vw;
  }
  .references-bg {
    opacity: 0;
  }
  .ref-item {
    margin: 0;
    justify-content: center;
    align-items: center;
  }
  .ref-card-container {
    min-width: initial;
    padding: 2.2rem;
    padding-top: 5.7rem;
  }
  .ref-card-container.left-top,
  .ref-card-container.left-bot,
  .ref-card-container.right-top,
  .ref-card-container.right-bot {
    width: 100%;
    max-width: 30rem;
    margin: 8rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .ref-quotes {
    position: initial;
    display: none;
  }
  .ref-pic-container {
    position: absolute;
    left: initial;
    top: 0;
    transform: translateY(-50%);
    background-color: var(--bg-white);
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
    width: 9rem;
    height: 9rem;
  }
  .ref-headline h5 {
    margin: 1rem 0 2rem 0;
  }
  .contact-form-container {
    width: 100%;
    max-width: initial;
    margin-bottom: 7rem;
  }
  .contact-info-container {
    width: 100%;
    max-width: initial;
    margin-bottom: 4rem;
    text-align: center;
  }
  .contact-details-container {
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  .contact-item {
    display: initial;
  }
  .contact-icon {
    margin: 0;
    margin-bottom: 1rem;
  }
  .contact-opening-hours {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
  }
  .opening-hours-item {
    display: block;
    width: auto;
    margin-bottom: 0.5rem;
  }
  .opening-hours-day,
  .opening-hours-time {
    display: inline-block;
  }
  .input-container {
    flex-direction: column;
  }
  .input-box {
    margin-right: 0;
  }
  .input-container-name {
    flex-direction: column;
  }
  .input-container-name .input-box:last-child {
    margin-top: 3.5rem;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .footer-left {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
  }
  .footer-right {
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 500px) {
  h1 {
    font-size: 10vw;
  }
  h2 {
    font-size: 11vw;
  }
  h3 {
    font-size: 8vw;
  }
  .therapy-item.first-item {
    margin-top: 8rem;
  }
  .therapy-info-text {
    padding: 0;
  }
  .nav-list.active {
    right: -15vw;
  }
}/*# sourceMappingURL=style.css.map */