﻿* {
  position: relative;
  box-sizing: border-box;  
  margin: 0;
  padding: 0;  
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  font-weight: normal;
}

body {
  color: #762009;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  overflow-x: hidden;
}

body,
html {
  width: 100%;
  height: auto;
  min-height: 100%;
  -ms-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -o-text-size-adjust: none;
  -webkit-text-size-adjust: none;  
}

a {
  cursor: pointer;
  text-decoration: none;  
}

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

img.fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

img.scalewidth {
  width: 100%;
  height: auto;
  object-fit: scale-down;
}

img.scaleheight {
  width: auto;
  height: 100%;
  object-fit: scale-down;
}

img.zoomed {
  transform: scale(1.1);
}

*:focus {
  outline: none !important;
}

::placeholder {
  color: #3a4040;
  opacity: 0.5;
  font-style: italic;
  font-weight: 300;
}

::-ms-input-placeholder {
  color: #3a4040;
  opacity: 0.5;
  font-style: italic;
  font-weight: 300;
}

.flex {
  display: flex;
}

.col {
  flex-direction: column;
}

.hc {
  justify-content: center;
}

.vc {
  align-items: center;
}

.noscroll {
  overflow-y: hidden;
}

.fixed {
  position: fixed;  
}

ul.unstyled,
ol.unstyled {
  list-style: none;  
}

/* -------------------------------------------------------------------------- */

@keyframes pulsate {
  0% { 
    opacity: 0.2;
  }
  50% { 
    opacity: 1.0;
  }
  100% { 
    opacity: 0.2;
  }
}

@keyframes spin {
  from {
    transform:rotate(0deg);
  }
  to {
    transform:rotate(360deg);
  }
}

/* -------------------------------------------------------------------------- */

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

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffbe0b;
  z-index: 1000;
}

#preloader img {
  height: 75px;
  -webkit-animation: pulsate 3s ease-out;
  -webkit-animation-iteration-count: infinite; 
  animation: pulsate 3s ease-out;
  animation-iteration-count: infinite;  
}

.items {
  width: calc(100% + 30px);
  margin: 0 -15px;
  flex-wrap: wrap;
}

.items .entry {
  margin: 15px;
}

.items.col-2 .entry {
  width: calc((100% / 2) - 30px);  
}

.items.col-3 .entry {
  width: calc((100% / 3) - 30px);
}

/* -------------------------------------------------------------------------- */

@media only screen
and (min-width : 1280px) {
  .ease:hover {
    opacity: 0.6;
  }
  .zoom:hover img {
    transform: scale(1.1) rotate(1deg);
    -o-transform: scale(1.1) rotate(1deg);
    -ms-transform: scale(1.1) rotate(1deg);
    -moz-transform: scale(1.1) rotate(1deg);
    -webkit-transform: scale(1.1) rotate(1deg);
  }  
}

.transition {
  transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;    
}

/* -------------------------------------------------------------------------- */

header {
  height: 190px;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

header.sticky {
  top: -110px;
}

header #brand-line {
  height: 110px;
  background: #ba2954;
}

header #brand-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255,255,255,0.2);
  z-index: 20;
}

header #brand-line .dekor-container {
  width: 360px;
}

header #brand-line .prestige-container {
  height: 75px;
  position: absolute;
  left: 50px;
}

header #brand-line .social-container {
  position: absolute;
  right: 50px;
}

header #brand-line .social-container a {
  font-size: 24px;
  color: #ffffff;
}

header nav {
  height: 80px;
  background: #ffbe0b;
}

header nav ul,
header nav li,
header nav a {
  height: 100%;
}

header nav a {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #762009;
  padding: 0 12px;
}

header nav li.selected a,
header nav li:hover a {
  background: rgba(255,255,255,0.2);
  color: #ba2954;
}

header nav li.selected a::after {
  content: '';
  position: absolute;
  left: 8px;
  bottom: -2px;
  width: calc(100% - 16px);
  height: 5px;
  background: #ba2954;
  position: absolute;
  z-index: 20;
}

footer #impress-line p {
  text-align: center;
  font-size: 14px;
  padding: 30px 0;
}

footer #impress-line p a {
  color: #762009;
}

footer #contact-line {
  background: #ba2954;
  height: 95px;
}

footer #contact-line .logo-container {
  height: 100%;
  margin-right: auto;
  padding-left: 50px;
}

footer #contact-line .logo-container a:first-child {
  height: 80%;
  margin-right: 15px;
}

footer #contact-line .logo-container a:last-child {
  height: 50%;
}

footer #contact-line .button-container {
  margin-left: auto;
  padding-right: 50px;
}

footer #contact-line .button-container a {
  height: 45px;
  padding: 0 30px;
  background: #ffbe0b;
  color: #ba2954;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 15px;
}

footer #contact-line .button-container a span {
  font-weight: 700;
}

footer #contact-line .button-container a i {
  padding-right: 10px;
}

.flower-masked::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: url(../img/flowers.svg) center center repeat-x;
  background-size: auto 40px;
  z-index: 20;
}

main {
  padding-top: 190px;
}

main:not(.splash) #page-content {
  background: url(../img/flower-bottom.png) center bottom no-repeat;
  background-size: 100% auto;
  padding-bottom: 220px;
}

section#page-image-container {
  width: 100%;
  height: 240px;
  overflow: hidden;
}

main.splash section#page-image-container {
  height: calc(100vh - 250px);
}

section#go-down {
  height: 60px;
}

section#go-down i {
  color: #ba2954;
  font-size: 30px;
  -webkit-animation: pulsate 3s ease-out;
  -webkit-animation-iteration-count: infinite; 
  animation: pulsate 3s ease-out;
  animation-iteration-count: infinite;  
}

#main-timing {
  width: 550px;
  height: auto;
  position: absolute;
  bottom: 100px;
  background: rgba(255,255,255,0.9);
  z-index: 20;
  padding: 20px;  
}

#main-timing h2 {
  font-size: 18px;
  text-transform: uppercase;
  color: #ba2954;
}

#main-timing h3 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ba2954;
  line-height: 44px;
}

#midweek-course {
  width: calc(100% + 40px);
  margin: -20px 0 20px 0;
  height: auto;
  background: rgba(255,190,11,0.8);
  text-align: center;
  font-weight: 700;
  text-transform: uppercase;
  padding: 20px;
}

section#hurry {
  height: 280px;
  background: url(../img/hurry.jpg) center center no-repeat;
  background-size: cover;
}

section#hurry h2 {
  text-align: center;
  font-size: 36px;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

section#hurry p {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  margin: 15px 0;
}

section#hurry a {
  height: 50px;
  padding: 0 40px;
  text-transform: uppercase;
  border: #762009 2px solid;
  color: #762009;
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 auto;
  width: max-content;
  font-weight: 600; 
}

main.splash section#benefit {
  margin-top: -15px;
}

section#benefit {
  padding-bottom: 35px;
  overflow: hidden;
}

main:not(.splash) section#benefit {
  margin-top: -100px;
}

section#benefit h2 {
  height: 85px;
  text-align: center;
  background: #ffbe0b;
  color: #762009;
  font-size: 16px;
  text-transform: uppercase;
}

main.splash section#benefit h2 {
  background: #ba2954;
  color: #ffffff;  
}

section#benefit h2::after {
  content: '';
  background: rgba(255,255,255,0.2);
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: -5px;
  left: 0;
  z-index: 20;
}

section#benefit .image-container {
  height: 320px;
}

section#page-content {
  padding: 50px 0;
}

section#page-content h1 {
  text-transform: uppercase;
  color: #ba2954;
  font-size: 30px;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 30px;
}

section#page-content h2 {
  text-transform: uppercase;
  color: #ba2954;
  font-size: 20px;
  margin-bottom: 40px;
  border-bottom: #ffbe0b 5px solid;
  padding-bottom: 5px;
  width: max-content;
}

section#page-content h2::after {
  content: '';
  position: absolute;
  width: 1100px;
  bottom: -3px;
  left: 0;
  height: 1px;
  background: #ba2954;
  z-index: -1;
}

section#page-content h3 {
  text-transform: uppercase;
  color: #762009;
  font-size: 16px;
  margin-bottom: 40px;
  border-bottom: #762009 1px solid;
  padding-bottom: 5px;
}

main.contact section#page-content h3,
main.contact section#page-content p {
  text-align: center;
}

section#page-content p {
  font-size: 16px;
  text-align: justify;
  line-height: 24px;
  margin: 30px 0;
}

section#page-content p.info {
  font-size: 14px;
  line-height: 20px;
  font-style: italic;
}

section#page-content p.notfound {
  text-align: center;
  font-size: 300px;
  font-weight: 700;
  opacity: 0.05;
  line-height: 20px;
}

section#page-content p a {
  color: #ba2954;
  font-weight: 600;
  text-decoration: underline;
}

section#page-content strong.bold {
  font-weight: 600;
}

section#page-content strong.highlight {
  font-weight: 600;
  color: #ba2954;
}

section#page-content li {
  font-size: 16px;
  text-align: justify;
  line-height: 24px;
  margin: 15px 0;
}

section#page-content ul.arrows { 
  padding-left: 70px;
}

section#page-content ul.arrows li::before {
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;  
  content: '\f054';  
  position: absolute;
  top: 0;
  left: -50px;
  font-size: 24px;
  color: #ba2954;
}

section#page-content .registration-button-container {
  padding-top: 80px;
}

section#page-content .registration-button-container a {
  height: 60px;
  padding: 0 30px;
  text-transform: uppercase;
  background: #ba2954;
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  width: max-content;
  font-weight: 600;  
}

section#page-content p.highlight-box {
  background: #fffcf3;
  border: #ffbe0b 1px solid;
  border-left: #ba2954 5px solid;
  padding: 30px;
}

main.contact iframe {
  width: 100%;
  height: 400px;
  margin-top: -15px;
  margin-bottom: 30px;
}

main.contact .contact {
  padding-bottom: 30px;
}

main.contact .contact a {
  color: #ba2954;
  font-size: 20px;
  margin: 0 15px;
  font-weight: 600;
}

main.contact .contact a i {
  font-size: 40px;
  opacity: 0.5;
  margin-right: 5px;  
}

#registration-form {
  flex-direction: column;
  width: 100%;
  margin-top: 25px;
}

#registration-form .row {
  width: 100%;
  margin-top: 20px;
}

#registration-form .row:first-child {
  margin-top: 0;
}

#registration-form .row :first-child {
  margin-right: 10px;
}

#registration-form .row :last-child {
  margin-left: 10px;
}

#registration-form input {
  width: calc(50% - 10px);
}

#registration-form input,
#registration-form textarea {
  padding: 10px 20px;
  border: #ba2954 2px solid;
  font-size: inherit;
  font-family: inherit;
  font-weight: 400;
  color: #762009;
  -webkit-appearance: none;
  -moz-appearance: none;  
}

#registration-form input:invalid,
#registration-form textarea:invalid {
  background-color: #f2f1f1;
}

#registration-form textarea {
  width: calc(94% - 20px);
  height: 150px;
  resize: none;
}

#registration-form button {
  width: 6%;
  height: 150px;
  background: #ba2954;
  border: none;
  cursor: pointer;
  font-size: 36px;
  color: #ffffff;
}

#registration-form button.progress {
  opacity: 0.5;
  pointer-events: none;
}

#registration-form button.progress i {
  animation-name: spin;
  animation-duration: 2000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;   
}

#registration-form .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: rgba(186,41,84,0.9);
  z-index: 100;
  display: none;
  color: #ffffff;
  text-align: center;
  padding: 0 10px;  
}

#registration-form .mask .wrapper {
  height: 100%;
  background: none;
}

#registration-form .mask .wrapper i {
  font-size: 80px;
}

#registration-form .mask .wrapper div {
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

section#page-content .instructor {
  min-height: 420px;
  padding-top: 35px;
  margin-top: 50px;  
}

section#page-content .instructor .background-image-container {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 0;
  left: 5px;
}

section#page-content .instructor .background-image-container img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);  
  opacity: 0.08;  
}

section#page-content .instructor .image-container {
  width: 350px;
  height: 350px;
  border-left: #ba2954 5px solid;
  flex-grow: 0;
  flex-shrink: 0;
  margin-right: 30px;
}

section#page-content .instructor h2,
section#page-content .quote-photo h2,
section#page-content .quote-text h2 {
  border: none;
  padding: 0;
  margin-bottom: 30px;
  text-transform: none;
  font-weight: 600;
  font-size: 24px;
  color: #ffbe0b;
}

section#page-content .instructor h2 span,
section#page-content .quote-photo h2 span,
section#page-content .quote-text h2 span {
  font-weight: 400;
  font-size: 18px;
}

section#page-content .instructor h2::after,
section#page-content .quote-photo h2::after,
section#page-content .quote-text h2::after {
  display: none;
}

section#page-content .quote-photo .entry {
  background: #fffcf3;
  border: #ffbe0b 1px solid;
  border-left: #ba2954 5px solid;
  padding: 15px;  
}

section#page-content .quote-photo img {
  z-index: 10;
}

section#page-content .quote-photo .image {
  width: 210px;
  height: 210px;
  flex-shrink: 0;
}

section#page-content .quote-photo .quote {
  flex-shrink: 1;
  padding: 15px 15px 15px 30px;
}

section#page-content .quote-photo .image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 101%;
  background: url(../img/feedback.svg) center center no-repeat;
  background-size: cover;
  z-index: 20;
}

section#page-content .quote-photo .image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: rgba(255,252,243,0.7) url(../img/quote.svg) center center no-repeat;
  background-size: 45% auto;
  z-index: 30;
}

section#page-content .quote-photo .entry,
section#page-content .quote-text .entry {
  margin-top: 50px !important;
}

section#page-content .quote-photo h2,
section#page-content .quote-text h2 {
  margin-bottom: 15px;
}

section#page-content .quote-photo p,
section#page-content .quote-text p {
  margin: 15px 0;
}

section#page-content .quote-text h2::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 0;
  width: 22px;
  height: 22px;
  background: url(../img/quote.svg) center center no-repeat;
  background-size: 100% auto;
  z-index: 30;
}

section#page-content .quote-text h2 {
  padding-left: 30px;
}

#cookie {
  position: fixed;
  bottom: 80px;
  left: 50px;
  width: 450px;
  height: auto;
  background: rgba(186,41,84,0.9); 
  z-index: 2000;
  font-size: 13px;
  color: #ffffff;
  text-align: justify;
  padding: 20px;
  opacity: 0;
}

#cookie span {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}

#cookie i {
  z-index: 10;
  font-size: 100px;
  opacity: 0.2;
}

#cookie .content {
  padding-left: 20px;
}

#cookie .button {
  border: none;
  background: #ffbe0b;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  margin: 15px 0 0 0;
  margin-right: auto;
  color: #ba2954;
}

#respmb {
  position: absolute;
  top: auto;
  bottom: auto;
  right: 20px;
  color: #ffffff;
  font-size: 30px;
}

#respmc {
  position: absolute;
  bottom: 30px;
  left: calc(50% - 20px);
  color: #762009;
  font-size: 40px;
  z-index: 10;
  opacity: 1;
  width: max-content;
}

/* -------------------------------------------------------------------------- */

section#hitel1-container {
  padding: 50px 0 50px 0;
  background: #efefef;
}

section#hitel2-container,
section#hitel4-container {
  padding: 50px 0 50px 0;
}

section#hitel3-container {
  padding: 50px 0 50px 0;
  background: #ffbe0b;
}

section#hitel3-container .container::after {
  content: '';
  position: absolute;
  right: 100px;
  top: -30px;
  height: calc(100% + 60px);
  width: 100%;
  background: url(../img/check.svg) center right no-repeat;
  background-size: auto 100%;
  opacity: 0.2;  
}

section#hitel1-container .infobox,
section#hitel2-container .infobox {
  display: block;
  margin-top: 30px;
  background: rgba(255,255,255,0.5);
  border-radius: 5px;
  padding: 30px 30px 30px 65px;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(255,190,11,0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(255,190,11,0.6);  
}

section#hitel1-container .infobox h3,
section#hitel2-container .infobox h3 {
  font-style: italic;
  color: #ba2954;
  font-size: 18px;
  font-weight: 600;
  display: block;
  margin: 0 0 15px 0;
  border: none;
}

section#hitel1-container .infobox p,
section#hitel2-container .infobox p {
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  display: block;
  margin: 15px 0 0 0;  
}

section#hitel1-container .infobox i,
section#hitel2-container .infobox i {
  color: #ba2954;
  font-size: 60px;
  position: absolute;
  top: 10px;
  left: 20px;
  opacity: 0.2;
}

section#hitel1-container h2::after,
section#hitel2-container h2::after {
  display: none;
}

section#hitel1-container h2,
section#hitel2-container h2 {
  border: none;
  font-weight: 600;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 30px;
  padding-left: 40px;  
}

section#hitel1-container h2 span,
section#hitel2-container h2 span {
  color: #ba2954;
  font-size: 60px;
  position: absolute;
  top: -24px;
  left: 0;
  opacity: 0.2;
  font-weight: 700;
}

section#hitel1-container ul li,
section#hitel2-container ul li {
  font-size: 16px;
  margin-top: 10px;
  display: block;
  padding-left: 30px;
}

section#hitel1-container li::before,
section#hitel2-container li::before {
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;  
  content: '\f054';
  color: #ffbe0b;
  font-size: 24px;
  position: absolute;
  top: -1px;
  left: 0;
}

section#hitel3-container ul li {
  font-size: 16px;
  margin-top: 10px;
  display: block;
  padding-left: 40px;
  color: #ffffff;
}

section#hitel4-container ul li {
  font-size: 16px;
  margin-top: 10px;
  display: block;
  padding-left: 40px;
}

section#hitel4-container ul li a {
  color: inherit;
  text-decoration: underline;
}

section#hitel3-container li::before {
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;  
  content: '\f00c';
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  top: -1px;
  left: 0;
}

section#hitel4-container li::before {
  font-family: 'Font Awesome 5 Free'; 
  font-weight: 900;  
  content: '\f00c';
  color: #ffbe0b;
  font-size: 24px;
  position: absolute;
  top: -1px;
  left: 0;
}

section#hitel3-container h2 {
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;  
  border: none;
  margin-bottom: 30px;
}

section#hitel4-container h2 {
  text-transform: uppercase;
  color: #ea168d;
  font-weight: 600;
  font-size: 24px;
  border: none;
  margin-bottom: 30px;
}

section#hitel3-container h2::after,
section#hitel4-container h2::after {
  display: none !important;
}

.xmas-open {
  flex-direction: column;
  margin: 25px 0;
  padding: 20px 20px 70px 20px;
  background: #ba2954 url(../img/xmas-section.png) bottom center repeat-x;
  background-size: auto 50px;
}

.xmas-open h2 {
  text-align: center !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  text-transform: uppercase !important;
  border: none !important;
  margin: 0 !important;
  width: 100% !important;
  border: none !important;
}

.xmas-open h2::after {
  display: none;
}

.xmas-open h3 {
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 10px 0 !important;
  border: none !important;
}

.xmas-open h4 {
  text-align: center !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #ffffff !important;
  font-style: italic !important;
}