/*
USEAGE:

aside.primary {
  @include breakpoint(md) {
    float: right;
    width: 350px;
  }
  @include breakpoint(480px) {
    display: none;
  }
  @include breakpoint($min: 640px, $max: 767px) {
    text-align: center;
    font-style: italic;
  }
}

sizes: xs,sm,md,lg

*/
.dropshadow_effect_1 {
  text-shadow: 0 1px 0 #ccc, 0 2px 0 #c9c9c9, 0 3px 0 #bbb, 0 4px 0 #b9b9b9, 0 5px 0 #aaa, 0 6px 1px rgba(0, 0, 0, 0.1), 0 0 5px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.3), 0 3px 5px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.2), 0 20px 20px rgba(0, 0, 0, 0.15);
}

.dS {
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.6));
}

.redacted {
  position: relative;
  white-space: pre;
  -moz-appearance: initial;
}
.redacted:after {
  background: black;
  border-radius: 0.1em;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.35);
  content: " ";
  width: 100%;
  height: 1.2em;
  left: 0;
  position: absolute;
  transform: skewY(-5deg) rotate(5deg);
}

.statingOpactity {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-in-out, transform 0.7s ease-out;
}
.statingOpactity.fadein {
  opacity: 1;
  transform: translateY(0);
}

html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #ced4da;
  background-image: url("../imgs/bg.jpg");
  background-size: cover;
  background-repeat: repeat;
  font-family: "Roboto", sans-serif;
}

button, input[type=submit], input[type=reset] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

section.bodySection {
  width: 100vw;
  padding: 40px 20px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  section.bodySection {
    padding: 90px 30px;
    margin-bottom: 30px;
  }
}
section.bodySection article {
  position: absolute;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 50%;
  top: 200px;
  transform: translate(-50%, 0);
  flex-direction: column;
  z-index: 50;
}
@media (min-width: 992px) {
  section.bodySection article {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
section.bodySection article h1, section.bodySection article h3, section.bodySection article .blurb {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 40%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 90%);
  width: 100vw;
  margin: 0;
  text-align: center;
  text-shadow: 2px 2px #000;
}
section.bodySection article h1.darker, section.bodySection article h3.darker, section.bodySection article .blurb.darker {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 10%, rgb(0, 0, 0) 20%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0) 90%);
}
section.bodySection article h1 {
  color: white;
  font-size: 46px;
  display: block;
  padding: 10px 0 0 0;
  font-family: "Fugaz One", cursive;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  section.bodySection article h1 {
    font-size: 70px;
  }
}
section.bodySection article h1 sup {
  font-size: 0.4em;
  position: absolute;
  top: 16px;
  font-family: "Roboto", sans-serif;
}
section.bodySection article h3 {
  padding: 0 0 10px 0;
  letter-spacing: 4px;
  color: #999;
  font-weight: 700;
  font-style: italic;
  font-size: 16px;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  section.bodySection article h3 {
    font-size: 22px;
  }
}
section.bodySection article .blurb {
  margin-top: 30px;
  font-size: 19px;
}
@media (min-width: 768px) {
  section.bodySection article .blurb {
    font-size: 22px;
  }
}
section.bodySection article .blurb div {
  padding: 14px;
}
section.bodySection article .readmore {
  background-color: rgba(0, 0, 0, 0.4);
  border-style: solid;
  border-width: 0.125em;
  border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox=%220 0 30 30%22%3E%3Crect x=%221%22 y=%221%22 width=%2228%22 height=%2228%22 fill=%22transparent%22 stroke=%22%23fff%22 stroke-width=%222%22 %2F%3E%3C%2Fsvg%3E");
  border-image-slice: 50%;
  border-image-width: 0.9375em;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  max-height: 46px;
  max-width: 200px;
  position: relative;
  margin: 30px 16px 0 16px;
  transition: max-height 0.3s ease-in, max-width 0.3s ease-in, opacity 0.7s ease-in-out, margin-top 0.3s ease-in-out;
}
@media (min-width: 992px) {
  section.bodySection article .readmore {
    position: absolute;
    top: 270px;
    margin: 0 20px;
  }
}
section.bodySection article .readmore.darker {
  background-color: rgba(0, 0, 0, 0.7);
}
section.bodySection article .readmore.open {
  max-height: 600px;
  max-width: 1400px;
  margin-top: 0px;
  transition: max-height 0.3s ease-in, max-width 0.3s ease-in, margin-top 0.3 ease-in;
}
@media (min-width: 0px) and (max-width: 480px) {
  section.bodySection article .readmore.open {
    margin-top: -60%;
    background-color: rgba(0, 0, 0, 0.8);
  }
}
section.bodySection article .readmore.open .textspace {
  opacity: 1;
}
section.bodySection article .readmore button.readmorebutton {
  padding: 15px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
section.bodySection article .readmore button.readmorebutton:hover {
  color: white;
}
section.bodySection article .readmore .textspace {
  max-width: 1200px;
  padding: 25px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
section.bodySection article .readmore .textspace p {
  margin: 0;
  line-height: 1.6em;
  font-size: 15px;
}
@media (min-width: 768px) {
  section.bodySection article .readmore .textspace {
    padding: 0 50px 20px 50px;
  }
  section.bodySection article .readmore .textspace p {
    margin: 20px 0 0;
    font-size: 18px;
  }
}
section.bodySection .hero {
  position: relative;
  display: flex;
  justify-content: center;
  border-style: solid;
  border-width: 0.125em;
  border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox=%220 0 60 60%22%3E%3Crect x=%221%22 y=%221%22 width=%2258%22 height=%2258%22 fill=%22transparent%22 stroke=%22%23fff%22 stroke-width=%222%22 %2F%3E%3C%2Fsvg%3E");
  border-image-slice: 50%;
  border-image-width: 1.875em;
  border-width: 0;
  overflow: hidden;
  max-height: 990px;
}
section.bodySection .hero img.heroimage {
  z-index: 1;
  object-fit: cover;
  width: 100%;
  height: 90vh;
}
@media (min-width: 992px) {
  section.bodySection .hero img.heroimage {
    width: 100%;
    height: 100%;
  }
}

.maps {
  position: absolute;
  top: 52%;
  left: 0px;
  z-index: 20;
  width: 100%;
  overflow: hidden;
}
.maps img {
  height: 100%;
  position: relative;
  animation: mapscroll infinite linear;
  animation-duration: 120s;
  left: -120%;
}

@keyframes mapscroll {
  0% {
    left: -120%;
  }
  50% {
    left: 0;
  }
  100% {
    left: -120%;
  }
}
.books {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 52%;
  z-index: 20;
  width: 100%;
  overflow: hidden;
}
.books img {
  height: 100%;
  position: relative;
  animation: bookscroll infinite linear;
  animation-duration: 120s;
}

@keyframes bookscroll {
  0% {
    left: 0;
  }
  50% {
    left: -120%;
  }
  100% {
    left: 0;
  }
}
.heads {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
}
.heads .head {
  filter: drop-shadow(10px 10px 10px #000);
  position: absolute;
  left: -500px;
  opacity: 0;
  transition-property: left, opacity, right;
  transition-duration: 750ms;
}
.heads .head.shown {
  left: -300px;
  opacity: 1;
}
@media (min-width: 992px) {
  .heads .head.shown {
    left: calc(50vw - 1000px);
  }
}
.heads .head.second {
  transition-delay: 1000ms;
}
.heads .head.third {
  transition-delay: 2000ms;
}
.heads .head.kokido {
  margin-left: 100px;
}
.heads .head.right {
  display: none;
  left: auto;
  right: -500px;
  filter: drop-shadow(-10px 10px 10px #000);
}
@media (min-width: 992px) {
  .heads .head.right {
    display: block;
  }
}
.heads .head.right.shown {
  left: auto;
  right: calc(50vw - 1000px);
  opacity: 1;
}

.hidden {
  display: none;
}

.particleoverlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 40;
}

/* ---------- Fog ---------- */
.fogwrapper {
  height: 80%;
  position: absolute;
  bottom: 0;
  z-index: 50;
  width: 100%;
  -webkit-filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
  filter: blur(1px) grayscale(0.2) saturate(1.2) sepia(0.2);
}

#foglayer_01, #foglayer_02, #foglayer_03 {
  height: 100%;
  position: absolute;
  width: 200%;
}

#foglayer_01 .image01, #foglayer_01 .image02,
#foglayer_02 .image01, #foglayer_02 .image02,
#foglayer_03 .image01, #foglayer_03 .image02 {
  float: left;
  height: 100%;
  width: 50%;
}

#foglayer_01 {
  -webkit-animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
  -moz-animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
  animation: foglayer_01_opacity 10s linear infinite, foglayer_moveme 15s linear infinite;
}

#foglayer_02, #foglayer_03 {
  -webkit-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
  -moz-animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
  animation: foglayer_02_opacity 21s linear infinite, foglayer_moveme 13s linear infinite;
}

/* ---------- Moving Fog ---------- */
/*
  'size: cover' || 'size: 100%'; results remain the same
  'attachment: scroll' can be added or removed; results remain the same
  'attachment: fixed' causing unexpected results in Chrome
  'repeat-x' || 'no-repeat'; results remain the same
*/
#foglayer_01 .image01, #foglayer_01 .image02 {
  background: url("../imgs/fog3.png") center top/cover no-repeat transparent;
}

#foglayer_02 .image01, #foglayer_02 .image02,
#foglayer_03 .image01, #foglayer_03 .image02 {
  background: url("../imgs/fog4.png") center top/cover no-repeat transparent;
}

/* ---------- Keyframe Layer 1 ---------- */
@-webkit-keyframes foglayer_01_opacity {
  0% {
    opacity: 0.7;
  }
  22% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.68;
  }
  58% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.7;
  }
}
@-moz-keyframes foglayer_01_opacity {
  0% {
    opacity: 0.7;
  }
  22% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.68;
  }
  58% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.7;
  }
}
@-o-keyframes foglayer_01_opacity {
  0% {
    opacity: 0.7;
  }
  22% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.68;
  }
  58% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.7;
  }
}
@keyframes foglayer_01_opacity {
  0% {
    opacity: 0.7;
  }
  22% {
    opacity: 0.5;
  }
  40% {
    opacity: 0.68;
  }
  58% {
    opacity: 0.5;
  }
  80% {
    opacity: 0.16;
  }
  100% {
    opacity: 0.7;
  }
}
/* ---------- Keyframe Layer 2 ---------- */
@-webkit-keyframes foglayer_02_opacity {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}
@-moz-keyframes foglayer_02_opacity {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}
@-o-keyframes foglayer_02_opacity {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes foglayer_02_opacity {
  0% {
    opacity: 0.5;
  }
  25% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.5;
  }
}
/* ---------- Keyframe Layer 3 ---------- */
@-webkit-keyframes foglayer_03_opacity {
  0% {
    opacity: 0.8;
  }
  27% {
    opacity: 0.2;
  }
  52% {
    opacity: 0.6;
  }
  68% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes foglayer_03_opacity {
  0% {
    opacity: 0.8;
  }
  27% {
    opacity: 0.2;
  }
  52% {
    opacity: 0.6;
  }
  68% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
@-o-keyframes foglayer_03_opacity {
  0% {
    opacity: 0.8;
  }
  27% {
    opacity: 0.2;
  }
  52% {
    opacity: 0.6;
  }
  68% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes foglayer_03_opacity {
  0% {
    opacity: 0.8;
  }
  27% {
    opacity: 0.2;
  }
  52% {
    opacity: 0.6;
  }
  68% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.8;
  }
}
/* ---------- Keyframe moveMe ---------- */
@-webkit-keyframes foglayer_moveme {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@-moz-keyframes foglayer_moveme {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@-o-keyframes foglayer_moveme {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
@keyframes foglayer_moveme {
  0% {
    left: 0;
  }
  100% {
    left: -100%;
  }
}
/* @media only screen
  and (min-width: 280px)
  and (max-width: 767px) {
    #foglayer_01 .image01, #foglayer_01 .image02,
    #foglayer_02 .image01, #foglayer_02 .image02,
    #foglayer_03 .image01, #foglayer_03 .image02 {
      width: 100%;
    }
  } */
header {
  background-color: black;
  position: sticky;
  top: 0px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  gap: 50px;
  z-index: 100;
}
@media (min-width: 992px) {
  header {
    padding: 0 50px;
    gap: 50px;
    height: 100px;
  }
}
header .logo img {
  width: 200px;
}
@media (min-width: 1200px) {
  header .logo img {
    width: 300px;
  }
}
header .burger img {
  width: 30px;
  filter: brightness(50%);
}
@media (min-width: 768px) {
  header .burger {
    display: none;
  }
}
header .links {
  flex: 1;
  max-width: 800px;
  display: none;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 700;
}
@media (max-width: 768px) {
  header .links.open {
    display: flex;
    width: 100vw;
    height: 100vh;
    position: absolute;
    z-index: 120;
    background-color: black;
    top: 0;
    left: 0;
    font-size: 30px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  header .links {
    display: flex;
  }
}
@media (min-width: 992px) {
  header .links {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  header .links {
    font-size: 20px;
  }
}
header .links a {
  color: white;
  text-decoration: none;
}

footer {
  width: 100vw;
  padding: 0px 20px;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  footer {
    padding: 0px 40px;
  }
}
footer section {
  display: flex;
  justify-content: space-between;
}
footer section .sociallink {
  border-style: solid;
  border-width: 0.125em;
  border-image-source: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns=%22http:%2F%2Fwww.w3.org%2F2000%2Fsvg%22 viewBox=%220 0 30 30%22%3E%3Crect x=%221%22 y=%221%22 width=%2228%22 height=%2228%22 fill=%22transparent%22 stroke=%22%23fff%22 stroke-width=%222%22 %2F%3E%3C%2Fsvg%3E");
  border-image-slice: 50%;
  border-image-width: 0.9375em;
  margin: 0 5px;
  text-decoration: none;
  color: #999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 6px;
  font-size: 0.6em;
  width: 25%;
  text-align: center;
}
@media (min-width: 768px) {
  footer section .sociallink {
    width: 200px;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 1em;
    margin: 0 20px;
  }
}
footer section .sociallink img {
  filter: brightness(50%);
  width: 50px;
}
@media (min-width: 992px) {
  footer section .sociallink img {
    width: 100px;
  }
}
@media (min-width: 1200px) {
  footer section .sociallink img {
    width: 200px;
  }
}
footer section .sociallink:hover {
  color: white;
}
footer section .sociallink:hover img {
  filter: brightness(100%);
}
footer aside {
  margin: 60px 0;
  text-align: center;
  padding-bottom: 50px;
  color: #999;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/*# sourceMappingURL=style.css.map */
