
@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ------------------------------------------------*/
/* Template Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/

:root {
  --text-color: #121212;
  --bg-color: #f9f9f9;
  --alt-text-color: #f9f9f9;
}

/* ------------------------------------------------*/
/* Base CSS Styles Start */
/* ------------------------------------------------*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

button:active, button:focus {
  outline: none !important;
}

button::-moz-focus-inner {
  border: 0 !important;
}

input::-moz-focus-inner {
  border: 0 !important;
}

::-moz-selection {
  background-color: #ddd7cc;
  color: #0a0a0a;
  text-shadow: none;
}

::selection {
  background-color: #ddd7cc;
  color: #0a0a0a;
  text-shadow: none;
}

::-webkit-scrollbar {
  display: none;
  width: 5px;
  background: #abaeaa;
}

@media only screen and (min-width: 768px) {
  ::-webkit-scrollbar {
    display: block;
  }
}

::-webkit-scrollbar-track {
  border-radius: 20px;
  background-color: #abaeaa;
}

::-webkit-scrollbar-thumb {
  background-color: #5a2020;
  border-radius: 10px;
}

html {
  font-family: sans-serif;
  font-size: 62.5%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  position: relative;
  min-width: 320px;
  overflow-x: hidden !important;
  font: normal 400 1.4rem/1.6 'Mulish', sans-serif;
  color: #444444;
  background-color: #f5efe3;
}

@media only screen and (min-width: 1400px) {
  body {
    font-size: 1.6rem;
  }
}

section {
  position: relative;
  min-width: 320px;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: 0;
  color: #0a0a0a;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.overflow-hidden {
  overflow: hidden !important;
}

.fullheight {
  position: static;
  height: auto;
}

.bigger {
  padding-top: 8rem;

  font-size: 3em  !important;
}

@media only screen and (max-width: 768px) {
  .bigger {
    padding-top: 4rem;
    font-size: 2.5em !important;
  }
}

@media only screen and (min-width: 1200px) {
  .fullheight {
    position: relative;
    height: 100%;
  }
}

.fullheight-mobile {
  position: relative;
  height: 100%;
}

.color-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.color-layer-mobile {
  display: block;
}

@media only screen and (min-width: 1200px) {
  .color-layer-mobile {
    display: none;
  }
}

.color-layer-medium {
  background-color: rgba(0, 0, 0, 0.4);
}

.color-layer-dark {
  background-color: rgba(0, 0, 0, 0.6);
}

.background-light {
  background-color: #ffffff;
}

.background-mute {
  background-color: #f5efe3;
}

.background-medium {
  background-color: #9e2525;
}

.contacts p {
  color: var(--text-color);
}

.background-dark {
  background-color: var(--bg-color);
}

.bg-image-bottom {
  background-repeat: no-repeat;
  background-position: bottom center;
  -moz-background-size: cover;
  background-size: cover;
  background-image: url('../img/backgrounds/bg-about-quote.svg');
}

.text-align-left {
  line-height: 1.2;
}

@media only screen and (min-width: 1200px) {
  .text-align-left {
    text-align: left;
  }
}

.text-align-right {
  line-height: 1.2;
}

@media only screen and (min-width: 1200px) {
  .text-align-right {
    text-align: right;
  }
}

.rotate-object {
  display: none;
}

@media only screen and (min-width: 1200px) {
  .rotate-object {
    display: block;
    position: fixed;
    bottom: 190px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    z-index: 12;
  }

  .rotate-object img {
    display: block;
    opacity: 1;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }

  .rotate-object.is-hidden img {
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    -moz-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
  }
}

@media only screen and (min-width: 1400px) {
  .rotate-object {
    bottom: 280px;
    width: 140px;
    height: 140px;
  }
}

.showreel-trigger {
  display: block;
  position: relative;
}


/* ------------------------------------------------*/
/* Base CSS Styles End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Loading Animation Start */
/* ------------------------------------------------*/
body .rotate-object {
  opacity: 0;
}

body .main .main__header,
body .main .main__dataline {
  opacity: 0;
}

body .main .main__headline .loading-el {
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
}

body .main .main__media {
  opacity: 0;
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}

body.loaded .main .main__media {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s;
  transition: opacity 0.6s ease-in-out, -webkit-transform 0.6s;
  -o-transition: transform 0.6s, opacity 0.6s ease-in-out;
  -moz-transition: transform 0.6s, opacity 0.6s ease-in-out, -moz-transform 0.6s;
  transition: transform 0.6s, opacity 0.6s ease-in-out;
  transition: transform 0.6s, opacity 0.6s ease-in-out, -webkit-transform 0.6s, -moz-transform 0.6s;
}

body.loaded .main .main__headline .loading-el {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

body.loaded .main .main__headline .loading-el-1 {
  -webkit-transition: opacity 0.4s 0.7s, -webkit-transform 0.4s 0.7s;
  transition: opacity 0.4s 0.7s, -webkit-transform 0.4s 0.7s;
  -o-transition: opacity 0.4s 0.7s, transform 0.4s 0.7s;
  -moz-transition: opacity 0.4s 0.7s, transform 0.4s 0.7s, -moz-transform 0.4s 0.7s;
  transition: opacity 0.4s 0.7s, transform 0.4s 0.7s;
  transition: opacity 0.4s 0.7s, transform 0.4s 0.7s, -webkit-transform 0.4s 0.7s, -moz-transform 0.4s 0.7s;
}

body.loaded .main .main__headline .loading-el-2 {
  -webkit-transition: opacity 0.4s 0.8s, -webkit-transform 0.4s 0.8s;
  transition: opacity 0.4s 0.8s, -webkit-transform 0.4s 0.8s;
  -o-transition: opacity 0.4s 0.8s, transform 0.4s 0.8s;
  -moz-transition: opacity 0.4s 0.8s, transform 0.4s 0.8s, -moz-transform 0.4s 0.8s;
  transition: opacity 0.4s 0.8s, transform 0.4s 0.8s;
  transition: opacity 0.4s 0.8s, transform 0.4s 0.8s, -webkit-transform 0.4s 0.8s, -moz-transform 0.4s 0.8s;
}

body.loaded .main .main__headline .loading-el-3 {
  -webkit-transition: opacity 0.4s 0.9s, -webkit-transform 0.4s 0.9s;
  transition: opacity 0.4s 0.9s, -webkit-transform 0.4s 0.9s;
  -o-transition: opacity 0.4s 0.9s, transform 0.4s 0.9s;
  -moz-transition: opacity 0.4s 0.9s, transform 0.4s 0.9s, -moz-transform 0.4s 0.9s;
  transition: opacity 0.4s 0.9s, transform 0.4s 0.9s;
  transition: opacity 0.4s 0.9s, transform 0.4s 0.9s, -webkit-transform 0.4s 0.9s, -moz-transform 0.4s 0.9s;
}

body.loaded .main .main__headline .loading-el-4 {
  -webkit-transition: opacity 0.4s 1s, -webkit-transform 0.4s 1s;
  transition: opacity 0.4s 1s, -webkit-transform 0.4s 1s;
  -o-transition: opacity 0.4s 1s, transform 0.4s 1s;
  -moz-transition: opacity 0.4s 1s, transform 0.4s 1s, -moz-transform 0.4s 1s;
  transition: opacity 0.4s 1s, transform 0.4s 1s;
  transition: opacity 0.4s 1s, transform 0.4s 1s, -webkit-transform 0.4s 1s, -moz-transform 0.4s 1s;
}

body.loaded .main .main__header,
body.loaded .main .main__socials,
body.loaded .main .main__dataline {
  opacity: 1;
  -webkit-transition: opacity 0.8s  0.8s;
  -o-transition: opacity 0.8s 0.8s;
  -moz-transition: opacity 0.8s 0.8s;
  transition: opacity 0.8s 0.8s;
}

body.loaded .rotate-object {
  opacity: 1;
  -webkit-transition: opacity 0.8s 1.4s;
  -o-transition: opacity 0.8s 1.4s;
  -moz-transition: opacity 0.8s 1.4s;
  transition: opacity 0.8s 1.4s;
}

/* ------------------------------------------------*/
/* Loading Animation End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Typography Start */
/* ------------------------------------------------*/
h1 {
  display: inline-block;
  position: relative;
  font: normal 500 5rem/1 'Poppins', serif;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-top: 1.6rem;
}

h1.light {
  color: var(--text-color);
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 6rem;
  }
}

@media only screen and (min-width: 1400px) {
  h1 {
    font-size: 8rem;
  }
}

.headline__subtitle {
  display: block;
  font: normal 400 3.4rem/1.6 'Dancing Script', cursive;
  color: rgba(255, 255, 255, 0.8);
}

.green-side {
  overflow-x: hidden;
}


@media screen and (max-width: 1200px ) {
  .green-side {
    min-height: 80rem;
  }


  .mobile {
    height: 100%;
  }

  .contacts {


    flex-direction: column;
    align-items: center;
  }
}

.treno-gri {
  rotate: -25deg;
  position: relative;
  left: 20%;
  animation: fly 5s linear infinite;
}

.banner-gri {
  rotate: -25deg;
  position: absolute;
  left: 1%;
  width: 190px;
}

.dialog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;

  strong {
    font-weight: bold;
  }
}

@media screen and (max-width: 400px) {
  width: 100%;
  max-width: 300px;
}

.section__subtitle {
  display: block;
  font: normal 400 3.4rem/1.2 'Dancing Script', cursive;
  color: #0a0a0a;
  margin-top: 1.7rem;
}

.section__text {
  font: normal 400 1.4rem/1.6 'Mulish', sans-serif;
  color: #444444;
  margin-top: 1.9rem;
}

.section__text a,
.section__text span {
  font-weight: 500;
  color: #0a0a0a;
}

.section__text a {
  text-decoration: underline;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -moz-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.no-touch .section__text a:hover {
  color: #9e2525;
}

@media only screen and (min-width: 1400px) {
  .section__text {
    font-size: 1.6rem;
  }
}

h3 {
  font: normal 500 2.8rem/1 'Poppins', serif;
  text-transform: uppercase;
  color: #0a0a0a;
}

@media only screen and (min-width: 768px) {
  h3 {
    font-size: 3.2rem;
  }
}

.block__subtitle {
  display: block;
  font: normal 400 3.4rem/1.2 'Dancing Script', cursive;
  color: #0a0a0a;
  margin-top: 1.8rem;
}

.block__text {
  font: normal 400 1.4rem/1.6 'Mulish', sans-serif;
  color: #444444;
  margin-top: 1.6rem;
}

@media only screen and (min-width: 1400px) {
  .block__text {
    font-size: 1.6rem;
  }
}

h4 {
  font: normal 600 1.8rem/1 'Poppins', serif;
  text-transform: uppercase;
  color: #0a0a0a;
}

h4 small {
  display: block;
  text-transform: none;
  font: italic 400 2rem/1.6 'Dancing Script', cursive;
  letter-spacing: 0.1rem;
  color: #444444;
}

h5 {
  font: normal 600 1.7rem/1 'Poppins', serif;
  text-transform: uppercase;
  color: #0a0a0a;
}

p {
  font: normal 400 1.4rem/1.6 'Mulish', sans-serif;
  color: rgba(255, 255, 255, 0.8);
}

p span {
  color: var(--text-color);
}

p.additional-text {
  font: normal 400 2rem/1 'Dancing Script', cursive;
  letter-spacing: 0.1rem;
  color: var(--text-color);
}

p.additional-text.extra {
  color: var(--alt-text-color);
}

p.additional-text i {
  font-size: 1.4rem;
}

p.additional-text a {
  color: var(--alt-text-color);
}

.no-touch p.additional-text a:hover {
  color: rgba(255, 255, 255, 0.6);
}

@media only screen and (min-width: 1400px) {
  p {
    font-size: 1.6rem;
  }
}

.popup__title {
  display: block;
  font: normal 500 3.4rem/1 'Poppins', serif;
  text-transform: uppercase;
  margin-top: 1.6rem;
  color: var(--text-color);
}

@media only screen and (min-width: 768px) {
  .popup__title {
    font-size: 4rem;
  }
}

@media only screen and (min-width: 1400px) {
  .popup__title {
    font-size: 5rem;
  }
}

.popup__subtitle {
  display: block;
  font: normal 400 3.4rem/1.6 'Dancing Script', cursive;
  color: rgba(255, 255, 255, 0.8);
}

@media only screen and (min-width: 1400px) {
  .popup__subtitle {
    font-size: 3.4rem;
  }
}

.popup__text {
  font: normal 400 1.4rem/1.6 'Mulish', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2rem;
}

@media only screen and (min-width: 1400px) {
  .popup__text {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------*/
/* Typography End */
/* ------------------------------------------------*/


#bgndKenburns {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: transparent;
}

/* ------------------------------------------------*/
/* Animated Backgrounds End */
/* ------------------------------------------------*/
/* ------------------------------------------------*/
/* Main Section Styles Start */
/* ------------------------------------------------*/
.main {
  position: relative;
  width: 100%;
  min-width: 320px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 9;
  background-color: var(--bg-color);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out;
  -moz-transition: transform 0.6s ease-in-out, -moz-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -moz-transform 0.6s ease-in-out;
}

.main .main__headline,
.main .main__header .menu-trigger {
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.main.notify-is-visible .main__headline,
.main.notify-is-visible .main__header .menu-trigger {
  opacity: 0;
  visibility: hidden;
}

.main.menu-is-visible .main__content {
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.main.move-in {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.main.move-out {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
}

@media only screen and (min-width: 1200px) {
  .main {
    overflow: hidden;
  }

  .main.move-out {
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.main__content {
  position: relative;
  height: auto;
  background-color: #1f2023;
  -webkit-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

@media only screen and (min-width: 1200px) {
  .main__content {
    height: 100%;
  }
}

.main__header {
  position: relative;
  width: 100%;
}

.header__container {
  position: relative;
  height: 100%;
  padding: 3rem 0 0 0;
}

@media only screen and (min-width: 1200px) {
  .header__container {
    padding: 3.6rem 0 0 0;
  }
}

@media only screen and (min-width: 1400px) {
  .header__container {
    padding: 4rem 0 0 0;
  }
}

.header__content {
  position: relative;
  padding: 0 10%;
}

@media only screen and (min-width: 1200px) {
  .header__content {
    padding: 0 8rem;
  }
}

@media only screen and (min-width: 1400px) {
  .header__content {
    padding: 0 10rem;
  }
}

.logo {
  position: relative;
  padding: 0;
  width: auto;
  margin-top: 20%;
}

.logo img {
  width: auto;
  height: 200px;
  margin: 0 auto;
}


@media only screen and (max-width: 768px) {
  .logo img {
    height: 100px;
  }
}

.main__headline {
  position: relative;
  width: 100%;
  padding: 8rem 0;
}

@media only screen and (min-width: 1200px) {
  .main__headline {
    position: absolute;
    left: 0;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0;
  }
}

.main__dataline {
  position: relative;
  width: 100%;
  padding: 0 10% 3rem 10%;
  z-index: 2;
}

.main__dataline > div {
  line-height: 1.2;
}

.contacts {
  display: flex;
  gap: 2rem;
  justify-content: center;
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  padding: 0 10rem;
}

@media only screen and (min-width: 1200px) {
  .main__dataline {
    position: absolute;
    bottom: 3.6rem;
    left: 0;
    padding: 0 8rem;
  }
}

@media only screen and (min-width: 1400px) {
  .main__dataline {
    position: absolute;
    bottom: 4rem;
    left: 0;
    padding: 0 10rem;
  }
}

.headline__content {
  position: relative;
  width: 100%;
  padding: 0 10%;
}

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

@media only screen and (min-width: 1200px) {
  .headline__content {
    padding: 0 8rem;
  }
}

@media only screen and (min-width: 1400px) {
  .headline__content {
    padding: 0 10rem;
  }
}

.main__media {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-color: #9e2525;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
}

@media only screen and (min-width: 1200px) {
  .main__media {
    height: 100%;
    min-height: auto;
  }
}

.mainmedia__container {
  position: absolute;
  top: 9rem;
  left: 10%;
  width: 80%;
  height: -moz-calc(100% - 18rem);
  height: calc(100% - 18rem);
}

@media only screen and (min-width: 1200px) {
  .mainmedia__container {
    position: absolute;
    top: 9rem;
    left: 12rem;
    width: -moz-calc(100% - 24rem);
    width: calc(100% - 24rem);
  }
}

@media only screen and (min-width: 1400px) {
  .mainmedia__container {
    position: absolute;
    top: 10rem;
    left: 16rem;
    width: -moz-calc(100% - 32rem);
    width: calc(100% - 32rem);
    height: -moz-calc(100% - 20rem);
    height: calc(100% - 20rem);
  }
}

.mainmedia__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mainmedia__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
}

.mainmedia__copyright {
  position: absolute;
  bottom: 3.6rem;
  left: 0;
  width: 100%;
  padding: 0 10%;
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .mainmedia__copyright {
    padding: 0 8rem;
  }
}

@media only screen and (min-width: 1400px) {
  .mainmedia__copyright {
    position: absolute;
    bottom: 4rem;
    left: 0;
    padding: 0 10rem;
  }
}

/* ------------------------------------------------*/
/* Countdown Styles Start */
/* ------------------------------------------------*/
.countdown {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.countdown.countdown-days .countdown-period {
  display: none;
}

.countdown.countdown-days #countdown {
  font: normal 500 8.8rem/1 'Poppins', serif;
  color: var(--alt-text-color);
}

.countdown.countdown-days .help-text {
  display: block;
  font: normal 500 1.2rem/1 'Poppins', serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--alt-text-color);
}

.countdown.countdown-full .countdown-section {
  display: inline-block;
  padding: 0 1rem;
}

.countdown.countdown-full .countdown-period {
  display: block;
  font: normal 500 1.2rem/1.6 'Mulish', sans-serif;
  letter-spacing: normal;
  color: var(--alt-text-color);
}

.countdown.countdown-full #countdown-large {
  font: normal 500 3rem/0.9 'Poppins', serif;
  color: var(--alt-text-color);
  margin-top: 2.4rem;
}

.countdown.countdown-full .help-text {
  display: block;
  font: normal 500 1.2rem/1 'Poppins', serif;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: var(--alt-text-color);
}

@media only screen and (min-width: 768px) {
  .countdown.countdown-full .countdown-section {
    padding: 0 1.6rem;
    min-width: 8.6rem;
  }

  .countdown.countdown-full #countdown-large {
    font-size: 4.8rem;
  }
}

@media only screen and (min-width: 1400px) {
  .countdown.countdown-days #countdown {
    font-size: 12rem;
  }

  .countdown.countdown-days .help-text {
    font-size: 1.6rem;
  }

  .countdown.countdown-full .countdown-section {
    padding: 0 1.8rem;
    min-width: 9.4rem;
  }

  .countdown.countdown-full .countdown-period {
    font-size: 1.4rem;
  }

  .countdown.countdown-full #countdown-large {
    font-size: 5.4rem;
    margin-top: 3rem;
  }

  .countdown.countdown-full .help-text {
    font-size: 1.6rem;
  }
}

/* ------------------------------------------------*/
/* Countdown Styles End */
/* ------------------------------------------------*/

/* ------------------------------------------------*/
/* Content Section Styles Start */
/* ------------------------------------------------*/
.inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #f5efe3;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 0.6s, visibility 0.6s, -webkit-transform 0.6s ease-in-out;
  transition: opacity 0.6s, visibility 0.6s, -webkit-transform 0.6s ease-in-out;
  -o-transition: opacity 0.6s, visibility 0.6s, transform 0.6s ease-in-out;
  -moz-transition: opacity 0.6s, visibility 0.6s, transform 0.6s ease-in-out, -moz-transform 0.6s ease-in-out;
  transition: opacity 0.6s, visibility 0.6s, transform 0.6s ease-in-out;
  transition: opacity 0.6s, visibility 0.6s, transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -moz-transform 0.6s ease-in-out;
}

.inner.animate-in {
  z-index: 11;
  opacity: 1;
  visibility: visible;
}

.inner.animate-out {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.inner.to-back {
  opacity: 0;
  visibility: hidden;
}

@media only screen and (min-width: 1200px) {
  .inner {
    overflow: hidden;
  }

  .inner.animate-out {
    -webkit-transform: translateX(50%);
    -moz-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
  }
}

.inner__content,
.inner__media {
  position: relative;
}

@media only screen and (min-width: 1200px) {
  .inner__content,
  .inner__media {
    height: 100%;
  }
}

.inner__content {
  height: auto;
}

@media only screen and (min-width: 1200px) {
  .inner__content {
    height: 100%;
    overflow-y: auto;
  }
}

.inner__block {
  position: relative;
  padding: 9rem 0;
}

.inner__block.no-padding {
  padding: 0;
}

@media only screen and (min-width: 1400px) {
  .inner__block {
    padding: 10rem 0;
  }
}

.inner__container {
  position: relative;
  padding: 0 10%;
  margin-bottom: 5rem;
}

.inner__container:last-of-type {
  margin-bottom: 0;
}

.inner__container.grid-block {
  padding: 0 -moz-calc(10% - 15px);
  padding: 0 calc(10% - 15px);
}

.inner__container.notify-width {
  max-width: 500px;
  margin: 0 auto 5rem;
}

.inner__container.notify-width:last-of-type {
  margin: 0 auto;
}

@media only screen and (min-width: 768px) {
  .inner__container.notify-width {
    max-width: 700px;
  }
}

@media only screen and (min-width: 1200px) {
  .inner__container {
    padding: 0 8rem;
  }

  .inner__container.grid-block {
    padding: 0 -moz-calc(8rem - 15px);
    padding: 0 calc(8rem - 15px);
  }

  .inner__container.notify-width {
    max-width: 540px;
  }
}

@media only screen and (min-width: 1400px) {
  .inner__container {
    padding: 0 10rem;
    margin-bottom: 6rem;
  }

  .inner__container.grid-block {
    padding: 0 -moz-calc(10rem - 15px);
    padding: 0 calc(10rem - 15px);
  }

  .inner__container.notify-width {
    max-width: 640px;
    margin: 0 auto 6rem;
  }

  .inner__container.notify-width:last-of-type {
    margin: 0 auto;
  }
}

.inner__media {
  height: 100vh;
  min-height: 600px;
  background-color: #9e2525;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
}

@media only screen and (min-width: 1200px) {
  .inner__media {
    height: 100%;
    min-height: auto;
  }
}

.media__container {
  position: absolute;
  top: 9rem;
  left: 10%;
  width: 80%;
  height: -moz-calc(100% - 18rem);
  height: calc(100% - 18rem);
}

@media only screen and (min-width: 1200px) {
  .media__container {
    position: absolute;
    top: 9rem;
    left: 12rem;
    width: -moz-calc(100% - 24rem);
    width: calc(100% - 24rem);
  }
}

@media only screen and (min-width: 1400px) {
  .media__container {
    position: absolute;
    top: 10rem;
    left: 16rem;
    width: -moz-calc(100% - 32rem);
    width: calc(100% - 32rem);
    height: -moz-calc(100% - 20rem);
    height: calc(100% - 20rem);
  }
}

.media__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.media__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  -moz-background-size: cover;
  background-size: cover;
}

.media__copyright {
  position: absolute;
  bottom: 3.6rem;
  left: 0;
  width: 100%;
  padding: 0 10%;
  text-align: center;
}

@media only screen and (min-width: 1200px) {
  .media__copyright {
    padding: 0 8rem;
  }
}

@media only screen and (min-width: 1400px) {
  .media__copyright {
    position: absolute;
    bottom: 4rem;
    left: 0;
    padding: 0 10rem;
  }
}

/* ------------------------------------------------*/
/* Popup Dialogs Start */
/* ------------------------------------------------*/
.notify {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 320px;
  height: 100%;
  overflow-y: auto;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.notify.animate-in {
  opacity: 1;
  visibility: visible;
}

.notify.animate-in .transition-el {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.notify.animate-in .transition-el-1 {
  -webkit-transition: opacity 0.3s 0.3s -0.2s, -webkit-transform 0.3s 0.3s -0.2s;
  transition: opacity 0.3s 0.3s -0.2s, -webkit-transform 0.3s 0.3s -0.2s;
  -o-transition: opacity 0.3s 0.3s -0.2s, transform 0.3s 0.3s -0.2s;
  -moz-transition: opacity 0.3s 0.3s -0.2s, transform 0.3s 0.3s -0.2s, -moz-transform 0.3s 0.3s -0.2s;
  transition: opacity 0.3s 0.3s -0.2s, transform 0.3s 0.3s -0.2s;
  transition: opacity 0.3s 0.3s -0.2s, transform 0.3s 0.3s -0.2s, -webkit-transform 0.3s 0.3s -0.2s, -moz-transform 0.3s 0.3s -0.2s;
}

.notify.animate-in .transition-el-2 {
  -webkit-transition: opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
  transition: opacity 0.3s 0.2s, -webkit-transform 0.3s 0.2s;
  -o-transition: opacity 0.3s 0.2s, transform 0.3s 0.2s;
  -moz-transition: opacity 0.3s 0.2s, transform 0.3s 0.2s, -moz-transform 0.3s 0.2s;
  transition: opacity 0.3s 0.2s, transform 0.3s 0.2s;
  transition: opacity 0.3s 0.2s, transform 0.3s 0.2s, -webkit-transform 0.3s 0.2s, -moz-transform 0.3s 0.2s;
}

.notify.animate-in .transition-el-3 {
  -webkit-transition: opacity 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  transition: opacity 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  -o-transition: opacity 0.3s 0.3s, transform 0.3s 0.3s;
  -moz-transition: opacity 0.3s 0.3s, transform 0.3s 0.3s, -moz-transform 0.3s 0.3s;
  transition: opacity 0.3s 0.3s, transform 0.3s 0.3s;
  transition: opacity 0.3s 0.3s, transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s, -moz-transform 0.3s 0.3s;
}

.notify.animate-in .transition-el-4 {
  -webkit-transition: opacity 0.3s 0.4s, -webkit-transform 0.3s 0.4s;
  transition: opacity 0.3s 0.4s, -webkit-transform 0.3s 0.4s;
  -o-transition: opacity 0.3s 0.4s, transform 0.3s 0.4s;
  -moz-transition: opacity 0.3s 0.4s, transform 0.3s 0.4s, -moz-transform 0.3s 0.4s;
  transition: opacity 0.3s 0.4s, transform 0.3s 0.4s;
  transition: opacity 0.3s 0.4s, transform 0.3s 0.4s, -webkit-transform 0.3s 0.4s, -moz-transform 0.3s 0.4s;
}

.notify.animate-in .transition-el-5 {
  -webkit-transition: opacity 0.3s 0.5s, background-color 0.3s 0s, -webkit-transform 0.3s 0.5s, -webkit-box-shadow 0.3s 0s;
  transition: opacity 0.3s 0.5s, background-color 0.3s 0s, -webkit-transform 0.3s 0.5s, -webkit-box-shadow 0.3s 0s;
  -o-transition: opacity 0.3s 0.5s, transform 0.3s 0.5s, background-color 0.3s 0s, box-shadow 0.3s 0s;
  -moz-transition: opacity 0.3s 0.5s, transform 0.3s 0.5s, background-color 0.3s 0s, box-shadow 0.3s 0s, -moz-transform 0.3s 0.5s, -moz-box-shadow 0.3s 0s;
  transition: opacity 0.3s 0.5s, transform 0.3s 0.5s, background-color 0.3s 0s, box-shadow 0.3s 0s;
  transition: opacity 0.3s 0.5s, transform 0.3s 0.5s, background-color 0.3s 0s, box-shadow 0.3s 0s, -webkit-transform 0.3s 0.5s, -moz-transform 0.3s 0.5s, -webkit-box-shadow 0.3s 0s, -moz-box-shadow 0.3s 0s;
}

.notify.animate-out {
  opacity: 0;
  visibility: hidden;
}

.notify .transition-el {
  opacity: 0;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  -o-transition: opacity 0.3s, transform 0.3s;
  -moz-transition: opacity 0.3s, transform 0.3s, -moz-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s, -moz-transform 0.3s;
}

@media only screen and (min-width: 1200px) {
  .notify {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .notify.dark {
    background-color: transparent;
  }

  .notify.light {
    background-color: transparent;
  }
}

.notify__container {
  position: relative;
  width: 100%;
  height: 100%;
}

.notify__content {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}

/* ------------------------------------------------*/
/* Popup Dialogs End */
/* ------------------------------------------------*/
