@import url("https://fonts.googleapis.com/css2?family=Fleur+De+Leah&family=Fredericka+the+Great&family=Jost:ital,wght@0,100;0,200;0,400;0,500;0,700;0,900;1,100;1,200;1,400;1,500;1,700;1,900&display=swap");

:root {
  --green: #4d8426;
  --title-font: "Fredericka the Great", serif;
  --body-font: "Jost", sans-serif;
  --serif-font: "Fleur De Leah", serif;
}

* {
  box-sizing: border-box;
}

*::selection {
  background: var(--green);
  text-shadow: 0.14em 0.14em black;
  color: white;
}

html {
  background: #121413;
  color: white;
  overflow-x: hidden;
}

body {
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

#absinthe {
  width: 1400vw;
  transition: margin 0.5s ease-in-out;
}

#absinthe.page0 {
  margin-left: 0vw;
}

#absinthe.page1 {
  margin-left: -100vw;
}
#absinthe.page2 {
  margin-left: -200vw;
}
#absinthe.page3 {
  margin-left: -300vw;
}
#absinthe.page4 {
  margin-left: -400vw;
}
#absinthe.page5 {
  margin-left: -500vw;
}
#absinthe.page6 {
  margin-left: -600vw;
}
#absinthe.page7 {
  margin-left: -700vw;
}
#absinthe.page8 {
  margin-left: -800vw;
}
#absinthe.page9 {
  margin-left: -900vw;
}
#absinthe.page10 {
  margin-left: -1000vw;
}


.absinthe {
  position: relative;
  float: left;
  width: 100%;
  max-width: 100vw;
  height: 105vh;
  display: grid;
  align-content: center;
}

.absinthe-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background-image: url("https://cybersandbox.ca/wp-content/uploads/2022/05/green-paper-bg.jpg");
  background-size: cover;
  background-position: center;
  mix-blend-mode: overlay;
  filter: saturate(0.25) brightness(1.25);
  pointer-events: none;
}

.absinthe article {
  width: 120vmin;
  height: 69vmin;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3vmin 5vmin rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  cursor: pointer;
}

/* .absinthe article section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url("https://cybersandbox.ca/wp-content/uploads/2022/05/green-paper-bg.jpg");
  background-color: var(--green);
  background-size: 100% 100%;
  mix-blend-mode: multiply;
  filter: brightness(1.5) saturate(0.9);
  opacity: 0.8;
  pointer-events: none;
  transition: all 0.5s ease;
} */

.absinthe article:hover section::before {
  opacity: 0.6;
}

.absinthe article img {
  transition: all 0.3s ease;
}

.absinthe .signature {
  position: absolute;
  top: 2vmin;
  right: 2vmin;
  width: 33%;
  min-width: 150px;
  max-height: 8vmin;
  object-fit: contain;
  object-position: top right;
  filter: invert(1);
  mix-blend-mode: screen;
  z-index: 99;
}

.tap-here {
  position: absolute;
  top: 27%;
  left: 19%;
  width: 50%;
  z-index: 10;
  filter: invert(1);
  transition: all 0.3s ease;
  pointer-events: none;
}

article[class] .tap-here {
  opacity: 0;
}

.absinthe section > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.absinthe section {
  transition: all 0.4s ease;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: 2;
}

.absinthe section + section {
  opacity: 0;
  position: absolute;
  top: 0;
}

.absinthe article.flipped section {
  opacity: 1;
}

.absinthe article.flipped section > img {
  transform: scale(1.1);
}

.absinthe section > div {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5vmin;
  font-size: 3vmin;
  z-index: 2;
  line-height: 1.25em;
  font-family: var(--body-font);
  transition: all 0.5s ease;
  background: #00000078;
}

.absinthe section > div::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 125%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 70%
  );
  z-index: -1;
}

.absinthe section * {
  text-shadow: 0 0.1em 0.2em rgba(0, 0, 0, 0.6);
  line-height: inherit;
}

.absinthe section h3 {
  margin: 0;
  margin-bottom: 0.25em;
  font-size: 2.5em;
  font-weight: normal;
  font-family: var(--title-font);
  line-height: 1em;
}

.absinthe section p {
  margin: 0;
}

.absinthe article.flipped section:first-of-type div,
.absinthe article:not(.flipped) section + section div {
  line-height: 2em;
  filter: blur(1.5vmin);
}

.absinthe article:not(.flipped) section + section {
  pointer-events: none;
}

.absinthe section strong {
  font-size: 1.25em;
  line-height: 1.5em;
}

.absinthe section em {
  display: block;
  margin-top: 0.25em;
}

.absinthe q strong {
  font-family: var(--title-font);
}

.absinthe q b {
  font-weight: 900;
}

.absinthe q::before,
.absinthe q::after {
  font-size: 2em;
  vertical-align: middle;
  line-height: 0;
  font-family: var(--title-font);
}

#absinthe nav {
  position: absolute;
  padding: 20px;
  padding-top: 5px;
  bottom: 0;
  left: 0;
  font-size: 0;
  width: 100%;
  text-align: center;
  z-index: 99;
  /*filter: sepia(1) hue-rotate(50deg) saturate(1.5);*/
  border-top: 2px groove transparent;
  transition: all 0.6s ease;
}

#absinthe nav img {
  width: 70px;
  height: 70px;
  filter: brightness(0.75) contrast(1.25) blur(0px);
  border: 2px solid #333;
  background-color: #222;
  transition: all 0.4s ease;
  cursor: pointer;
  margin: -10px 7px;
  object-fit: cover;
}

#absinthe nav img:hover {
  filter: brightness(1) contrast(1) blur(0px);
  border-color: #999;
}

#absinthe nav img:active {
  filter: brightness(0.75) contrast(1) blur(0px);
}

@media only screen and (min-width: 900px) {
  #absinthe nav:hover {
    padding-top: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  #absinthe nav:not(:hover) {
    max-height: 90px;
  }

  #absinthe nav:not(:hover) img {
/*     filter: brightness(0.5) contrast(1) blur(5px);
opacity: 0;
transform: translatey(50px); */
    pointer-events: none;
  }
}

@media only screen and (max-width: 900px) {
  #absinthe .absinthe {
    padding-bottom: 25px;
  }
  #absinthe nav.open {
    padding-top: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-top-color: rgba(255, 255, 255, 0.1);
  }
  #absinthe nav:not(.open) img {
    filter: brightness(0.5) contrast(1) blur(5px);
    opacity: 0;
    transform: translatey(50px);
    pointer-events: none;
  }
}

#absinthe nav button {
  appearance: none;
  font-family: var(--body-font);
  width: 55px;
  height: 55px;
  background: transparent;
  border: 2px solid #333;
  border: none;
  color: inherit;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  font-size: 0;
  filter: saturate(1) brightness(0.8) blur(0);
  opacity: 0.9;
}

#absinthe nav .a-menu::after,
#absinthe nav button::before {
  content: "☛";
  position: absolute;
  text-indent: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://cybersandbox.ca/wp-content/uploads/2022/05/pointy-finger-inv.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#absinthe nav .a-prev::before {
  content: "☚";
  transform: scalex(-1);
}

#absinthe nav button:hover {
  border-color: #444;
  filter: saturate(1) brightness(1) blur(0);
  opacity: 1;
}

#absinthe nav .a-prev {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 9;
}
#absinthe nav .a-next {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 9;
}

#absinthe.page10 .a-next,
#absinthe.page0 .a-prev {
  pointer-events: none;
  user-select: none;
  filter: saturate(0.5) brightness(0.35) blur(1px);
  opacity: 0.7;
}

#absinthe nav .a-menu {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: 20px;
}

#absinthe nav .a-menu::after,
#absinthe nav .a-menu::before {
  background-image: url("https://cybersandbox.ca/wp-content/uploads/2022/05/absinthe-sketch-empty.png");
  filter: unset;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  transition: all 0.3s ease;
  opacity: 1;
}

#absinthe nav .a-menu::after {
  background-image: url("https://cybersandbox.ca/wp-content/uploads/2022/05/absinthe-sketch.png");
}

#absinthe nav.open .a-menu::after {
  opacity: 0;
}

@media only screen and (min-width: 500px) {
  #absinthe nav .a-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    bottom: unset;
    transform: unset;
  }
}

@media only screen and (min-width: 900px) {
  #absinthe nav .a-menu {
    left: unset;
    right: 20px;
    top: 30px;
  }
}

@media only screen and (max-width: 900px) {
  #absinthe nav img {
    margin: 5px;
  }
  #absinthe nav {
    padding: 10px 20px !important;
  }
  #absinthe nav:not(.open) img {
    margin-bottom: -50px;
  }
}

@media only screen and (max-width: 500px) {
  #absinthe nav {
    padding: 25px calc(50vw - 150px) !important;
  }
  #absinthe nav.open {
    padding-bottom: 90px !important;
  }
}

#absinthe h1 {
  font-family: var(--title-font);
  font-size: 7vmin;
  margin: 1em 0 0.25em 0;
  text-align: center;
}

#absinthe h1 b {
  font-family: var(--serif-font);
  font-size: 2em;
  display: block;
  line-height: 0.9em;
  margin: 0 auto;
  margin-top: -0.025em;
  margin-bottom: -0.2em;
  font-weight: normal;
  left: -0.15em;
  position: relative;
  max-width: max-content;
}

#absinthe h1 b::after,
#absinthe h1 b::before {
  content: "____";
  position: absolute;
  letter-spacing: -0.05em;
  right: 105%;
  bottom: 40%;
  font-size: 0.75em;
}

#absinthe h1 b::after {
  right: unset;
  left: 115%;
}

#absinthe .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #d5d8ce;
  mix-blend-mode: color-dodge;
}

@media only screen and (max-width: 600px) {
  #absinthe .title {
    font-size: 25px;
  }
}

@media only screen and (max-height: 650px) {
  #absinthe .title {
    font-size: 18px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1000px) {
  #absinthe .title {
    display: none;
  }
}

@media only screen and (min-width: 1000px) {
  #absinthe .title {
    width: max-content;
    transform: rotate(-90deg) translatex(50%);
    font-size: 40px;
    top: 50vh;
  }
}


.footer-section {
	background: #222736;
}
.footer-section .footer-text {
	padding: 80px 0 30px;
}
.footer-section .footer-text .ft-about {
	margin-bottom: 30px;
}
.footer-section .footer-text .ft-about .logo {
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-about .logo a {
	display: inline-block;
}
.footer-section .footer-text .ft-about p {
	color: #aaaab3;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-about .fa-social a {
	display: inline-block;
	height: 40px;
	width: 40px;
	font-size: 16px;
	line-height: 40px;
	text-align: center;
	color: #ffffff;
	border: 1px solid #5A4D48;
	border-radius: 50%;
	-webkit-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	margin-right: 7px;
}
.footer-section .footer-text .ft-about .fa-social a:hover {
	background: #dfa974;
	border-color: #dfa974;
}
.footer-section .footer-text .ft-contact {
	margin-bottom: 30px;
}
.footer-section .footer-text .ft-contact h6 {
	font-size: 14px;
	color: #dfa974;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	font-family: "Cabin", sans-serif;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-contact ul li {
	font-size: 16px;
	color: #aaaab3;
	line-height: 32px;
	list-style: none;
}
.footer-section .footer-text .ft-newslatter h6 {
	font-size: 14px;
	color: #dfa974;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 3px;
	font-family: "Cabin", sans-serif;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-newslatter p {
	color: #aaaab3;
	margin-bottom: 20px;
}
.footer-section .footer-text .ft-newslatter .fn-form {
	position: relative;
}
.footer-section .footer-text .ft-newslatter .fn-form input {
	width: 100%;
	height: 50px;
	border-radius: 2px;
	background: #393D4A;
	border: none;
	padding-left: 20px;
	font-size: 16px;
	color: #707079;
}
.footer-section .footer-text .ft-newslatter .fn-form button {
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	background: #dfa974;
	color: #ffffff;
	padding: 0 16px;
	height: 50px;
	border: none;
	border-radius: 0 2px 2px 0;
}
.footer-section .copyright-option {
	background: rgba(16, 20, 31, 0.2);
	padding: 20px 0;
}
.footer-section .copyright-option ul li {
	list-style: none;
	display: inline-block;
	margin-right: 34px;
}
.footer-section .copyright-option ul li:last-child {
	margin-right: 0;
}
.footer-section .copyright-option ul li a {
	font-size: 16px;
	color: #aaaab3;
}
.footer-section .copyright-option .co-text {
	font-size: 16px;
	color: #707079;
	text-align: right;
}
	.footer-section .copyright-option ul {
		text-align: center;
		margin-bottom: 10px;
	}
	.footer-section .copyright-option .co-text {
		text-align: center;
	}
		.footer-section .copyright-option ul li {
		margin-right: 25px;
	}
	@media only screen and (max-width: 479px) {
	.footer-section .copyright-option ul li {
		margin-bottom: 5px;
	}}
