/* FONT IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,400;1,400&display=swap" rel="stylesheet');

  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #f3efeb;
  --content-background-color: transparent;
  --sidebar-background-color: transparent;

  /* Text Colors: */
  --text-color: #170f08;
  --sidebar-text-color: #000000;
  --link-color: #170f08;
  --link-color-hover: #66605c;

  /* Text: */
  --font: Lucida Console, monospace;
  --heading-font: 'Rubik', sans-serif;
  --font-size: 14px;

  /* Other Settings: */
  --margin: 4px;
  --padding: 20px;
  --border: none;
  --round-borders: 0px;
  --sidebar-width: 200px;
}

/* -------------------------------------------------------- */
/* BASICS */
/* -------------------------------------------------------- */

* {
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-size: var(--font-size);
  margin: 0;
  padding: var(--margin);
  color: var(--text-color);
  font-family: var(--font);
  line-height: 1.2;
  background: var(--background-color);
  background-image: url("");
}

::selection {
  /* (Text highlighted by the user) */
  background: rgba(0, 0, 0, 0.2);
}

mark {
  /* Text highlighted by using the <mark> element */
  background-color: var(--text-color);
  color: var(--background-color);
}

span {
  font-size: 0.85em;
  letter-spacing: 0.05em;
  background: var(--text-color);
  color: var(--background-color);
  
  border: 2px solid;
  border-color: var(--text-color);
}

/* Links: */
a {
  text-decoration: underline;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: var(--link-color-hover);
  text-decoration: none;
}

/* -------------------------------------------------------- */
/* LAYOUT */
/* -------------------------------------------------------- */

.layout {
  width: 1200px;
  display: grid;
  grid-gap: var(--margin);
  grid-template: "header" auto "main" auto "footer" auto / auto;
  /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
}

main {
  grid-area: main;
  overflow-y: auto;
  padding: var(--padding);
  background: var(--content-background-color);
  border: var(--border);
  border-radius: var(--round-borders);
}

/* -------------------------------------------------------- */
/* HEADER */
/* -------------------------------------------------------- */

header {
  grid-area: header;
  font-size: 1.1em;
  border: var(--border);
  border-radius: var(--round-borders);
  background: var(--content-background-color);
}

.header-content {
  padding:0 /*var(--padding);*/
}

.header-title {
  font-family: var(--heading-font);
  font-size: 0.0em;
  font-weight: bold;
}

.header-image img {
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------- */
/* SIDEBARS */
/* -------------------------------------------------------- */

aside {
  grid-area: aside;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  background: var(--sidebar-background-color);
  padding: var(--padding);
  color: var(--sidebar-text-color);
}

.left-sidebar {
  grid-area: leftSidebar;
}

.right-sidebar {
  grid-area: rightSidebar;
}

.sidebar-title {
  font-weight: bold;
  font-size: 1.2em;
  font-family: var(--heading-font);
}

.sidebar-section:not(:last-child) {
  margin-bottom: 3em;
}

.sidebar-section ul,
.sidebar-section ol {
  padding-left: 1.5em;
}

.sidebar-section > *:not(p):not(ul):not(ol):not(blockquote) {
  margin-top: 10px;
}

/* Sidebar Blockquote: */

.sidebar-section blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
  overflow: hidden;
}

.sidebar-section blockquote > *:first-child {
  margin-top: 0;
}

.sidebar-section blockquote > *:last-child {
  margin-bottom: 0;
}

/* Site Button: */

.site-button {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-button textarea {
  font-family: monospace;
  font-size: 0.7em;
}

/* -------------------------------------------------------- */
/* FOOTER */
/* -------------------------------------------------------- */

footer {
  grid-area: footer;
  border: var(--border);
  border-radius: var(--round-borders);
  overflow: hidden;
  font-size: 0.85em;
  padding: 15px;
  background: var(--content-background-color);
  display: flex;
  justify-content: center;
}

footer a,
footer a:visited {
  color: var(--link-color);
}

footer a:hover,
footer a:focus {
  color: var(--link-color-hover);
}

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

nav {
  margin-bottom: 3em;
}

nav .sidebar-title {
  margin-bottom: 0.5em;
}

nav ul {
  margin: 0 -5px;
  padding: 0;
  list-style: none;
  user-select: none;
}

nav ul li {
  margin-bottom: 0;
}

nav > ul li > a,
nav > ul li > strong,
nav > ul li > p {
  display: inline-block;
}

nav > ul li > a,
nav > ul li > details summary,
nav > ul li > strong,
nav > ul li > p {
  padding: 5px 10px;
}

nav > ul li > a.active,
nav > ul li > details.active summary {
  font-weight: bold;
}

nav ul summary {
  cursor: pointer;
}

nav ul ul li > a,
nav ul ul li > p {
  padding-left: 30px;
}

/* NAVIGATION IN HEADER */

header nav {
  margin-bottom: -15px;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
  margin: 5px;
  margin-left: 25px;
  text-align: left;
}

header nav ul li {
  position: relative;
}

header nav ul li a:hover {
      background-color: var(--text-color);
  color: var(--background-color);
}

header nav ul li:first-child > a {
  padding-left: 0;
}

header nav ul li:last-child > a {
  padding-right: 0;
}

/* Subnavigation (Drop-Down): */

header nav ul ul {
  background: var(--background-color);
  display: none;
  position: absolute;
  text-align: right;
  top: 13px;
  left: -120px;
  padding: 0.5em;
  z-index: 1;
  border: 10px;
  min-width: 100%;
  box-shadow: 0px 1px 5px rgba(0,0,0,0);
}

header nav ul li:hover ul,
header nav ul li:focus-within ul {
  display: block;
}

header nav ul li strong {
  color: var(--link-color);
  text-decoration: underline;
  font-weight: normal;
}

header nav ul ul li a {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

header nav ul ul li a:hover {
  background-color: var(--text-color);
  color: var(--background-color);
}

/* -------------------------------------------------------- */
/* CONTENT */
/* -------------------------------------------------------- */

main {
  line-height: 1.6;
}

main a,
main a:visited {
  color: var(--link-color);
}

main a:hover,
main a:focus {
  background-color: var(--text-color);
  color: var(--background-color);
}

main p,
main .image,
main .full-width-image,
main .two-columns {
  margin: 0.75em 0;
}

main .three-columns {
  margin: 0.75em 0;
}

main .two-rows {
  margin: 0.75em 0;
}

main ol,
main ul {
  list-style-type: none;
  margin: 0;
  margin-top: 20px;
  padding: 0;
}

main ol li,
main ul li {
  margin-bottom: 0.5em;
  line-height: 1.3;
}

main ol {
  padding-left: 2em;
}

main blockquote {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  margin: 1em 0;
  border-radius: 10px;
}

main pre {
  margin: 1em 0 1.5em;
}

main code {
  text-transform: none;
}

main center {
  margin: 1em 0;
  padding: 0 1em;
}

main hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}


/* HEADINGS: */

hr {
  height:2px;
  border-width:0;
  color:var(--text-color);
  background-color:var(--text-color);
  margin-top: 0em;
  margin-bottom: 0em; 
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  font-family: var(--heading-font);
  margin-bottom: 0;
  line-height: 1.5;
    letter-spacing: 1px;
}

main h1:first-child,
main h2:first-child,
main h3:first-child,
main h4:first-child,
main h5:first-child,
main h6:first-child {
  margin-top: 0;
}

main h1 {
  font-size: 1.5em;
}

main h2 {
  font-size: 1.4em;
}

main h3 {
  font-size: 1.3em;
}

main h4 {
  font-size: 1.2em;
}

main h5 {
  font-size: 1.1em;
}

main h6 {
  font-size: 1em;
}

/* COLUMNS: */

.two-columns {
  display: flex;
    column-gap: 30px;
}

.two-columns > * {
  /*flex: 1 1 0;*/
  margin: 0;
}

.two-columns > *:first-child {
  flex: 1 1 0;
  padding-right: 0.75em;
}

.two-columns > *:last-child {
  flex: 1.3 1 0;
  padding-left: 0.75em;
}


.two-rows {
  display: flex;
    row-gap: 30px;
}

.two-rows > * {
  /*flex: 1 1 0;*/
  margin: 0;
}

.two-rows > *:first-child {
  flex: 1 1 0;
  padding-top: 0.75em;
}

.two-rows > *:last-child {
  flex: 1.3 1 0;
  padding-bottom: 0.75em;
}



.three-columns {
  display: flex;
  column-gap: 20px;
}

.left {
  flex: 1 1 0;
  padding-right: 0.75em;
}

.middle {
  flex: 1 1 0;
  padding-right: 0.75em;
}

.right {
  flex: 1 1 0;
  padding-right: 0.75em;
}



/* Create two equal columns that floats next to each other */
.response-column {
  float: right;
  width: 50%;
  padding: 10px;
}

/* Clear floats after the columns */
.response-row:after {
  content: "";
  display: table;
  clear: both;
}

.response-column-video {
  float: right;
  width: 55%;
  padding: 10px;
}

.response-column-text {
  float: right;
  width: 45%;
  padding: 10px;
}

.response-column-s-wire {
  float: right;
  width: 63%;
  padding: 10px;
}

.response-column-s-wires {
  float: right;
  width: 37%;
  padding: 10px;  
}

.response-column-s-turn {
  float: right;
  width: 38%;
  padding: 10px;   
}

.response-column-s-text {
  float: right;
  width: 62%;
  padding: 10px;   
}

.response-column-p-turn {
  float: right;
  width: 67%;
  padding: 10px;   
}

.response-column-p-text {
  float: right;
  width: 33%;
  padding: 10px;   
}

.response-column-rb-wire {
  float: right;
  width: 52%;
  padding: 10px;   
}

.response-column-rb-turn {
  float: right;
  width: 48%;
  padding: 10px;   
}
.response-column-eem-wire {
  float: right;
  width: 53%;
  padding: 10px;   
}

.response-column-eem-turn {
  float: right;
  width: 47%;
  padding: 10px;   
}
.response-column-d-wire {
  float: right;
  width: 56%;
  padding: 10px;   
}

.response-column-d-turn {
  float: right;
  width: 44%;
  padding: 10px;   
}

.response-column-pa-text {
  float: right;
  width: 25%;
  padding: 10px;   
}

.response-column-pa-wire {
  float: right;
  width: 75%;
  padding: 10px;   
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .response-column {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .response-column-video {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-text {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-s-wire {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .response-column-s-wires {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-s-text {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-s-turn {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-p-text {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-p-turn {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-rb-wire {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-rb-turn {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-eem-wire {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-eem-turn {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-d-wire {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-d-turn {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-pa-text {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .response-column-pa-wire {
    width: 100%;
  }
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}

.response-video {
  height: 355px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .response-video{
    height: 250px;
  }
}

/* -------------------------------------------------------- */
/* ACCESSIBILITY */
/* -------------------------------------------------------- */

/* please do not remove this. */

#skip-to-content-link {
  position: fixed;
  top: 0;
  left: 0;
  display: inline-block;
  padding: 0.375rem 0.75rem;
  line-height: 1;
  font-size: 1.25rem;
  background-color: var(--content-background-color);
  color: var(--text-color);
  transform: translateY(-3rem);
  transition: transform 0.1s ease-in;
  z-index: 99999999999;
}

#skip-to-content-link:focus,
#skip-to-content-link:focus-within {
  transform: translateY(0);
}

/* -------------------------------------------------------- */
/* MOBILE RESPONSIVE */
/* -------------------------------------------------------- */

/* CSS Code for devices < 800px */
@media (max-width: 800px) {
  body {
    font-size: 14px;
  }

  .layout {
    width: 100%;
    grid-template: "header" auto  "main" auto "footer" auto / 1fr;
    /* Confused by the grid? Check out my tutorial: https://petrapixel.neocities.org/coding/positioning-tutorial#grid */
  }

  .left-sidebar { 
    display: none;
  }
  .right-sidebar { 
    display: none;
  }

  aside {
    border-bottom: 1px solid;
    padding: 9px;
    font-size: 0.9em;
  }

  
  nav {
    padding: 0;
  }

  nav > ul {
    padding-top: 0.5em;
  }

  nav > ul li > a,
  nav > ul li > details summary,
  nav > ul li > strong {
    padding: 0.5em;
  }

  main {
    max-height: none;
    padding: 15px;
  }

  .images {
    flex-wrap: wrap;
  }

  .images img {
    width: 100%;
  }

  #skip-to-content-link {
    font-size: 1rem;
  }
}







.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: var(--background-color);
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: var(--background-color);
  margin: auto;
  
  display: block;
  margin-left: auto;
  margin-right: auto;
  
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

/* The Close Button */
.close {
  color: var(--text-color);
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
  background-color: var(--background-color);
  border:none;
}

.close:hover,
.close:focus {
  color: var(--link-color-hover);
  text-decoration: none;
  cursor: pointer;
  background-color: var(--background-color);
    border:none;
}

.mySlides {
  display: none;
}

.mySlidesOne {
  display: none;
}

.mySlidesTwo {
  display: none;
}

.mySlidesThree {
  display: none;
}

.mySlidesFour {
  display: none;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  text-decoration: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  color: var(--link-color-hover);
  background-color: rgba(0, 0, 0, 0.0);
}

/* Number text (1/3 etc) */
.numbertext {
  color: var(--background-color);
  font-size: 0px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: var(--background-color);
  padding: 2px 16px;
  color: var(--text-color);
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
}

.demo {
  opacity: 0.0;
  width: 0;
  height: 0;
}

.demoOne {
  opacity: 0.0;
    width: 0;
  height: 0;
}

.demoTwo {
  opacity: 0.0;
    width: 0;
  height: 0;
}

.demoThree {
  opacity: 0.0;
    width: 0;
  height: 0;
}

.demoFour {
  opacity: 0.0;
    width: 0;
  height: 0;
}

.active,
.demo:hover {
  opacity: 0;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {

}









* {
  box-sizing: border-box;
}

slide-img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.slide-container {
  position: relative;
}

/* Hide the images by default */
.slide-mySlides {
  display: none;
}

/* Hide the images by default */
.slide-mySlidesOne {
  display: none;
}

/* Hide the images by default */
.slide-mySlidesTwo {
  display: none;
}

/* Hide the images by default */
.slide-mySlidesThree {
  display: none;
}

/* Hide the images by default */
.slide-mySlidesFour {
  display: none;
}


/* Add a pointer when hovering over the thumbnail images */
.slide-cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.slide-prev,
.slide-next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: var(--text-color);
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  text-decoration: none;
}

/* Position the "next button" to the right */
.slide-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.slide-prev:hover,
.slide-next:hover {
  background-color: rgba(0, 0, 0, 0.0);
}

/* Number text (1/3 etc) */
.slide-numbertext {
  color: #f2f2f2;
  font-size: 0px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.slide-caption-container {
  text-align: center;
  background-color: var(--background-color);
  padding: 2px 16px;
  color: var(--text-color);
}

.slide-row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.slide-column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.slide-demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}











.image-container {
  display: inline-block;
  position: absolute;
  padding: 1em;
  max-width: 100%;
  vertical-align: top;
  width: fit-content;
}

.image-container:hover {
  background-color: #cde;
}

.zoom-image {
  background-position: center;
  /*background-repeat: no-repeat*/
  background-size: contain;
  cursor: zoom-in;
  display: block;
  max-width: 100%;
  padding-bottom: 10em;
  width: 100em;

}



.dropbtn {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 0px;
  margin-top: 5px;
  margin-right: -10px;
  font-size: var(--font-size);
  font: var(--font);
  text-decoration: underline;
  border: none;
  cursor: pointer;
}

.dropbtn:hover {
  background-color: var(--text-color);
  color: var(--background-color);
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--background-color);
  min-width: 100px;
  margin-top: 30px;
  right: -15px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.0);
  z-index: 1;

  text-align: right;
}

.dropdown-content a {
  color: black;
  padding: 5px 1px;
  text-decoration: none;
  display: block;
}

.dropdown a:hover {
  background-color: var(--text-color);
  color: var(--background-color);
}

.show {display: block;}



}


