body, html {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
}

:root {
  /*COLORS FROM PARALLAX IMAGES*/
  --light-color: #F4F7F5;
  --light-color-alt: #A7A2A9;
  --dark-color: #08090A;
  --dark-color-alt: #575A5E;
  --accent-color: #222823;
  
  /*FONTS*/
  --titlefont: 400 15px/1.8 "PT Serif", serif;
  --headerfont: 400 20px/1.8 "Forum", cursive;
  --paragraphfont: 400 15px/1.8 "Quicksand", sans-serif;
}

h3 {
  font: var(--headerfont);
  letter-spacing: 5px;
  text-transform: uppercase;
  text-align: center;
}

p {
  font: var(--paragraphfont);
}

ul {
  font: var(--paragraphfont);
}

.navigation-list li {
  border-right-style: solid;
  border-right-color: var(--light-color);
  border-right-width: 2px;
  padding-left: 80px;
  padding-right: 80px;
  display: inline-block;
  font: var(--headerfont);
  margin-top: 25px;
}

.navigation-list li a {
  text-decoration: none;
  color: var(--light-color);
}

.navigation-list li a:hover {
  text-decoration: none;
  color: var(--light-color-alt);
}

.navigation-list li:last-child {
  border-style: none;
}

.navigation-list li:first-child {
  padding-left: 15px;
}

.tab-stop-list {
  padding: 0;
}

.tab-stop-list li {
  display: inline-block;
  font: var(--paragraphfont);
}

.tab-stop-list li:first-child {
  float: left;
}

.tab-stop-list li:last-child {
  float: right;
}

.experience-detail {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: var(--dark-color-alt);
}

.experience-detail h3 {
  text-align: left;
}

.bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4 {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bgimg-1 {
  background-image: url("/img_parallax.jpg");
  min-height: 100%;
}

.bgimg-2 {
  background-image: url("/img_parallax.jpg");
  min-height: 300px;
}

.bgimg-3 {
  background-image: url("/img_parallax.jpg");
  min-height: 300px;
}

.bgimg-4 {
  background-image: url("/img_parallax.jpg");
  min-height: 100%;
}

/*@media only screen and (max-device-width: 1366px) {
    .bgimg-1, .bgimg-2, .bgimg-3, .bgimg-4 {
        background-attachment: scroll;
    }
}*/

.caption {
  position: absolute;
  left: 0;
  top: 30%;
  width: 100%;
  text-align: center;
  color: var(--light-color);
  font: var(--titlefont);
  z-index: 3;
}

#first-caption {
  top: 15%;
}

.caption div {
  display: inline-flex;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 25px;
  padding-right: 25px;
  font-size: 25px;
  letter-spacing: 10px;
  text-align: center;
}

.caption h1 {
  letter-spacing: 6pt;
}

.caption div.border {
  background-color: rgba(8,9,12,0.65);
  color: var(--dark-color-alt);
  /*opacity: 0.65;*/
}

.caption div.border p {
  font: var(--paragraphfont);
  letter-spacing: 5px;
  font-size: 15px;
  color: var(--light-color-alt);
}

.caption div.border a {
  text-decoration: none;
  color: var(--light-color);
}

.caption div.border a:hover {
  color: var(--light-color-alt);
}

.section {
  text-align: center;
  padding: 50px 80px;
  text-align: justify;
  background-color: var(--light-color);
  color: var(--dark-color);
}

.section-dark {
  text-align: center;
  padding: 50px 80px;
  text-align: justify;
  background-color: var(--dark-color);
  color: var(--light-color);
  opacity: 0.75;
}