/*  TABLE OF CONTENTS
    ---------------------------
    *. @Import & Reset
    1. Generic styles
    2. Home
    3. More Informations
    4. Contact
    5. Footer/Copyright
    6. Media Queries
*/
/* ------------------------------------- */
/* *. Reset ............................ */
/* ------------------------------------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* ------------------------------------- */
/* *. Hover effects .................... */
/* ------------------------------------- */

/* Pulse */
@-webkit-keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes hvr-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.hvr-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-pulse:hover, .hvr-pulse:focus, .hvr-pulse:active {
  -webkit-animation-name: hvr-pulse;
  animation-name: hvr-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* Wobble Vertical */
@-webkit-keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes hvr-wobble-vertical {
  16.65% {
    -webkit-transform: translateY(8px);
    transform: translateY(8px);
  }
  33.3% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  49.95% {
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  66.6% {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
  }
  83.25% {
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.hvr-wobble-vertical {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.hvr-wobble-vertical:hover, .hvr-wobble-vertical:focus, .hvr-wobble-vertical:active {
  -webkit-animation-name: hvr-wobble-vertical;
  animation-name: hvr-wobble-vertical;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

::-webkit-scrollbar-track {
  border: 3px solid #6D074E;
  // border color does not support transparent on scrollbar
  // border-color: transparent;
  background-color: #6D074E;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #6D074E;
}

::-webkit-scrollbar-thumb {
  background-color: #FFD800;
  border-radius: 10px;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li {
  line-height: 1.5;
  margin-bottom: 10px;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ------------------------------------- */
/* Preloader styles .................... */
/* ------------------------------------- */
#loading {
  width: 100vw;
  height: 100vh;
  background: #20232D;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}
#loading #preloader {
  font-family: "Roboto Condensed", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  position: relative;
  width: 100%;
  height: 3rem;
  top: calc(50% - 1.5rem);
  text-align: center;
  margin: 0 auto;
  font-weight: 700;
}
#loading #preloader:after {
  content: "BUMP";
  /* Text under the circles */
  position: absolute;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4d515f;
  letter-spacing: 0.2rem;
  top: 3.5rem;
  width: 100%;
  left: 0;
  right: 0;
  height: 1px;
  text-align: center;
}
#loading #preloader span {
  position: absolute;
  border: 2px solid #4d515f;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
#loading #preloader span:nth-child(1) {
  width: 3rem;
  height: 3rem;
  left: calc(50% - 1.5rem);
  border-bottom: 2px solid #FFD800;
  z-index: 10;
  -webkit-animation: spin-1 1s infinite ease-in-out;
  -moz-animation: spin-1 1s infinite ease-in-out;
  animation: spin-1 1s infinite ease-in-out;
}
#loading #preloader span:nth-child(2) {
  left: calc(50% - 1.5rem);
  width: 3rem;
  height: 3rem;
}

@-webkit-keyframes spin-1 {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin-1 {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@keyframes spin-1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* ------------------------------------- */
/* 1. Generic styles ................... */
/* ------------------------------------- */
html {
  font-size: 62.5%;
}


body {
  background: #6d074e; /* Old browsers */
  background: url(../img/cat-yoga-white.svg) no-repeat, #6d074e;
  background-position: 42vw 62vh;
  background-size: 45%;
  font-family: "Roboto", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: normal;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0;
  height: 100%;
}

body, html {
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}

body, input, select, textarea {
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}

.global-overlay {
    background: rgba(109,7,78,0.2)
}

a {
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  cursor: pointer;
  text-decoration: none;
  color: #FFFFFF;
}
a:hover {
  color: #00af94;
  text-decoration: none !important;
  outline: none !important;
}
a:active, a:focus {
  outline: none !important;
  text-decoration: none !important;
  color: #FFFFFF;
}

button {
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  cursor: pointer;
}
button:hover, button:active, button:focus {
  outline: none !important;
  text-decoration: none !important;
  color: #2B2D35;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

p {
  font-family: "Roboto", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666666;
  font-weight: 400;
}

p.text-intro {
  color: #FFFFFF;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 3rem;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
  font-family: "Roboto", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 1.5rem 0;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  color: inherit;
}

h1 {
  font-size: 10rem;
  font-weight: 700;
  font-family: "Roboto Condensed", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;  
}

h2 {
  font-size: 5.5rem;
  font-weight: 700;
  font-family: "Roboto Condensed", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;     
}

h3 {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Roboto Condensed", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;   
}

h4 {
  font-size: 2rem;
}

h5 {
  font-size: 1.8rem;
}

h6 {
  font-size: 1.4rem;
}

sub {
  font-size: 0.8em;
  position: relative;
  top: 0.5em;
}

sup {
  vertical-align: middle;
  font-size: -webkit-xxx-large;
}

.clear {
  clear: both;
}

.display-none {
  display: none !important;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.opacity-0 {
  opacity: 0 !important;
  visibility: hidden !important;
}

.opacity-03 {
  opacity: 0.3 !important;
}

.opacity-1 {
  opacity: 1 !important;
  visibility: visible !important;
}

.index-999 {
  z-index: -999 !important;
}

/* ------------------------------------- */
/* 2. Home ............................. */
/* ------------------------------------- */
.light-btn {
  font-family: "Roboto", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  background: transparent;
  font-weight: 700;
  padding: 0.7em 2em;
  color: #FFFFFF;
  margin-right: 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 3px solid #FFFFFF;
  display: block;
  float: left;
}
.light-btn:hover {
  background: #FFFFFF;
  color: #2B2D35;
  border-color: #FFFFFF;
}

.action-btn {
  font-family: "Roboto", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
  background: #FFD800;
  font-weight: 700;
  padding: 0.7em 2em;
  color: #20232D;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  border: 3px solid #FFD800;
  display: block;
  float: left;
}
.action-btn:hover {
  background: #ffe866;
  color: #000000;
  border-color: #ffe866;
}
.action-btn:active, .action-btn:focus {
  background: #FFD800;
  color: #000000;
}

.global-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  overflow: visible;
  width: 100%;
  z-index: 0;
}
.global-overlay.dark-variant {
  background: rgba(45, 49, 56, 0.6);
}

.brand-logo {
  position: absolute;
  left: 10%;
  top: 5%;
  max-width: 100px;
}

#home {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 5;
  height: 100vh;
  transform-origin: middle left;
}
#home.minimize-left {
  -webkit-transform: perspective(460px) rotateY(8deg) translateX(-200px) scale(0.5);
  -moz-transform: perspective(460px) rotateY(8deg) translateX(-200px) scale(0.5);
  -ms-transform: perspective(460px) rotateY(8deg) translateX(-200px) scale(0.5);
  -o-transform: perspective(460px) rotateY(8deg) translateX(-200px) scale(0.5);
  transform: perspective(460px) rotateY(8deg) translateX(-200px) scale(0.5);
  opacity: 0.4 !important;
}
#home .content {
  position: relative;
  z-index: 0;
  left: 0;
  padding: 0;
  top: 50vh;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-height: 111rem;
  padding: 0 10%;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 1;
  visibility: visible;
}
#home .content .countdown-variant {
  font-size: 9rem;
}
#home .content nav {
  display: inline-block;
  width: 100%;
}

/* ------------------------------------- */
/* 3. More informations ................ */
/* ------------------------------------- */
#info-part {
  background: transparent;
  position: relative;
  overflow: hidden;
  z-index: 15;
  height: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 0;
  margin-top: 101vh;
/*left: 50px;
  width: calc(100% - 100px);*/
  margin-bottom: 51px;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#info-part .content {
  top: 0;
  width: 100%;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #FFFFFF;
}

#info-part .content h1, #info-part .content h2, #info-part .content h3, #info-part .content h4, #info-part .content h5, #info-part .content h6 {
  color: #2B2D35;
}
#info-part .content .photo-line .my-gallery {
  margin: 0;
}
#info-part .content .photo-line figure {
  padding: 0;
  margin: 0;
  -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  background: #FFFFFF;
}
#info-part .content .photo-line figure:last-child, #info-part .content .photo-line figure:nth-last-child(2) {
  margin-bottom: 0;
}
#info-part .content .photo-line figure a.box-picture {
  overflow: hidden;
  width: 100%;
  display: block;
  position: relative;
  border-bottom: 2px solid #00c8aa;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
#info-part .content .photo-line figure a.box-picture p {
  bottom: 50%;
  line-height: 1;
  height: auto;
  width: 100%;
  text-align: center;
  color: #FFFFFF;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1em;
  letter-spacing: 0.4rem;
  left: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  transform: translateY(50%);
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
}
#info-part .content .photo-line figure a.box-picture:hover {
  background: #000000;
}
#info-part .content .photo-line figure a.box-picture:hover img {
  opacity: 0.5;
}
#info-part .content .photo-line figure a.box-picture:hover p {
  opacity: 1;
}
#info-part .content .photo-line figure img {
  overflow: hidden;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -moz-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -ms-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#info-part .content .photo-line figure .photo-details {
  background: #FFFFFF;
  padding: 4rem 2rem;
  text-align: left;
}
#info-part .content .photo-line figure .photo-details h4 {
  font-weight: 300;
  margin-bottom: 0.5rem;
}
#info-part .content .photo-line figure .photo-details h5 {
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

.widget-angle-top-right {
  position: absolute;
  top: 0;
  right: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #00c8aa;
  font-size: 1em;
  border-top: 50px solid #2B2D35;
  border-left: 50px solid transparent;
}
.widget-angle-top-right span.icon-text {
  font-weight: 700;
  position: absolute;
  top: -47px;
  left: -22px;
}

.widget-angle-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #00c8aa;
  font-size: 1em;
  border-bottom: 50px solid #2B2D35;
  border-left: 50px solid transparent;
}
.widget-angle-bottom-right span.icon-text {
  font-weight: 700;
  position: absolute;
  top: 23px;
  left: -22px;
}

.widget-angle-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #00c8aa;
  font-size: 1em;
  border-bottom: 50px solid #2B2D35;
  border-right: 50px solid transparent;
}
.widget-angle-bottom-left span.icon-text {
  font-weight: 700;
  position: absolute;
  top: 23px;
  left: 7px;
}

.widget-angle-top-left {
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: none;
  padding: 0;
  color: #00c8aa;
  font-size: 1em;
  border-top: 50px solid #2B2D35;
  border-right: 50px solid transparent;
}
.widget-angle-top-left span.icon-text {
  font-weight: 700;
  position: absolute;
  top: -47px;
  left: 7px;
}

.box-info {
  padding: 0;
  text-align: left;
}

.box-info p {
    margin: 0 0 1.5rem 0;
}

.box-info-light {
  padding: 5rem 18rem;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  background: #FFFFFF;
}
.box-info-light span.icon {
  color: #2B2D35;
  font-size: 8rem;
  line-height: 1.4;
  display: inline-block;
  padding: 2px;
}
.box-info-light span.icon.icon-clock {
  -webkit-animation: clocky 2s infinite linear;
  -moz-animation: clocky 2s infinite linear;
  animation: clocky 2s infinite linear;
}
.box-info-light a {
    font-weight: 700;
}

.box-info-light ul {
    color: #424551;
    margin: 0 10px 40px 20px;
}
.box-info-light ul li {
    color: #424551;
    font-weight: 700;
    list-style-type: square;
}
.box-info-light h3 {
  font-family: "Roboto", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
}

.box-info-light.imprint {
  background: #6D074E;
  -webkit-box-shadow: 0 15px 27px #53053C inset;
  box-shadow: 0 15px 27px #53053C inset;
  -moz-box-shadow: 0 15px 27px #53053C inset;
}

.box-info-light.imprint p,.box-info-light.imprint h2,.box-info-light.imprint h3,.box-info-light.imprint h4,.box-info-light.imprint ul li {
  color: #ffffff !important;
}

.box-info-dark-bquote {
  padding: 2rem;
  border: none;
  background: #FFD800;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}

.box-info-dark {
  padding: 5rem 18rem;
  border: none;
  background: #FFD800;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.box-info-dark span.icon {
  color: #2B2D35;
  font-size: 8rem;
  line-height: 1.4;
  display: inline-block;
  padding: 2px;
}
.box-info-dark a {
    color: #6D074E;
    font-weight: 700;    
}

.box-info-dark a.light-btn {
    color: #424551; 
}

.box-info-dark ul {
    color: #424551;
    margin: 0 10px 40px 20px;
}
.box-info-dark ul li {
    color: #424551;
    font-weight: 700;
    list-style-type: square;    
}
.box-info-dark h3 {
  color: #2B2D35 !important;
  font-family: "Roboto", "Helvetica Neue", "Lucida Grande", Arial, Verdana, sans-serif;
}
.box-info-dark p {
  color: #424551;
}

@-webkit-keyframes clocky {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes clocky {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@keyframes clocky {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* ------------------------------------- */
/* 4. Contact .......................... */
/* ------------------------------------- */
.bottom-part {
  background: #2B2D35 !important;
}

.contact-box {
  padding: 6rem 5rem;
}
.contact-box h4 {
  color: #FFFFFF !important;
}
.contact-box p {
  color: #FFFFFF;
}
.contact-box:first-child {
  text-align: right;
}

.phone-mail-link {
  color: #ffe866;
  font-weight: bold;
}

/* ------------------------------------- */
/* 5. Footer/Copyright ................. */
/* ------------------------------------- */
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50px;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons {
  position: absolute;
  left: 0;
  bottom: 0;
  margin-left: 0;
  margin-bottom: 0;
  display: block;
  z-index: 9;
  width: 50%;
  overflow: hidden;
  white-space: nowrap;
  -webkit-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
}
.social-icons i {
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
}
.social-icons a {
  color: rgba(255, 255, 255, 0.7);
  width: 220px;
  line-height: 50px;
  letter-spacing: 0;
  background: transparent;
  font-size: 1em;
  font-weight: 300;
  height: 50px;
  display: inline-block;
  text-align: center;
  float: left;
  margin-right: 0;
  border: none;
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
}
.social-icons a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.social-icons a:hover i {
  color: white;
}

.copyright {
  position: absolute;
  right: 25px;
  bottom: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 50px;
}

.blog {
  position: absolute;
  left: 40px;
  bottom: -1px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 50px;
}

/* ------------------------------------- */
/* VARIANT YOUTUBE ..................... */
/* ------------------------------------- */
.mbYTP_wrapper {
  width: 100vw !important;
  min-width: 0 !important;
  left: 0 !important;
}

#player-nav {
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  z-index: 10;
}
#player-nav li {
  display: inline-block;
  background: transparent;
  height: 50px;
  width: 50px;
  line-height: 50px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}
#player-nav li:hover {
  background: rgba(255, 255, 255, 0.1);
}
#player-nav li:hover a {
  color: #FFFFFF;
}
#player-nav li a {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1em;
  color: rgba(255, 255, 255, 0.7);
}


/* ------------------------------------- */
/* GALLERY PHOTOS ...................... */
/* ------------------------------------- */
.pswp__bg {
  background: #20232D;
}

.pswp__caption h4 {
  margin-bottom: 10px !important;
}

/* ------------------------------------- */
/* 6. Media Queries .................... */
/* ------------------------------------- */
/* X-Large Devices, X-Wide Screens */
@media only screen and (min-width: 1800px) {
  h1 {
    font-size: 10rem;
    font-weight: 700;
  }

  #home .content .countdown-variant {
    font-size: 6rem;
  }

  .box-info-light, .box-info-dark {
    padding: 4rem 6rem;
  }
}

/* Large Devices, Wide Screens */
@media only screen and (max-width: 1599px) {
  h1 {
    font-size: 7rem;
    font-weight: 700;
  }

  #home .content .countdown-variant {
    font-size: 6rem;
  }

  .box-info-light, .box-info-dark {
    padding: 4rem 6rem;
  }
}
/* Notebook devices */
@media only screen and (max-width: 1199px) {
  body {  
    background-position: 48vw 59vh;
    background-size: 46%;
  }     
  h1 {
    font-size: 6rem;
    font-weight: 700;
  }

  #home .content .countdown-variant {
    font-size: 5rem;
  }

  .box-info {
    padding: 0;
  }

  .box-info-light, .box-info-dark {
    padding: 3rem;
  }
}
/* Medium Devices, Desktops */
@media only screen and (max-width: 1024px) {
  body {  
    background-position: 65vw 70vh;
    background-size: 33%;
  }       
  #home .content .countdown-variant {
    font-size: 4rem;
  }

  .brand-logo {
    position: relative;
    left: auto;
    top: auto;
    margin: 2rem auto;
    display: block;
  }

  .light-btn {
    padding: 0.7em 0;
    margin-right: 0;
    float: none;
    margin: 0 auto;
    margin-bottom: 15px;
    max-width: 50%;
    text-align: center;
  }

  .action-btn {
    padding: 0.7em 0;
    float: none;
    margin: 0 auto;
    max-width: 50%;
    text-align: center;    
  }

  #home {
    position: relative;
    width: 100%;
    height: auto;
    padding: 7rem 0 9rem;
  }
  #home .content {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: auto;
    text-align: center;
  }
  #home.minimize-left {
    -webkit-transform: perspective(0) rotateY(0) translateX(0) scale(1);
    -moz-transform: perspective(0) rotateY(0) translateX(0) scale(1);
    -ms-transform: perspective(0) rotateY(0) translateX(0) scale(1);
    -o-transform: perspective(0) rotateY(0) translateX(0) scale(1);
    transform: perspective(0) rotateY(0) translateX(0) scale(1);
    opacity: 1 !important;
  }

  .social-icons {
    left: 0;
    bottom: 0;
    margin-left: 0;
    margin-bottom: 0;
  }

  #info-part {
    margin-top: 0;
    margin-bottom: 0;
    left: 0;
    width: 100%;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
  }

  footer {
    background: #2B2D35;
    position: relative;
  }
}
/* Small Devices, Tablets */
@media only screen and (max-width: 768px) {
  body {  
    background-position: 70vw 60vh;
    background-size: 30%;
  }       
  h1 {
    font-size: 4rem;
    font-weight: 700;
  }

  #home .content .countdown-variant {
    font-size: 3.5rem;
  }

  .light-btn {
    max-width: 70%;
    min-width: 60%;
  }

  .action-btn {
    max-width: 70%;
    min-width: 60%;
  }

  #subscribe #notifyMe .form-group .form-control {
    width: 100%;
    float: none;
    margin-bottom: 2rem;
    border: 3px solid #FFFFFF;
  }

  #subscribe #notifyMe .form-group button.submit {
    width: 100%;
    float: none;
    border: 3px solid #FFFFFF;
  }

  .contact-box {
    text-align: left !important;
  }
  .contact-box:first-child {
    padding-bottom: 0;
  }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width: 480px) {
  body {  
    background-image: none;
}    
  #home .content {
    padding: 0 2rem;
  }
  #home.minimal-phone {
    height: 100vh;
  }

  .newsletter-block {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  h1.text-intro {
    font-size: 3rem;
  }

  #home .content .countdown-variant {
    font-size: 3rem;
  }

  p.text-intro {
    font-size: 1.5rem;
  }

  .light-btn {
    max-width: 80%;
    min-width: 70%;
  }

  .action-btn {
    max-width: 80%;
    min-width: 70%;
  }

  .bottom-home {
    position: relative;
    height: auto;
    text-align: center;
    margin-top: 7rem;
  }

  footer {
    height: auto;
    text-align: center;
  }

  .social-icons {
    position: relative;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    -webkit-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
    -moz-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
    -ms-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
    -o-transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
    transition: all 0.7s cubic-bezier(0.42, 0, 0.58, 1);
  }
  .social-icons i {
    color: white;
  }
  .social-icons a {
    color: white;
    float: none;
  }
  .social-icons a:hover {
    background: transparent;
  }

  .copyright {
    position: relative;
    right: auto;
  }

  #subscribe .block-message {
    padding: 5px 2px;
  }
  #subscribe p.notify-valid {
    font-size: 12px;
  }
}
/* Only for tablet in landscape mode */
/* Only for phone in landscape mode */
@media screen and (max-device-width: 667px) and (orientation: landscape) {
  #home {
    padding: 50px 0 100px;
  }

  h1.text-intro {
    font-size: 30px;
  }
}
