a {
  color: var(--color-link);
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

a:hover {
  color: var(--color-link-hover);
  outline: none;
}

a:focus {
  background: #d3d3d3;
  outline: none;
}

a:focus:not(:focus-visible) {
  background: none;
}

a:focus-visible {
  background: none;
  outline: 2px solid red;
}

.unbutton {
  font: inherit;
  fill: currentColor;
  cursor: pointer;
  color: inherit;
  background: none;
  border: 0;
  align-items: center;
  margin: 0;
  padding: 0;
  display: flex;
}

.unbutton:focus {
  outline: none;
}

.unbutton span:first-child {
  margin-right: 1rem;
}

.unbutton span:last-child {
  margin-left: 1rem;
}

.action {
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease-in;
}

.content-open .action, .contact-open .action {
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
  transition: opacity .5s ease-in 1s;
}

.contact--back {
  float: right;
  transform: rotate(90deg);
}

.contact--back > span {
  display: none;
}

.action svg {
  width: 2em;
  height: 2em;
}

.action span {
  text-transform: uppercase;
}

.action--back {
  grid-area: back;
  justify-self: start;
  padding: 1rem 0;
}

.cd-nav-trigger {
  background: none;
  border: none;
  padding: 0;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: transform .4s;
}

.line {
  fill: none;
  stroke: #000;
  stroke-width: 2px;
  stroke-linecap: sqaure;
  transition: stroke-dasharray .4s, stroke-dashoffset .4s;
}

.ham .top {
  stroke-dasharray: 40 172;
}

.ham .middle {
  stroke-dasharray: 40 111;
}

.ham .bottom {
  stroke-dasharray: 40 172;
}

.folio-clicked .ham .top {
  stroke-dashoffset: -132px;
}

.folio-clicked .ham .middle {
  stroke-dashoffset: -71px;
}

.folio-clicked .ham .bottom {
  stroke-dashoffset: -132px;
}

.frame__button, .frame__contact {
  cursor: pointer;
  margin: auto;
}

.cd-nav-contact {
  background: none;
  border: none;
  width: 50px;
  margin: .5rem auto;
}

.chat {
  cursor: pointer;
}

.button {
  pointer-events: auto;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  background: #e7e7e7;
  border: none;
  margin: 0;
  padding: 1.5rem 3rem;
  display: inline-block;
  position: relative;
}

.button:before, .button:after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.button--surtur {
  clip-path: circle(40%);
  z-index: 300;
  background: none;
  padding: 0;
}

.button--surtur:focus-visible {
  background: #443ffc;
}

.textcircle {
  width: 200px;
  display: block;
  position: relative;
}

.textcircle text {
  text-transform: uppercase;
  fill: #000;
  font-size: 32px;
}

.textcircle textPath {
  letter-spacing: 17px;
}

.button--surtur:hover .textcircle {
  animation: 7s linear infinite rotateIt;
}

@keyframes rotateIt {
  to {
    transform: rotate(-360deg);
  }
}

.eye {
  z-index: 2;
  width: 60px;
  height: 60px;
  position: absolute;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
}

.eye__outer, .eye__inner, .eye__lashes-up, .eye__lashes-down {
  stroke: #000;
  fill: none;
  stroke-width: 1.5px;
}

.eye__lashes-down {
  opacity: 0;
}

.button--surtur:hover .eye__lashes-up, .button--surtur:hover .eye__inner, .button--surtur:hover .eye__iris {
  animation: 2s step-end infinite blinkHide;
}

.button--surtur:hover .eye__lashes-down {
  animation: 2s step-end infinite blinkShow;
}

@keyframes blinkHide {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }
}

@keyframes blinkShow {
  0% {
    opacity: 1;
  }

  10% {
    opacity: 0;
  }
}

@media screen and (width >= 53em) {
  .contact--back {
    transform: rotate(0);
  }

  .contact--back svg {
    transform: rotate(180deg);
  }

  .contact--back > span {
    display: initial;
  }
}

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

:root {
  --color-text: #0b0a0a;
  --color-text-contrast: #fff;
  --color-text-alt: #767474;
  --color-bg: #ccc;
  --color-link: #333;
  --color-link-hover: #ccc;
  --color-highlight: #d5e965;
  font-size: 16px;
}

html::-webkit-scrollbar {
  display: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
  scroll-behavior: initial;
}

html, body {
  width: 100%;
  min-height: 100%;
}

body {
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100vw;
  height: 100vh;
  margin: 0;
  font-family: botanika-mono-web, monospace;
  overflow: hidden;
}

body.folio-open {
  height: 100%;
  overflow-y: scroll;
}

.folio-open .frontPage {
  opacity: 0;
  pointer-events: none;
}

.folio-open .button--surtur {
  pointer-events: none;
}

.folio-open .preview-wrap {
  opacity: 1;
  pointer-events: auto;
}

body.content-open {
  height: 100vh;
  overflow: hidden;
}

.content-open .preview-wrap {
  pointer-events: none;
}

.contact-open .contact {
  transform: translateX(0%);
}

.oh {
  position: relative;
  overflow: hidden;
}

.oh_text {
  margin-right: .3rem;
  display: inline-block;
  overflow: hidden;
}

.oh__inner {
  will-change: transform;
  display: inline-block;
}

.content__text p, .content__text ul {
  margin: 0 0 1rem;
}

.content__text li:before {
  padding-right: .1rem;
}

.content__text li {
  margin-bottom: 1rem;
}

.line {
  transform-origin: 0;
  white-space: nowrap;
  will-change: transform;
}

.js .loading:before, .js .loading:after {
  content: "";
  z-index: 1000;
  position: fixed;
}

.js .loading:before {
  background: var(--color-bg);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.js .loading:after {
  opacity: .4;
  background: var(--color-link);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: -30px 0 0 -30px;
  animation: .7s linear infinite alternate forwards loaderAnim;
  top: 50%;
  left: 50%;
}

@keyframes loaderAnim {
  to {
    opacity: 1;
    transform: scale3d(.5, .5, 1);
  }
}

main {
  grid-template-rows: auto 1fr;
  grid-template-areas: "frame"
                       "page";
  display: grid;
  position: relative;
}

.frontPage {
  z-index: 500;
  width: 100%;
  height: 100%;
  position: -webkit-fixed;
  text-align: center;
  flex-direction: column;
  grid-area: page;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
}

.frontPage__content {
  z-index: 200;
}

.frame {
  z-index: 1000;
  background: var(--color-highlight);
  grid-area: frame;
  grid-template-columns: auto auto auto;
  grid-template-areas: "contact"
                       "title"
                       "button";
  align-content: space-between;
  padding: 1rem;
  display: grid;
  position: sticky;
  top: 0;
}

.frame__title {
  margin: auto;
  display: flex;
}

.frame__title-main, .frame__button-main, .frame__contact-main {
  text-transform: uppercase;
  margin: 0;
  font-size: 1rem;
  font-weight: normal;
  line-height: 1;
}

.frame__button-main, .frame__contact-main, .frame__title-btn {
  display: none;
}

.overlay {
  z-index: 1000;
  pointer-events: none;
  grid-area: Page;
  width: 100%;
  height: 100%;
  display: grid;
  position: fixed;
  top: 0;
}

.preview-wrap {
  z-index: 100;
  opacity: 0;
  grid-area: page;
  padding: 0 1.5rem 1.5rem;
  position: relative;
}

.preview {
  will-change: transform;
  grid-template-rows: 100%;
  grid-template-columns: 100%;
  min-height: 400px;
  margin: 0 auto;
  padding: 2rem 0 0;
  display: grid;
}

.preview__img-wrap {
  cursor: pointer;
  grid-area: 1 / 1 / -1 / -1;
}

.preview__img {
  background-color: #000;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.preview__img-inner {
  opacity: .6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--color-bg);
  width: 100%;
  height: 100%;
}

.preview__img-wrap, .preview__img, .preview__img-inner {
  width: 100%;
  height: 100%;
}

.video_preview {
  border: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.content__meta {
  color: var(--color-highlight);
  background-color: #000;
  margin-bottom: 1.5rem;
  padding: .5rem;
  font-size: .8rem;
  font-weight: bold;
}

.preview__title {
  text-align: center;
  pointer-events: none;
  color: var(--color-text-contrast);
  grid-area: 1 / 1 / -1 / -1;
  place-self: center;
  margin: 0 1rem;
  position: relative;
  transform: translate3d(0, 0, 0);
}

.preview__title-main {
  margin: 0;
  font-family: scotch-display, sans-serif;
  font-size: clamp(2rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1.2;
}

.preview__title-main > span {
  display: block;
}

.preview__title-main > span:last-child {
  padding: 0 1rem;
  font-family: scotch-display, sans-serif;
  font-style: italic;
  font-weight: 500;
  display: block;
  transform: translateY(-33%);
}

.preview__desc {
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 38ch;
  margin: 0 auto;
  line-height: 1.2;
}

.contact {
  z-index: 2000;
  background: var(--color-highlight);
  -webkit-transition: -webkit-transform .8s;
  width: 100vw;
  height: 100vh;
  transition: transform .8s cubic-bezier(.91, .01, .6, .99);
  position: fixed;
  top: 0;
  transform: translateY(-100%);
}

.contact__group {
  height: 80vh;
  margin: 5vh 2rem;
  overflow-y: scroll;
}

.contact__group::-webkit-scrollbar {
  display: none;
}

.contact__group {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.contact__group ul {
  margin: .5rem 0 0;
  padding: 0;
  font-style: normal;
  list-style-type: none;
}

.contact__group li {
  margin-bottom: 1.5em;
  line-height: 1.2;
}

.contact__group span {
  display: none;
}

.contact__group .profile-pic {
  box-sizing: border-box;
  vertical-align: top;
  width: 5rem;
}

.contact__title {
  margin: 0;
  font-family: scotch-display, sans-serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 400;
}

.contact__title span {
  display: block;
}

.contact__title > span:last-child {
  font-family: scotch-display, sans-serif;
  font-style: italic;
  font-weight: 500;
  transform: translateY(-25%);
}

.content-wrap {
  position: -webkit-fixed;
  pointer-events: none;
  grid-area: page;
  grid-template-rows: auto 1fr;
  grid-template-areas: "back back"
                       "content content";
  width: 100vw;
  height: 94vh;
  padding: 1.5rem;
  display: grid;
  position: fixed;
  top: 4rem;
  overflow: hidden;
}

.content {
  pointer-events: none;
  opacity: 0;
  grid-gap: 2vw;
  grid-template: "img" 25vh
                 "thumbs" min-content
                 "text"
                 / 100%;
  grid-area: 2 / content / span 2;
  gap: 1rem 2vw;
  height: 100%;
  display: grid;
  position: absolute;
  top: 0;
  left: 0;
}

.content--current {
  pointer-events: auto;
  opacity: 1;
  position: relative;
}

.content__group {
  -ms-overflow-style: none;
  scrollbar-width: none;
  grid-area: text;
  height: 100%;
  margin-bottom: 4rem;
  overflow-y: scroll;
}

.content__group::-webkit-scrollbar {
  display: none;
}

.content__title {
  margin: 0;
  font-family: scotch-display, sans-serif;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
}

.content__title span {
  display: block;
}

.content__title > span:last-child {
  font-family: scotch-display, sans-serif;
  font-style: italic;
  font-weight: 500;
  transform: translateY(-25%);
}

.content .preview__img {
  grid-area: img;
}

.content__thumbs {
  grid-gap: 1vw;
  background-position: auto;
  grid-area: thumbs;
  grid-auto-columns: auto;
  grid-auto-flow: column;
  justify-content: space-between;
  display: grid;
}

.content__thumbs-item {
  cursor: pointer;
  aspect-ratio: 16 / 9;
  opacity: 1;
  width: 50px;
}

.content__thumbs-item:hover {
  border: .5rem var(--color-highlight);
  box-sizing: border-box;
  border-style: none none solid;
}

.content__thumbs-item.thumb_selected {
  border: .5rem var(--color-highlight);
  opacity: .7;
  border-style: none none solid;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.tiles {
  opacity: .4;
  z-index: 100;
  flex-direction: column;
  justify-content: center;
  height: 150vh;
  display: flex;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0)rotate(20deg);
}

.tiles__line {
  animation: 10s linear infinite runner;
  display: flex;
  transform: translateX(25%);
}

.tiles__line:nth-child(2) {
  animation-duration: 16s;
}

.tiles__line:nth-child(3) {
  animation-duration: 22s;
}

@keyframes runner {
  to {
    transform: translateX(-25%);
  }
}

.tiles__line-img {
  filter: blur(.4rem);
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  flex: none;
  width: 25vh;
  height: 25vh;
  margin: 2rem;
}

@media screen and (width >= 53em) {
  main {
    grid-template-columns: 1fr auto;
    grid-template-areas: "page frame";
  }

  .tiles__line-img {
    filter: blur(.6rem);
  }

  .frontPage {
    height: 100vh;
    position: sticky;
  }

  .frame {
    grid-row-gap: 5vh;
    grid-template: "button"
                   "title"
                   "contact";
    height: 100vh;
    padding: 1rem;
  }

  .frame__title-btn {
    display: inherit;
  }

  .frame__title-main, .frame__button-main, .frame__contact-main {
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    margin: auto;
    transform: rotate(180deg);
  }

  .frame__button-main, .frame__contact-main {
    display: inherit;
  }

  .frame__button-main {
    text-align: right;
    white-space: nowrap;
    inline-size: 6rem;
  }

  .frame__contact-main, .frame__button-main {
    text-align: right;
    place-self: center;
  }

  .contact {
    position: fixed;
    transform: translateX(100%);
  }

  .contact__group {
    margin: 10vh 15rem;
  }

  .contact__group span {
    display: block;
  }

  .contact__group .profile-pic {
    width: 5rem;
  }

  .content-wrap {
    width: 100%;
    height: 100vh;
    padding: 2rem;
    position: sticky;
    top: 0;
  }

  .preview-wrap {
    padding: 0 2rem 2rem;
  }

  .preview {
    min-height: 90vh;
  }

  .preview__desc {
    margin: -2.5rem auto 0;
  }

  .preview__title {
    transform: translate3d(0, 50%, 0);
  }

  .preview__img-inner {
    background-position: top;
    background-size: 100%;
  }

  .content {
    grid-template: ". ." 0
                   "img text" 70%
                   "thumbs text"
                   ". ." 1rem
                   / 60% 1fr;
  }

  .content__thumbs-item {
    width: 100px;
  }

  .content__text {
    width: 100%;
  }

  .tiles__line-img {
    width: 40vh;
    height: 40vh;
    margin: 4rem;
  }

  .content__thumbs {
    grid-gap: 2vw;
  }
}

body.content-open .frame__button {
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s, transform .35s;
  transform: translateY(-10px);
}

.frame__button {
  transition: opacity .35s, transform .35s;
}

.content__group {
  margin-bottom: 6rem;
  position: relative;
  overflow-y: scroll;
}

.content__fade {
  background: linear-gradient(to bottom, #0000, var(--color-bg));
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  width: 100%;
  height: 4rem;
  transition: opacity .45s;
  position: sticky;
  bottom: 0;
  left: 0;
}

.content__scroll-indicator {
  z-index: 60;
  pointer-events: none;
  border: 1px solid var(--color-text);
  background: var(--color-bg);
  width: 2rem;
  height: 2rem;
  color: var(--color-text);
  opacity: 0;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  transition: opacity .15s;
  display: flex;
  position: sticky;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

body.content-open .content__fade {
  opacity: 1;
}

body.content-open .content__scroll-indicator {
  opacity: .85;
}

.content__group.scrolled .content__scroll-indicator, .content__group.closing .content__scroll-indicator, .content__group.closing .content__fade {
  opacity: 0;
}

body.content-open .content__fade, body.content-open .content__scroll-indicator {
  transition-delay: .55s;
}

.content__group.closing .content__fade, .content__group.closing .content__scroll-indicator {
  transition-delay: 0s;
}
/*# sourceMappingURL=THG_website_2023.d046a61c.css.map */
