nav {
  border: 0;
  padding: 0;
  position: absolute;
  left: 0;
  top: 0;
}

.menu-btn {
  position: absolute;
  z-index: 4;
  left: 30px;
  top: 15px;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}
.menu-btn .btn-line {
  width: 28px;
  height: 3px;
  margin: 0 0 5px 0;
  background: #e8e7dd;
  transition: all 0.5s ease-in-out;
}
.menu-btn.close {
  transform: rotate(180deg);
}
.menu-btn.close .btn-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  background: rgb(125, 5, 5);
}
.menu-btn.close .btn-line:nth-child(2) {
  opacity: 0;
}
.menu-btn.close .btn-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  background: rgb(125, 5, 5);
}

.btn-menu {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 1;
  z-index: 3;
  visibility: hidden;
}
.btn-menu.show {
  visibility: visible;
}
.btn-menu-nav {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  float: left;
  width: 25%;
  min-width: 250px;
  height: 75vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: rgba(51, 61, 60, 0.95);
  list-style: none;
  transform: translate3d(0, -100%, 0);
  transition: all 0.5s ease-in-out;
}
.btn-menu-nav.show {
  transform: translate3d(0, 0, 0);
}
.btn-menu .nav-item {
  transform: translate3d(-600px, 0, 0);
  transition: all 0.5s ease-in-out;
}
.btn-menu .nav-item.show {
  transform: translate3d(0, 0, 0);
}
.btn-menu .nav-item.current {
  color: #aaa;
}
.btn-menu .nav-link {
  display: inline-block;
  position: relative;
  font-family: "NotoSans-Light", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  padding: 1rem 0;
  font-weight: 300;
  color: set-text-color(#ccc);
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
.btn-menu .nav-link:link, .btn-menu .nav-link:visited {
  color: #ccc;
}
.btn-menu .nav-link:hover {
  color: #fdd;
}

.nav-item:nth-child(1) {
  transition-delay: 0.1s;
}

.nav-item:nth-child(2) {
  transition-delay: 0.2s;
}

.nav-item:nth-child(3) {
  transition-delay: 0.3s;
}

.nav-item:nth-child(4) {
  transition-delay: 0.4s;
}

.nav-item:nth-child(5) {
  transition-delay: 0.5s;
}

li.nav-tabs {
  font-family: "NotoSans-Light", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  background: #1b1a18;
  z-index: 3;
}
li.nav-tabs a.nav-link { /* overrides default bootstrap settings */
  color: rgb(168, 179, 177);
  border: 1px solid #1b1a18;
}
li.nav-tabs a.nav-link.active {
  background: rgb(128, 128, 128);
  color: rgb(30, 30, 30);
  border: 1px solid #1b1a18;
}
li.nav-tabs a.nav-link:hover {
  border: 1px solid #666;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/Roboto-Regular.ttf");
}
@font-face {
  font-family: "NotoSansMono";
  src: url("/assets/fonts/NotoSansMono-Regular.ttf");
}
@font-face {
  font-family: "NotoSansMonoCond";
  src: url("/assets/fonts/NotoSansMono_Condensed-Regular.ttf");
}
@font-face {
  font-family: "NotoSans";
  src: url("/assets/fonts/NotoSans-Medium.ttf");
}
@font-face {
  font-family: "NotoSans-Light";
  src: url("/assets/fonts/NotoSans-Light.ttf");
}
@font-face {
  font-family: "NotoSans-Semi";
  src: url("/assets/fonts/NotoSans-SemiBold.ttf");
}
@font-face {
  font-family: "NotoSans-Bold";
  src: url("/assets/fonts/NotoSans-Bold.ttf");
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: rgb(177, 233, 234);
}
a:link {
  color: rgb(177, 233, 234);
}
a:visited {
  color: rgb(217, 222, 184);
}
a:hover {
  color: rgb(211, 152, 89);
  transition: all 0.5s ease-in-out;
}
a:active {
  color: #3c1ab9;
}

body {
  color: #e8e7dd;
  background: black;
  font-family: "NotoSans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  min-height: 100%;
  margin: 0;
  padding: 0;
}

button {
  font-family: "NotoSans", "Gill Sans MT", Calibri, sans-serif;
  text-align: center;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  padding: 0 20px;
  background: transparent;
}
button.active {
  background: #802608;
  color: #eee;
}
button.sectLink {
  text-transform: uppercase;
  background-color: rgba(230, 230, 230, 0.5);
  padding: 10px 0;
  margin: 10px auto;
  color: #222;
  width: 20%;
  min-width: 150px;
}
button.sectLink a {
  color: #222;
}

div.bookImg {
  width: 50%;
}
div.bookInfo {
  width: 50%;
  padding-right: 5%;
}
div.debug p {
  font-family: "NotoSansMono", "Courier New", Courier, monospace;
}
div.ebook {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
div.featuredBook {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
div.fBookImg {
  width: 50%;
}
div.fBookInfo {
  width: 50%;
  padding-left: 5%;
}
div.fileGroup {
  display: flex;
  flex-direction: row;
  justify-content: left;
}
div.fileSection {
  flex-grow: 1;
  border: 1px solid #444;
  padding: 0 50px;
}
div.fileList {
  text-align: left;
}
div.folioCopy {
  text-align: left;
  padding: 20px 10px;
}
div.info {
  padding: 0 15%;
}
div.projectSection {
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #444;
}
div.folioContentsItem {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #444;
}
div.folioContentsItem .folioText {
  width: 40%;
  padding-right: 5%;
}
div.folioContentsItem .folioHdrImg {
  width: 60%;
  max-width: 500px;
}
div.rbCollection {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 10px 0;
}
div.collText {
  width: 50%;
  padding-right: 5%;
}
div.collImg {
  width: 50%;
}
div.collImg img {
  width: 100%;
}
div.masthead {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
div.slideWrap {
  display: flex;
  max-width: 100%;
  margin: 0 auto;
}
div.slideshow {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 600px;
}
div.slideBox {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}
div.socialLink {
  display: flex;
  height: auto;
  width: 30px;
  margin: 0 10px;
  opacity: 0.7;
}
div.socialLink img {
  width: 100%;
}

footer {
  display: flex;
  flex-direction: row;
  column-gap: 20%;
  justify-content: space-evenly;
  align-items: top;
  padding: 10px;
  text-align: center;
  background: transparent;
  min-height: 200px;
  /* background: $box-bg; */
}
footer p {
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  color: rgb(175, 175, 175);
  font-family: "NotoSans-Light", "Gill Sans MT", Calibri, sans-serif;
  font-weight: 400;
}

h1 {
  font-size: 30px;
  letter-spacing: 0.1em;
}
h1.siteTitle {
  text-align: center;
  font-size: 1.5rem;
}

h2 {
  font-size: 26px;
  letter-spacing: 0.2em;
}
h2#pagehead {
  text-align: center;
  margin: 20px auto 20px auto;
  text-transform: uppercase;
}
h2#pagehead a {
  color: rgb(175, 175, 175);
}
h2.sectionHead {
  text-align: center;
  text-transform: uppercase;
}

h3 {
  font-size: 23px;
  letter-spacing: 0.1em;
}
h3.fileListHdr {
  letter-spacing: 0;
}
h3.folioTitle {
  font-size: 24px;
}

img {
  height: auto;
  width: 100%;
}
img.avatar {
  width: 35%;
  float: left;
  border: 3px solid #aaa;
  padding: 1px;
  margin: 0 15px 10px 0;
}
img.ebookInset {
  float: right;
  width: 30%;
  border: 2px solid #aaa;
  margin-left: 15px;
}
img.novelImg {
  max-width: 200px;
  margin: 0 auto;
  border: 1px solid #999;
  text-align: center;
}
img.ssImg {
  display: flex;
  position: absolute;
  width: 100%;
  height: auto;
  max-height: 100%;
  border: 2px solid #aaa;
  left: 0;
  top: 0;
  margin: 0 auto;
  opacity: 1;
  transition: opacity 1s ease-in-out;
}
img.ssImg.folio {
  width: auto;
  max-width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
img.ssImg.folio.placeholder {
  visibility: hidden;
  border: 2px transparent rgba(0, 0, 0, 0);
}

li.fileListItem {
  list-style: inside square;
}

p {
  font-size: 15px;
}
p.bookDescr {
  font-size: 0.9em;
  font-weight: 200;
}
p.bookDescr.small {
  font-size: 0.7em;
  color: #aaa;
}
p.caption {
  text-align: center;
  opacity: 0.9;
  transition: opacity 1s;
  padding: 10px;
}
p.french {
  font-style: italic;
}

section.pageSection {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 5%;
}

small {
  font-size: 0.7em;
  color: #bfbca0;
}

span.hData {
  display: none;
}

#bookInfo h1 {
  text-align: center;
  padding: 20px 0;
}
#bookInfo img.bookpgCover {
  height: auto;
  width: 100%;
  border: 3px solid #aaa;
}
#bookInfo .bookSlides {
  padding: 0 10%;
}

#pageWrap {
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#pageWrap .ebook {
  padding: 10px 0;
  margin: 10px 0;
  border-top: 1px solid #555;
}
#pageWrap img.bookCover {
  width: 100%;
  height: auto;
}
#pageWrap .sectionIntro {
  text-align: center;
  width: 100%;
}
#pageWrap .pageSection {
  padding: 10px 0;
  margin: 10px 0;
  border-top: 1px solid #555;
}

#imgGalleryWrap {
  position: relative;
  margin: 10px auto 15px auto;
  text-align: center;
}
#imgGalleryWrap .imgGallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#imgGalleryWrap .imgGallery.mainImg {
  /* wrapper around main image section */
  margin: 10px auto 15px auto;
}
#imgGalleryWrap .imgGallery.img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  border: 10px solid #588;
  /* object-fit: contains; */
  position: absolute;
  left: 0;
  top: 0;
  margin: 0 auto;
  opacity: 1;
  transition: opacity 2s;
}
#imgGalleryWrap .imgGallery.img.placeholder {
  position: relative;
  opacity: 0;
}
#imgGalleryWrap .imgGallery.thumbnails {
  /* UL of thumbmails */
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  position: unset;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  justify-content: center;
  gap: 5px;
  width: 100%;
}
#imgGalleryWrap .imgGallery.thumbImg {
  /* IMG element */
  margin: 0;
  padding: 0;
  height: auto;
  width: 100%;
  object-fit: contain;
  position: relative;
  filter: brightness(0.8);
  transition: filter 0.25s linear, transform 0.15s linear;
}
#imgGalleryWrap .imgGallery.thumbImg.selected {
  border: 2px solid red;
  filter: brightness(1);
}
#imgGalleryWrap .imgGallery.thumbImg:hover {
  cursor: pointer;
  filter: brightness(1);
  z-index: 1;
}

#main {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}

#content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
  justify-content: center;
  background: #1b1a18;
  max-width: 1000px;
  margin: 0 auto;
}

.bookSlides {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bookSlides .slideshow {
  margin: 0 auto;
}

.centred {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.hide {
  opacity: 0 !important;
}

@media screen and (min-width: 1601px) {
  .slideshow {
    height: 525px;
  }
}
@media screen and (min-width: 1281px) and (max-width: 1600px) {
  .slideshow {
    height: 475px;
  }
}
@media screen and (min-width: 801px) and (max-width: 1280px) {
  .slideshow {
    height: 425px;
  }
}
@media screen and (min-width: 501px) and (max-width: 800px) {
  .slideshow {
    height: 375px;
  }
  .bookSlides {
    padding: 0;
  }
  .fBookImg {
    min-width: 100%;
  }
  .fBookInfo {
    min-width: 100%;
  }
}
@media screen and (max-width: 500px) {
  h1 {
    font-size: 26px;
    letter-spacing: none;
  }
  h2 {
    font-size: 22px;
    letter-spacing: none;
  }
  h3 {
    font-size: 18px;
    letter-spacing: none;
  }
  .slideshow {
    height: 325px;
  }
  .bookImg {
    min-width: 100%;
  }
  .bookInfo {
    min-width: 100%;
  }
  .bookSlides {
    padding: 0;
  }
  .collText {
    min-width: 100%;
  }
  .collImg {
    min-width: 100%;
  }
  .fBookImg {
    min-width: 100%;
  }
  .fBookInfo {
    min-width: 100%;
  }
  .folioText {
    min-width: 100%;
  }
  .folioHdrImg {
    min-width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .navbar {
    display: none;
  }
}
@media screen and (min-width: 801px) {
  .menu-btn {
    display: none;
  }
  .menu-nav {
    display: none;
  }
}

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