:root {
  /* Colours */
  --c-primary: #a4927e;
  --c-odin: #919184;
  --c-mjolnir: #a5927d;
  --c-yggdrasill: #bd8c6c;
  --c-secondary: #c9c9c9;
  --c-bright: #fff;
  --c-dark: #000;
  --c-dark-t50: #0000007b;
  --c-primary-opc-50: #a4927e86;

  /* Variables */
  --nav-height: 10vh;

  /* Fonts */
  --text-default: 1.2rem;

  /* Bottle dimensions */
  --bottle-size-h: 60vh;
  --bottle-size-w: 60vw;
}
@media only screen and (max-width: 1520px) {
  :root {
    /* Bottle dimensions - laptop */
  --bottle-size-h: 500px;
  --bottle-size-w: 500px;
  }
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Rowdies", sans-serif;
  color: var(--c-bright);
  font-size: var(--text-default);
  overflow-x: hidden;
}
p {
  line-height: 150%;
  margin-bottom: var(--text-default);
}
h1 {
  font-size: 2.5em;
  line-height: 100%;
  margin-block-start: calc(var(--text-default) * 2);
  margin-block-end: calc(var(--text-default) * 1.2);
}
h2 {
  font-size: 2.25em;
  line-height: 100%;
  margin-block-start: calc(var(--text-default) * 2);
  margin-block-end: calc(var(--text-default) * 1.2);
}
h3 {
  font-size: 2em;
  line-height: 100%;
  margin-block-start: calc(var(--text-default) * 2);
  margin-block-end: calc(var(--text-default) * 1.2);
}
h4 {
  font-size: 1.75em;
  line-height: 100%;
  margin-block-start: calc(var(--text-default) * 2);
  margin-block-end: calc(var(--text-default) * 1.2);
}
h5 {
  font-size: 1.5em;
  line-height: 100%;
  margin-block-start: calc(var(--text-default) * 2);
  margin-block-end: calc(var(--text-default) * 1.2);
}
h6 {
  font-size: 1.25em;
  line-height: 100%;
  margin-block-start: calc(var(--text-default) * 2);
  margin-block-end: calc(var(--text-default) * 1.2);
}
/* Flex */
.d-flex {
  display: flex;
}
.col {
  flex-direction: column;
}
.row {
  flex-direction: row;
}
.v-center {
  align-items: center;
}
.h-center {
  justify-content: center;
}
.h-end {
  justify-content: end;
}
/* Font */
.xxl {
  font-size: 6vw;
  margin-block-start: 0;
}
.xl {
  font-size: 4em;
}
.md {
  font-size: 2em;
}
.nm {
  font-size: 1em;
}
.sm {
  font-size: 0.85em;
}
.xs {
  font-size: 0.65em;
}
.xxs {
  font-size: 0.5em;
}
/* Weight */
.fw-bolder {
  font-weight: bolder;
}
.fw-bold {
  font-weight: bold;
}
.fw-normal {
  font-weight: normal;
}
.fw-light {
  font-weight: light;
}
/* Letter spacing */
.ls-lg {
  letter-spacing: 10px;
}
.ls-md {
  letter-spacing: 5px;
}
.ls-nm {
  letter-spacing: normal;
}
.ls-sm {
  letter-spacing: 3px;
}
/* Gaps */
.g-lg {
  gap: 2.5em;
}
.g-md {
  gap: 2em;
}
.g-sm {
  gap: 1.5em;
}
/* Container height/width */
.h-100 {
  min-height: 100vh;
}
.h-50 {
  min-height: 50vh;
}
.h-30 {
  min-height: 30vh;
}
.h-25 {
  min-height: 25vh;
}
.col-100 {
  width: 100vw;
}
.col-50 {
  width: 50%;
}
.col-40 {
  width: 40%;
}
.col-33 {
  width: 33.33%;
}
.col-30 {
  width: 30%;
}
.col-25 {
  width: 25%;
}
/* Container backdrops */
.bg-dark {
  background-color: var(--c-dark);
}
.bg-primary {
  background-color: var(--c-primary);
}
.bg-odin {
  background-color: var(--c-odin);
}
/* Text */
.t-center {
  text-align: center;
}
/* z-index */
.z-0 {
  position: relative;
  z-index: 0;
}
.z-1 {
  position: relative;
  z-index: 1;
}
.z-2 {
  position: relative;
  z-index: 2;
}
.z-3 {
  position: relative;
  z-index: 3;
}
/* Overflow */
.of-hide {
  overflow: hidden;
}
/* Positioning */
.ps-rel {
  position: relative;
}
.ps-abs {
  position: absolute;
}
/* Container padding */
.p-lg {
  padding: 50px;
}
.p-md {
  padding: 25px;
}
.p-sm {
  padding: 10px;
}
/* end presets */
#logo {
  margin-top: -2.5em;
  margin-bottom: -2.5em;
  transform: scale(1.2);
}
.navbar-wrapper {
  height: var(--nav-height);
}
.nav-container {
  position: relative;
  top: 50px;
  height: 80px;
  padding-left: 2.5em;
  background-color: #0000007b;
  backdrop-filter: blur(5px);
  justify-content: space-between;
  align-items: center;
}
nav ul li {
  list-style: none;
}
.navlist {
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.navlist a {
  color: var(--c-bright);
  text-decoration: none;
  transition: 150ms;
}
.navlist a:hover {
  color: var(--c-secondary);
}
.navlist li:nth-child(even) {
  padding: 0 45px;
}
.navlist li:last-child {
  background: var(--c-primary);
  line-height: 80px;
  padding: 0 45px;
}
#hero {
  margin-top: calc(-1 * var(--nav-height));
  height: 100vh;
  background: url(/img/celebration.jpg) var(--c-primary-opc-50);
  background-size: cover;
  background-blend-mode: exclusion;
  position: relative;
  overflow: hidden;
}
.hero-content {
  align-items: center;
  justify-content: center;
  text-align: center;
  /*transform: translateY(-60px);*/
}
#bottle-container {
  position: relative;
  bottom: -1000px;
  width: 100vw;
  margin: 0 auto;
  -webkit-transition: left 1s ease;
  transition: left 1s ease;
  animation-name: slideup;
  animation-delay: 0.5s;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
@keyframes slideup {
  0% {
    bottom: -1000px;
  }
  100% {
    bottom: -16%;
  }
}
#beer-odin {
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(/img/bottle-horn-of-odin.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: var(--bottle-size-w);
  height: var(--bottle-size-h);
  transform: rotate(-15deg);
}
#beer-mjolnir {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url(/img/bottle-mjolnir.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: var(--bottle-size-w);
  height: var(--bottle-size-h);
}
#beer-yggdrasill {
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(/img/bottle-yggdrasill.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: var(--bottle-size-w);
  height: var(--bottle-size-h);
  transform: rotate(15deg);
}
/* Sections */
.btn {
  background-color: var(--c-primary-opc-50);
  border: 2px solid var(--c-primary);
  backdrop-filter: blur(5px);
  padding: 20px 40px;
  margin-top: calc(var(--text-default) / 2);
  color: var(--c-bright);
  text-decoration: none;
  user-select: none;
  transition: .3s;
}
.btn:hover {
  background-color: var(--c-primary);
  color: var(--c-bright);
}
.content-wrapper {
  margin: 0 auto;
  width: 90vw;
}
.video-container {
  position: absolute;
  right: 0;
  width: 70vw;
}
.video-container video {
  width: 100%;
}
.mask-cloud {
  -webkit-mask-image: url(/img/cloud-mask.png);
  mask-image: url(/img/cloud-mask.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  mask-position: center;
}
.vikingecenter-about {
  background: url(/img/langhus-2.jpg) var(--c-odin);
  background-size: cover;
  background-blend-mode: multiply;
}
#carousel-wrapper {
  position: relative;
  margin: 0 auto;
  width: 475px;
  height: 278px;
}
#image-carousel img {
  width: 475px;
}
.slide {
  border: none;
  opacity: 0;
  position: absolute;
  left: 0;
  -webkit-transition: opacity 2s linear;
  -moz-transition: opacity 2s linear;
  -o-transition: opacity 2s linear;
  transition: opacity 2s linear;
}
.visible {
  opacity: 1;
}
#vegvisir {
  background: url(/img/vegvisir.png);
  background-repeat: no-repeat;
  background-size: contain;
  max-width: 50vw;
  left: -25%;
  top: -50%;
  opacity: 0.15;
  width: 100%;
  aspect-ratio: 1/1;
}
#jormungandr-left {
  position: absolute;
  bottom: -20%;
  left: -12%;
  background: url(/img/jormungandr.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
  aspect-ratio: 16/9;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
#jormungandr-right {
  position: absolute;
  bottom: -20%;
  right: -12%;
  background: url(/img/jormungandr.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 250px;
  aspect-ratio: 16/9;
}