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

body {
  color: #3a4040;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 400;
  overflow-x: hidden;
  background: #ffffff url(../img/background.jpg) center top no-repeat fixed;
  background-size: cover;
}

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;
}

*: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;
}

.vs {
  align-items: flex-start;
}

.noscroll {
  overflow-y: hidden;
}

.fixed {
  position: fixed;  
}

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

.pt50 {
  padding-top: 50px;
}

.pb50 {
  padding-bottom: 50px;
}

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

@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: #0a4490;
  z-index: 1000;
}

#preloader img {
  height: 50px;
  -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);
}

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

.button {
  text-transform: uppercase;
  font-weight: 500;
  padding: 10px 40px;
  border-width: 2px;
  border-style: solid;
}

.button.center {
  margin-top: 30px;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);  
  display: inline-block;
}

.button.small {
  padding: 8px 20px;
  font-size: 12px;
}

.button i {
  margin-right: 5px;
}

.button.bl {
  color: #0a4490;
  border-color: #0a4490;
}

.button.wht {
  color: #ffffff;
  border-color: #ffffff;
}

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

@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: 160px;
}

header .logo-container {
  height: 74%;
}

header .prestige-container {
  position: absolute;
  left: 50px;
  height: 60%;
  opacity: 0.7;
}

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

header .social-container a {
  margin: 3px 0;
  color: #0a4490;
}

header .social-container a.facebook i {
  font-size: 28px;
}

header .social-container a.instagram i {
  font-size: 30px;
}

nav {
  width: 100%;
  height: 60px;
  background: rgba(58,64,64,0.1);
}

nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 0 5px rgba(0,0,0,0.4);
  background: #000000;
}

nav.sticky a,
nav.sticky a.selected {
  color: #ffffff;
}

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

nav li {
  margin: 0 10px;
}

nav a {
  color: #000000;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
}

nav li.selected::after {
  content: '';
  width: 100%;
  height: 5px;
  background: #0a4490;
  top: -2px;
  position: absolute;
  display: block;
}

nav.sticky li.selected::after {
  background: #ffffff;
}

nav:not(.sticky) li.selected a {
  color: #0a4490;
}

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

footer {
  height: 55px;
  z-index: 50;
  margin-top: -55px; 
}

footer p {
  font-size: 14px;
  color: #0a4490;
}

section#footer {
  position: fixed;
  left: 0;
  bottom: -95px;
  z-index: 500;
  background: #000000;
  height: 95px;
  width: 100%;
  padding: 0 50px;
}

section#footer.sticky {
  bottom: 0;
}

section#footer.sticky.bottom {
  bottom: 55px;
}

section#footer .logos {
  margin-right: auto;
  height: 50%;
}

section#footer .buttons {
  margin-left: auto;
}

section#footer .button {
  margin-left: 10px;
  background: #0a4490;
  border: none;
  color: #ffffff;
}

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

section.pageimage {
  width: 100%;
}

section.pageimage-main {
  height: 680px;
  max-height: calc(100vh - 320px);
  min-height: 500px;
}

section.pageimage-default {
  height: 370px;
}

section.pageimage .image-container {
  width: calc(50% + 200px);
  flex-grow: 0;
  flex-shrink: 0;
  overflow: hidden;
}

section.pageimage .image-container img {
  z-index: 50;
}

section.pageimage .image-container img.bw {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);  
  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);
}

section.pageimage .image-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 200px;
  height: 100%;
  z-index: 100;
  background: rgba(10,68,144,0.5);
}

section.pageimage .info-container {
  flex-grow: 1;
  background: #0a4490 url(../img/background-bl.jpg) right center no-repeat;
  background-size: cover;
  height: 100%;
  padding: 0 50px;
  color: #ffffff;
}

section.pageimage h1 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

section.pageimage-main h1 span {
  display: block;
  font-weight: 300;
  font-size: 60px;
}

section.pageimage-main h1 {
  font-size: 50px;
  line-height: 60px;
}

section.pageimage-default h1 {
  font-size: 40px;
}

section.pageimage-main p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 300;
  margin: 30px 0;
}

section.pageimage-default h2,
section.pageimage-main h3 {
  background: rgba(16,85,174,0.5);
  padding: 15px 25px;
  width: calc(100% + 50px);
}

section.pageimage-main h3 {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1px;
}

section.pageimage-main h3 span {
  display: block;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
}

section.pageimage-default h2 {
  font-size: 22px;
  font-weight: 300;
  padding-top: 8px;
  padding-bottom: 8px;
}

main {
  padding-bottom: 145px;
}

section#content :first-child {
  margin-top: 0;
}

section#content :last-child {
  margin-bottom: 0;
}

section#content h2 {
  font-size: 30px;
  color: #0a4490;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 20px 15px 20px;
  border-bottom: #bfc0c0 1px solid;
  width: max-content;
  margin: 0 auto 30px auto;
}

section#content h2::after {
  content: '';
  width: 50%;
  height: 5px;
  background: #0a4490;
  bottom: -3px;
  position: absolute;
  display: block;
}

section#content p {
  font-size: 18px;
  line-height: 26px;
  color: #3a4040;
  font-weight: 400;
  text-align: justify;
  margin: 30px 0;
}

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

section#content p a {
  color: #0a4490;
  font-weight: 500;
}

section#content p strong.bold {
  font-weight: 500;
  color: #000000;
}

section#content p.center {
  text-align: center;
}

section#highlight {
  overflow: hidden;
}

section#highlight .image-container {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

section#highlight h3 {
  width: 100%;
  height: 50px;
  background: #0a4490;
  font-size: 24px;
  padding: 0 20px;
  color: #ffffff;
  font-weight: 400;
  text-transform: uppercase;
}

section#highlight h3 span {
  position: absolute;
  width: 60px;
  height: 60px;
  top: -5px;
  right: -5px;
  background: #000000;
}

section#highlight h3 span i {
  color: #ffffff;
  font-size: 30px;
}

section#highlight p {
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  opacity: 0.8;
  margin-top: 30px;
  color: #3a4040;
}

section#hurry {
  width: 100%;
  height: 320px;
  background: rgba(10,68,144,0.9);
  overflow: hidden;
}

section#hurry img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

section#hurry h4 {
  font-size: 40px;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 300;
}

section#hurry a {
  margin-top: 20px;
}

section#hurry p {
  color: #ffffff;
}

section#tematics h2 {
  font-size: 30px;
  color: #0a4490;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 180px 15px 0;
  border-bottom: #bfc0c0 1px solid;
  width: max-content;
  margin: 0 0 30px 360px;
}

section#tematics h2::after {
  content: '';
  width: 180px;
  height: 5px;
  background: #0a4490;
  bottom: -3px;
  position: absolute;
  display: block;
  left: 0;
}

section#tematics .image-container {
  width: 400px;
  margin-right: 70px;
  flex-shrink: 0;
}

section#tematics .list-container {
  margin-left: -110px;
}

section#tematics li {
  font-size: 18px;
  line-height: 26px;
  color: #3a4040;
  font-weight: 400;
  text-align: justify;  
}

section#tematics li:not(:last-child) {
  margin-bottom: 30px;
}

section#tematics .image-container .front,
section#tematics .image-container .back {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 400px;  
}

section#tematics .image-container {
  z-index: -1;
  overflow: hidden;
}

section#tematics .image-container img {
  object-position: left top;
}

section#tematics .image-container .back {
  z-index: 10;
  opacity: 0.1;
}

section#tematics .image-container .front {
  z-index: 20;
  left: -110px;
  overflow: hidden;
}

section#tematics .image-container .front img {
  margin-left: 110px;
}

section#tematics .image-container .back img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);  
}

#timing .entry,
#pricing .entry,
#contacting .entry {
  background: rgba(58,64,64,0.1);
  padding: 40px 10px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#pricing h3,
#pricing h4,
#pricing h5,
#timing h3,
#timing h4,
#timing h5 {
  letter-spacing: 1px;
  color: #0a4490;
  text-transform: uppercase; 
}

#pricing h3,
#timing h3 {
  font-size: 24px;
  font-weight: 500;
}

#pricing h3 {
  font-size: 40px;
}

#pricing h4,
#timing h4 {
  font-size: 22px;
  font-weight: 400;
}

#pricing h5,
#timing h5 {
  font-size: 16px;
  font-weight: 400;
}

#timing .time:not(:last-child) {
  margin-bottom: 10px;
}

#timing .entry.full::before {
  content: 'Megtelt';
  text-transform: uppercase;
  font-size: 30px;
  color: #ffffff;
  font-weight: 500;
  background: rgba(10,68,144,0.9);
  padding: 5px 15px;
  position: absolute;
  width: 80%;
  text-align: center;
  display: flex;
  justify-content: center;
}

#timing .entry.full h3,
#timing .entry.full h4,
#timing .entry.full h5 {
  color: #3a4040;
  opacity: 0.3;  
}

section#contact .entry {
  margin-top: 0;
  margin-bottom: 0;
}

section#contact h2 {
  font-size: 18px;
  color: #0a4490;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0 0 5px 0;
  border-bottom: #bfc0c0 1px solid;
  width: 360px;
  margin: 0 0 10px 0;
}

section#contact h2:not(:first-child) {
  margin-top: 30px;
}

section#contact h2::after {
  content: '';
  width: 180px;
  height: 3px;
  background: #0a4490;
  bottom: -2px;
  position: absolute;
  display: block;
  left: 0;
}

section#contact a {
  color: #3a4040;
}

section#contact iframe {
  width: 100% !important;
  height: 100% !important;
}

#contacting a {
  color: #0a4490;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#contacting a span {
  position: absolute;
  bottom: -25px;
  font-size: 50px;
}

#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.full-width {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#registration-form select {
  width: 100%;
  margin: 0 !important;
  background-image: url(../img/select.svg);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: auto 50%;
  padding-right: 30px !important;
}

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

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

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

#registration-form select:invalid {
  color: #343433;
  font-style: italic;
  font-weight: 300;  
}

#registration-form select:invalid option {
  font-weight: 400;
  font-style: normal;
  background: #ffffff;
}

#registration-form button {
  width: 6%;
  height: 150px;
  background: #0a4490;
  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(0,0,0,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#instructor .entry .image {
  width: 50%;
  flex-shrink: 0;
}

section#instructor .entry h2 {
  background: rgba(10,68,144,0.5);
  padding: 20px 20px 20px 40px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 24px;
  margin-left: -20px;
  width: calc(50% + 20px);
}

section#instructor .entry h2 span {
  font-size: 14px;
  font-weight: 300;
}

section#instructor .entry p {
  font-size: 18px;
  line-height: 26px;
  color: #3a4040;
  font-weight: 400;
  text-align: justify;
  margin: 30px 0;
  padding: 0 20px;
}

.quote-photo .image {
  width: 250px;
  height: 250px;
  flex-shrink: 0;
  z-index: 10;
}

.quote-photo .quote {
  padding-left: 50px;
  flex-shrink: 1;
}

.quote-photo .image:after {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 40px;
  height: 100%;
  background: rgba(10,68,144,0.5) url(../img/quote.svg) top 12px center no-repeat;
  background-size: 60% auto;
  z-index: 30;
}

.quote-photo li,
.quote-text li {
  margin-bottom: 30px;
}

.quote-photo h2,
.quote-text h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 24px;
  color: #0a4490;
  margin: 0;
  background: none;
}

.quote-photo h2 span,
.quote-text h2 span {
  margin-left: 5px;
  font-weight: 300;
  font-size: 14px;
}

.quote-photo p,
.quote-text p {
  font-size: 18px;
  line-height: 26px;
  color: #3a4040;
  font-weight: 400;
  text-align: justify;
  margin: 15px 0;
}

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

.quote-text h2 {
  padding-left: 30px;
}

.quote-text p {
  font-size: 16px;
  line-height: 24px;
}

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

#cookie {
  position: fixed;
  bottom: 80px;
  left: 50px;
  width: 450px;
  height: auto;
  background: rgba(10,68,144,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: #000000;
  font-size: 14px;
  padding: 8px 20px;
  margin: 15px 0 0 0;
  margin-right: auto;
  color: #ffffff;
}

#highlight-fashion .image {
  width: 100%;
  height: 460px;
  overflow: hidden;
  margin-bottom: -60px;
}

#highlight-fashion .image img {
  z-index: 10;
}

#highlight-fashion h2 {
  background: rgba(0,0,0,0.9);
  padding: 15px 35px;
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 0 0 -25px;
  z-index: 30;
}

#highlight-fashion p {
  font-size: 16px;
  line-height: 24px;
  text-align: justify;
  margin-top: 30px;
}

#highlight-fashion .button {
  background: #0a4490;
  border-color: #0a4490;
  color: #ffffff;
}

.xmas-open {
  flex-direction: column;
  margin: 25px 0;
  padding: 20px 20px 70px 20px;
  background: #0a4490 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;
}

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

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