:root {
  --var-text-color: #fff; }

*, ::after, ::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

body, html {
  font-family: "Times New Roman", Times, serif;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  border: none;
  color: var(--var-text-color);
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  background-color: #000; }

a {
  color: inherit;
  text-decoration: none;
  -moz-transition: opacity 0.3s ease-out;
  /* WebKit */
  -webkit-transition: opacity 0.3s ease-out;
  /* Opera */
  -o-transition: opacity 0.3s ease-out;
  /* Standard */
  transition: opacity 0.3s ease-out; }

a:hover {
  text-decoration: none;
  opacity: 0.6; }

.bold, strong, b {
  font-weight: 600; }

input, textarea {
  outline: none; }

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

.italic {
  font-style: italic; }

.left {
  float: left; }

.right {
  float: right; }

.clear {
  clear: both; }

.relative {
  position: relative; }

.absolute {
  position: absolute; }

.vvhide {
  visibility: hidden; }

.block {
  display: block; }

.aright {
  text-align: right; }

.hide {
  display: none; }

.flex {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.flex-row {
  flex-direction: row; }

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

.flex-space-between {
  justify-content: space-between; }

.nowrap {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border-radius: 0; }

button, input[type=button], input[type=submit] {
  -webkit-appearance: none; }

#main {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

main {
  position: fixed;
  width: 100%;
  height: 100vh; }
  main
.header {
    position: absolute;
    z-index: 900;
    left: 50%;
    top: 15px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    white-space: nowrap; }
    main
.header h1, main
.header
p {
      text-align: center; }
    main
.header h1 {
      font-size: 18px; }
    main
.header p {
      font-size: 18px; }
  main video {
    position: absolute;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center top;
    object-position: center top;
    border: none;
    outline: none;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    z-index: 800; }

.loader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 9999; }

#cookie_msg {
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: var(--var-cookie-background);
  text-align: center;
  color: #fff;
  font-size: 12px;
  line-height: 15px;
  display: none;
  width: 100%;
  position: fixed;
  z-index: 99998;
  bottom: 0px; }
  #cookie_msg
a {
    text-decoration: underline; }
  @media only screen and (max-width: 767px) {
    #cookie_msg {
      font-size: 10px;
      line-height: 15px; } }

#cookie_accept {
  text-decoration: underline; }

.under {
  min-height: 20px;
  background-color: #000;
  text-align: center; }

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0; }

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
