/**/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap");
body {
  overflow-y: hidden;
  /* Hide vertical scrollbar */
  overflow-x: hidden;
  /* Hide horizontal scrollbar */ }

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0e0413;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }

.video-container {
  height: 100vh;
  position: relative;
  overflow: hidden;
  color: #fff;
  font-family: 'Open Sans', sans-serif; }
  .video-container video {
    object-fit: cover;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0; }
  .video-container .callout {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 10;
    background-color: rgba(60, 16, 83, 0.5); }
    @media (max-width: 600px) {
      .video-container .callout .logo {
        width: 360px; } }
    .video-container .callout ul {
      list-style: none;
      border-top: 1px solid #fff;
      margin: 20px 0 0 0;
      padding: 0; }
      @media (min-width: 600px) {
        .video-container .callout ul {
          width: 420px; } }
      .video-container .callout ul li {
        color: #fff;
        display: inline-block;
        margin: 20px 15px 0 15px;
        background-color: rgba(255, 255, 255, 0.05);
        width: 90px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        position: relative;
        -webkit-transition: all 0.5s ease-out;
        -moz-transition: all 0.5s ease-out;
        -ms-transition: all 0.5s ease-out;
        -o-transition: all 0.5s ease-out;
        transition: all 0.5s ease-out; }
        .video-container .callout ul li:hover {
          transform: scale(1.15);
          -webkit-transform: scale(1.1);
          -moz-transform: scale(1.1);
          -ms-transform: scale(1.1);
          -o-transform: scale(1.1);
          background-color: rgba(255, 255, 255, 0.2); }
        .video-container .callout ul li img {
          height: 36px;
          display: block;
          margin: 15px auto; }
          @media (max-width: 600px) {
            .video-container .callout ul li img {
              height: 24px; } }
        .video-container .callout ul li a {
          display: block;
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          z-index: 2; }
  .video-container:after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1; }

#menu {
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 100;
  cursor: pointer;
  padding: 10px;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }
  #menu:hover {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    background-color: rgba(255, 255, 255, 0.2); }

#admin-menu {
  position: absolute;
  top: 0;
  right: -0;
  display: none;
  width: 380px;
  background-color: #222;
  height: 100vh;
  z-index: 110;
  -webkit-box-shadow: -20px 0px 77px -12px black;
  -moz-box-shadow: -20px 0px 77px -12px black;
  box-shadow: -20px 0px 77px -12px black;
  padding: 25px;
  color: #fff; }
  #admin-menu h2 {
    font-weight: 700;
    padding: 10px 0 15px 0;
    font-size: 24px;
    color: #444; }
  #admin-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 -25px; }
    #admin-menu ul li {
      padding: 15px 25px;
      background-color: rgba(255, 255, 255, 0.02);
      border-bottom: 2px solid #222;
      -webkit-transition: all 0.5s ease-out;
      -moz-transition: all 0.5s ease-out;
      -ms-transition: all 0.5s ease-out;
      -o-transition: all 0.5s ease-out;
      transition: all 0.5s ease-out; }
      #admin-menu ul li a {
        color: #888;
        text-decoration: none;
        font-weight: 600; }
      #admin-menu ul li:hover {
        background-color: rgba(0, 0, 0, 0.2);
        padding-left: 35px; }
  #admin-menu #close-menu {
    height: 44px;
    position: absolute;
    top: 27px;
    right: 30px;
    cursor: pointer;
    padding: 10px;
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px; }
    #admin-menu #close-menu:hover {
      transform: scale(1.25);
      -webkit-transform: scale(1.25);
      -moz-transform: scale(1.25);
      -ms-transform: scale(1.25);
      -o-transform: scale(1.25);
      background-color: rgba(255, 255, 255, 0.4); }

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 90;
  color: #fff;
  font-size: 12px; }
  @media (max-width: 600px) {
    footer {
      width: 100%;
      text-align: center; } }

/*# sourceMappingURL=style.css.map */
