:root {
  --overlay-color: white;
  --menu-speed: 0.6s;
}

h1 {

}

.htitle {
  font-family: 'Quicksand';
  color: #83993C;
  font-size: 26px;
  margin: 0;
  padding: 0;
}

.htitlesub {
  font-family: 'Quicksand';
  color: #A9A9A9;
  font-size: 16px;
  margin: 0;
  padding: 0;
}

.pagetitle {
  font-family: 'Quicksand';
  color: #83993C;
  text-align: center;
  margin: 0;
  padding: 0;
  border-radius: 5px;
}

.pp-title {
  font-family: 'Quicksand';
  font-size: 20px;
  color: #A9A9A9;
  text-align: center;
  margin-left: 0;
  padding: 0;
}

.contact-title {
  font-family: 'Quicksand';
  color: #83993C;
  width: 180px;
  margin: 0 auto;
  padding: 0;
  padding-top: 10px;

}

p {

}

.intro-text {
  font-family: 'Quicksand';
  color: white;
  background-color: #00000044;
  text-align: justify;
  padding: 6px;
}

.datetext {
  font-family: 'Quicksand';
  font-weight: bold;
  color: white;
  text-align: center;
  font-size: 14px;
}

.info {
  font-family: 'Quicksand';
  font-size: 16px;
  color: #666666;
  text-align: justify;
  width: 800px;
  margin: 0 auto;
}

.infosubheader {
  font-family: 'Quicksand';
  font-style: italic;
  font-size: 20px;
  color: #A9A9A9;
  text-align: justify;
  width: 800px;
  margin: 0 auto;
}

.infosubheadercenter {
  font-family: 'Quicksand';
  font-size: 20px;
  font-style: italic;
  color: #A9A9A9;
  text-align: center;
  margin: 0;
  padding: 0;
}

.info-center {
  font-family: 'Quicksand';
  font-size: 16px;
  color: #A9A9A9;
  text-align: center;
  margin: 0;
  min-width: 900px;
}

.sketchfab-text {
  font-size: 13px;
  font-weight: normal;
  margin: 5px;
  color: #4A4A4A;
  font-family: 'Quicksand';
}



div {

}

.header {
  background-color: white;
  width: 100%;
  height: 60px;
}

.headertitle {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 260px;
  top: 3.5px;
}

.intro-textbox {
  position: absolute;
  width: 400px;
  height: 20vw;
  top: 340px;
  left: 20px;
}

.sketchfab-holder {
  width: 642px;
  height: 505px;
  margin: 0 auto;
}

.sketchfab-embed-wrapper {
  width: 640px;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.sketchfab-embed-wrapper iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.menu-container {
  position: absolute;
  display: inline-block;
  margin: 0;
  padding: 0;
  overflow: auto;
  width: 634px;
  height: 20px;
  top: 22px;
}

.mobile-menu-container {
  position: fixed;
  top: 4px;
  right: 4px;
  z-index: 1;
  visibility: hidden;
}

.mobile-menu-container .mob-menu-toggle {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 2;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  opacity: 0;
}

.mobile-menu-container .hamburger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 20px;
  height: 20px;
  padding: 1rem;
  background: #A9A9A9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.mobile-menu-container .hamburger:hover {
  background: #83993C;
}

/* middle line */
.mobile-menu-container .hamburger > div {
  position: relative;
  width: 100%;
  height: 4px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

/* top line */
.mobile-menu-container .hamburger > div:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  width: 100%;
  height: 4px;
  background: inherit;
}

/* bottom line */
.mobile-menu-container .hamburger > div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 10px;
  width: 100%;
  height: 4px;
  background: inherit;
}

/* Animates the whole hamburger on press */
.mobile-menu-container .mob-menu-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
  background: white;
}

/* Forms the x symbol */
.mobile-menu-container .mob-menu-toggle:checked + .hamburger > div:before,
.mobile-menu-container .mob-menu-toggle:checked + .hamburger > div:after {
  top: 0;
  transform: rotate(90deg);
}

/* Hover animations on hamburger unchecked */
.mobile-menu-container .mob-menu-toggle:hover + .hamburger {
  background: #83993C;
}

/* Hover animations on hamburger unchecked */ /*
.mobile-menu-container .mob-menu-toggle:hover + .hamburger > div {
  background: #83993C;
} */

/* Hover animations on hamburger checked */ /*
.mobile-menu-container .mob-menu-toggle:checked:hover + .hamburger > div {
  background: #83993C;
} */

/* Display mob menu on click */
.mobile-menu-container .mob-menu-toggle:checked ~ .mobile-menu {
  visibility: visible;
}

/* Scales mob menu on click */
.mobile-menu-container .mob-menu-toggle:checked ~ .mobile-menu > div {
  transform: scale(1);
  transform: translateY(0);
  transition-duration: var(--menu-speed);
}

.mobile-menu-container .mob-menu-toggle:checked ~ .mobile-menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease;
}

/* Adjusts mobile menu */
.mobile-menu-container .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu properties */
.mobile-menu-container .mobile-menu > div {
  background: var(--overlay-color);
  border-radius: 50%;
  width: 400vw;
  height: 400vw;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transform: translateY(-400vw);
  transition: all 0.4s ease;
}

.mobile-menu-container .mobile-menu > div > div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vw;
  /* opacity: 0; */
  transition: opacity 0.4s ease;
}

.mobile-menu-container .mobile-menu > div > div > ul {
  padding-left: 2px;
}

.mobile-menu-container .mobile-menu > div > div > ul > li {
  list-style: none;
  color: #C9C9C9;
  font-family: 'Quicksand';
  font-size: 1.5rem;
  padding: 1rem;
}

.mobile-menu-container .mobile-menu > div > div > ul > li > a {
  color: inherit;
  text-decoration: none;
  transition: color 0.4s ease;
}

.mobile-menu-container .mobile-menu > div > div > ul > li > a:hover {
  color: #83993C;
}

.headercombine {
  width: 900px;
  height: 60px;
  margin: 0 auto;
}

.headersep {
  background-image: url('images/grain.png');
  width: 100%;
  min-width: 900px;
  height: 6px;
  overflow: hidden;
}

.content {
  align-items: center;
  min-width: 900px;
  /* min-height: 600px; */
  margin: 0 auto;
}

.date {
  position: relative;
  width: 120px;
  height: 18px;
  background: #83993C;
  border-radius: 10px;
  margin: 0 auto;
}

.vid {
  background-color: transparent;
  width: 640px;
  height: 325px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.vid iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.vid-crop {
  background-color: transparent;
  width: 640px;
  height: 240px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.vid-crop iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.vid-crop-extra {
  background-color: transparent;
  width: 640px;
  height: 256px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.vid-crop-extra iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.social-links {
  width: 100%;
  min-width: 900px;
  margin-top: 14px;
  margin-bottom: 7.5px;
}

.social-links > ul {
  display: block;
  width: 380px;
  margin: 0 auto;
  padding: 0;
}

.btt-button {
  margin: auto;
  width: 130px;
  height: 20px;
  background: #A9A9A9;
  border-radius: 10px;
  text-align: center;
  animation-name: btpanim;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.back-to-top {
  display: inline-block;
  text-align: center;
}

.footer {
  width: 100%;
  min-width: 900px;
  height: 100px;
}

@keyframes fader {
  0% {background: url(images/Guadalestcrop.jpg); background-size: cover; background-position: center; background-repeat: no-repeat;}
  25% {background: url(images/AntStill.jpg); background-size: cover; background-position: center; background-repeat: no-repeat;}
  50% {background: url(images/Tankcrop.png); background-size: cover; background-position: center; background-repeat: no-repeat;}
  75% {background: url(images/Haunted.png); background-size: cover; background-position: center; background-repeat: no-repeat;}
  100% {background: url(images/Guadalestcrop.jpg); background-size: cover; background-position: center; background-repeat: no-repeat;}
}

.faderwrapper {
  max-width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fadergallery {
  max-width: 100%;
  margin: 0 auto;
  background: grey;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fader 24s cubic-bezier(0.8,0,0,0.8) infinite;
}

.galleryplaceholder {
  width: 100%;
  height: 600px;
  opacity: 0;
}

img {

}

.meimg {
  position: absolute;
  width: 160px;
  height: auto;
  border-radius: 50%;
  float: left;
  margin-right: 16px;
  left: 30px;
  top: 160px;
  box-shadow: 10px 10px 30px rgba(0,0,0,0.6);
}

nav {
  overflow: auto;
  margin: 0;
  padding: 0;
}

ul {

}

.menu-ul {
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.project-parts-ul {
  list-style: none;
  padding: 0;
  margin-left: 4px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  list-style: disc;
}

li {

}

.menu-li {
  float: left;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

.project-parts-li {
  font-family: 'Quicksand';
  color: #A9A9A9;
  margin-bottom: 4px;
}

a {

}

.link {
  font-family: 'Quicksand';
  color: #C9C9C9;
  font-size: 16px;
  display: inline-block;
  list-style: none;
  text-decoration: none;
  margin-right: 24px;
  transition: color 0.3s ease;
}

.link:hover {
  color: #83993C;
}

.selected {
  color: #A9A9A9;
}

.icon-display {
  color: #A9A9A9;
  padding: 1rem;
  transition: all 0.4s ease;
}

.icon-display:hover {
  color: #83993C;
}

.copyright-link {
  text-decoration: none;
}

.back-to-top-text {
  font-family: 'Quicksand';
  color: white;
  text-decoration: none;
}

hr {
  background-image: linear-gradient(to right, #83993C00, #83993CFF, #83993C00);
  border: 0;
  height: 2px;
  /* border: 2px solid #83993C; */
  border-radius: 20%;
  margin: 0;
  padding: 0;
}

.hrsmall {
  width: 50%;
  margin: 0 auto;
}

form {
  margin-top: 50px;
  transition: all 4s ease;
}

.form-control {
  width: 600px;
  border: none;
  outline: none;
  border-bottom: 1px solid #A9A9A9;
  margin-bottom: 10px;
  font-family: 'Quicksand';
  color: #A9A9A9;
  font-size: 16px;
  margin-bottom: 16px;
}

.contact-form {
  width: 605px;
  margin: 0 auto;
}

input {
  height: 45px;
  color: #A9A9A9;
}

form .submit {
  background: #E9E9E9;
  border-color: transparent;
  font-size: 20px;
  transition: all 0.4s ease;
}

form .submit:hover {
  background: #83993C;
}

.pp-image {
  width: 640px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* GhostPage CSS Checker */
/*
* {
  background: #000 !important;
  color: #0f0 !important;
  outline: solid #f00 1px !important;
}
*/

@media screen and (max-width: 600px) {

h1 {

}

.htitle {

}

.htitlesub {

}

div {

}

.header {
  background-color: white;
  width: 100%;
  height: 60px;
}

.headertitle {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 260px;
  top: 3.5px;
}

.menu-container {
  display: none;
}

.mobile-menu-container {
  visibility: visible;
}

.headercombine {
  width: 100%;
  height: 60px;
  margin: 0 auto;
}

.headersep {
  background-image: url('images/grain.png');
  width: 100%;
  min-width: 0;
  height: 6px;
}

.content {
  align-items: center;
  width: 100%;
  min-width: 0px;
  margin: 0 auto;
}

.footer {
  width: 100%;
  min-width: 0px;
  height: 100px;
}

.social-links {
  width: 100%;
  min-width: 0px;
  margin-top: 14px;
  margin-bottom: 7.5px;
}

.social-links > ul {
  display: block;
  width: 260px;
  margin: 0 auto;
  padding: 0;
}

.faderwrapper {
  max-width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fadergallery {
  max-width: 100%;
  margin: 0 auto;
  background: grey;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fader 18s cubic-bezier(0.8,0,0,0.8) infinite;
}

.galleryplaceholder {
  width: 100%;
  height: 640px;
  opacity: 0;
}

.intro-textbox {
  position: absolute;
  width: 80vw;
  height: 20vw;
  top: 240px;
  left: 50%;
  transform: translateX(-50%);
}

p {

}

.intro-text {
  font-family: 'Quicksand';
  color: white;
  background-color: #00000044;
  text-align: justify;
  padding: 6px;
}

.info {
  font-family: 'Quicksand';
  font-size: 16px;
  color: #666666;
  text-align: justify;
  width: 320px;
  margin: 0 auto;
}

.info-center {
  font-family: 'Quicksand';
  font-size: 16px;
  color: #A9A9A9;
  text-align: center;
  margin: 0;
  padding-left: 20px;
  padding-right: 20px;
  min-width: 0px;
}

a {

}

.icon-display {
  color: #A9A9A9;
  padding: 4px;
  transition: all 0.4s ease;
}

img {

}

.meimg {
  position: relative;
  width: 120px;
  height: auto;
  border-radius: 50%;
  float: left;
  margin-right: auto;
  left: 50%;
  transform: translateX(-50%);
  top: 40px;
}

form {
  margin-top: 50px;
  transition: all 4s ease;
}

.form-control {
  width: 300px;
  border: none;
  outline: none;
  border-bottom: 1px solid #A9A9A9;
  margin-bottom: 10px;
  font-family: 'Quicksand';
  color: #A9A9A9;
  font-size: 16px;
  margin-bottom: 16px;
}

.contact-form {
  width: 305px;
  margin: 0 auto;
}

input {
  height: 45px;
  color: #A9A9A9;
}

form .submit {
  background: #E9E9E9;
  border-color: transparent;
  font-size: 20px;
  transition: all 0.4s ease;
}

form .submit:hover {
  background: #83993C;
}

.vid {
  background-color: transparent;
  width: 320px;
  height: 162px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.vid iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.vid-crop {
  background-color: transparent;
  width: 320px;
  height: 120px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.vid-crop iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.vid-crop-extra {
  background-color: transparent;
  width: 320px;
  height: 128px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.vid-crop-extra iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

.pp-image {
  width: 320px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.sketchfab-holder {
  width: 322px;
  height: 252px;
  margin: 0 auto;
}

.sketchfab-embed-wrapper {
  width: 320px;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.sketchfab-embed-wrapper iframe {
   border: 0;
   height: 100%;
   left: 0;
   position: absolute;
   top: 0;
   width: 100%;
}

}
