/* Define the "system" font family */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #000;
  color: #eee;
}

a {
  color: #00c1d3;
  text-decoration: none;
  border-bottom: 1px solid #00c1d3;
  /*box-shadow: inset 0 -2px 0 #00c1d3;*/
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

a:hover {
  color: #00467c;
  background: #00c1d3;
  text-decoration: none;
}

.site-header {
  display: block;
  position: fixed;
  top: 66px;
  left: 66px;
  z-index: 501;
  transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-delay: 1s;
  transform: translateX(0);
}

.site-header a {
  border: none;
  box-shadow: none;
}

.coming-soon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  animation: fadein 3s;
}

.coming-soon-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 568px;
}

footer {
  position: absolute;
  left: 10%;
  font-size: 14px;
  font-weight: 400;
  color: #eee;
  bottom: 0;
  padding: 0 0 16px 16px;
}

.coming-soon-content {
  position: relative;
  left: 10%;
  font-size: 15px;
  font-weight: 400;
  color: #eee;
}

.coming-soon-content hr {
  color: #fff;
  border: 1px solid #222222;
  width: 13%;
  margin: 30px 0 0 15px;
  position: absolute;
}

.coming-soon-content h1 {
  line-height: 120%;
  font-size: 80px;
  letter-spacing: -2px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.coming-soon-content p {
  line-height: 130%;
  font-size: 16px;
  padding-left: 16px;
}

@media (min-width:320px)  { /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */ 
  .site-header {
    display: block;
    position: fixed;
    top: 16px;
    left: 16px;
  }
  
  .coming-soon-content {
    top: 50%;
    width: 80%;
  }
  
  .coming-soon-content h1 {
    font-size: 40px;
  }
  
  .coming-soon-content p {
    font-size: 14px;
    padding-left: 6px;
  }
  
  footer {
    padding-left: 6px;
  }
}
@media (min-width:480px)  { /* smartphones, Android phones, landscape iPhone */ }
@media (min-width:600px)  { /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .site-header {
    top: 66px;
    left: 66px;
  }

  .coming-soon-content {
    top: 50%;
    width: 75%;
  }
  
  .coming-soon-content h1 {
    font-size: 80px;
  }
  
  .coming-soon-content p {
    font-size: 16px;
    padding-left: 16px;
  }
}
@media (min-width:801px)  { /* tablet, landscape iPad, lo-res laptops ands desktops */ }
@media (min-width:1025px) { /* big landscape tablets, laptops, and desktops */ 
  .coming-soon-content {
    top: 50%;
    width: 45%;
  }
}
@media (min-width:1281px) { /* hi-res laptops and desktops */ }


.coming-soon-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.coming-soon-background svg {
  width: 6666px;
  animation-duration: 180s;
  animation-delay: -5s;
  animation-name: pan-logo;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.coming-soon-background svg .cls-1 {
  fill:none;
  stroke:#222222;
  stroke-miterlimit:1;
  stroke-width: 0.1px;
}

.coming-soon-background svg path {
  stroke: rgba(245,245,241,0.5);
  animation-duration: 20s;
  animation-delay: -5s;
  animation-name: draw-logo;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes pan-logo {0% {
transform: translate(0%, -25%);
opacity: 0
}
5%,20% {
opacity: 1
}
25% {
opacity: 0;
transform: translate(-2%, -25%)
}
25.1% {
transform: translate(-48%, 12%)
}
30%,45% {
opacity: 1
}
50% {
opacity: 0;
transform: translate(-50%, 12%)
}
50.1% {
transform: translate(-48%, -25%)
}
55%,70% {
opacity: 1
}
75% {
opacity: 0;
transform: translate(-50%, -25%)
}
75.1% {
transform: translate(0%, 12%)
}
80%,95% {
opacity: 1
}
100% {
opacity: 0;
transform: translate(-2%, 12%)
}

}
@keyframes pan-logo {0% {
transform: translate(0%, -25%);
opacity: 0
}
5%,20% {
opacity: 1
}
25% {
opacity: 0;
transform: translate(-2%, -25%)
}
25.1% {
transform: translate(-48%, 12%)
}
30%,45% {
opacity: 1
}
50% {
opacity: 0;
transform: translate(-50%, 12%)
}
50.1% {
transform: translate(-48%, -25%)
}
55%,70% {
opacity: 1
}
75% {
opacity: 0;
transform: translate(-50%, -25%)
}
75.1% {
transform: translate(0%, 12%)
}
100% {
opacity: 1;
transform: translate(-2%, 12%)
}

}

@keyframes draw-logo {0% {
stroke-dasharray: 0% 100%;
stroke-dashoffset: -100%
}
50% {
stroke-dasharray: 100% 0%;
stroke-dashoffset: 0%
}
100% {
stroke-dasharray: 0% 100%;
stroke-dashoffset: 100%
}

}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}