@charset "UTF-8";
/* CSS Document */


*  {
  /*box-sizing: border-box;*/
}

/* Slideshow Design */

/* 1. Container can now safely use height: auto */
.slideshow-container {
  max-width: 800px;
  width: 100%;
  position: relative;
  margin: auto;
  overflow: hidden;
  height: auto; /* Container scales naturally based on the image inside */
}

/* 2. Hide all slides using opacity and visibility */
.mySlides {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.5s ease-in-out, visibility 1.5s ease-in-out;
  
  /* Pull hidden slides out of the flow so they stack on top of the active one */
  position: absolute;
  top: 0;
  left: 0;
}

/* 3. The active slide drops back into normal document flow */
.mySlides.active-slide {
  opacity: 1;
  visibility: visible;
  position: relative; /* This pushes the container open and pushes the dots down */
}

/* 4. Images scale purely based on width, keeping native aspect ratios */
.mySlides img {
  width: 100%;
  height: auto; /* Truly responsive height */
  display: block;
  border-radius: 20px;
  border: 8px solid #2A2A2A;
  box-sizing: border-box;
}

/* Caption text */
.text {
  color: #444; /* was #f2f2f2 -->
  font-size: 1rem; /* was 15px */
  letter-spacing: 4px;
  text-transform: uppercase;
  /*padding: 8px 12px;
  position: absolute;*/
  bottom: 8px;
  width: 100%;
  margin: 0 auto;
  margin-top: 1rem;
  text-align: center;
  /*background-color: rgba(0, 0, 0, 0.5);*/
  z-index: 10;
  display: ; /* optionally hide text overlay with "none" */
}

/* The dots naturally stay below the container */
.dot-container {
  text-align: center;
  padding: 15px;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.current-photo {
  background-color: #717171;
}


/* Content Below Slideshow */

.subtitle {
  letter-spacing: 4px;
}

.subtitle2 {
  color: #555;
  max-width: 80%;
  font-size: 80% !important;
  font-style: italic;
  margin-top: 1rem;
}

.titleDivider {
  max-width: 80%;
  border: none;
  height: 1px;
  background: #222;
  box-shadow: 0 0 8px rgba(0, 210, 255, 0.9);
  margin: 0 auto;
  margin-top: 1.5rem;

}

/* Paragraphs */
.explorations {
  text-align: left;
  margin: 0 auto;
  margin-top: 2rem;
  max-width: 750px;
  padding: 0px 32px;
  max-width: 90%;
}

.explorations-lead-title {
  text-align: center;
  text-transform: uppercase;
  color: grey;
  letter-spacing: 8px;
  opacity: 0.3;

}

.explorations-lead {
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  color: grey;
  margin-top: .5rem !important;
  margin: 0 auto;
  max-width: 90%;
  padding: 0 4rem;
}

.continue-journey-container {
  background-color: #12121290;
  border: 2px solid #222222;
  border-radius: 50px;
  padding: 2rem;
  margin-top: 4rem !important;
  max-width: 90%;
  margin: 0 auto;
  box-sizing: border-box;
  margin-bottom: -10rem;
}

.continue-journey-container h1 {
  text-align: center;
}

.continue-journey-container p {
  text-align: center;
  font-style: italic;
  color: grey;
  font-size: 1.5rem;
  max-width: 80%;
}

.bottom-graphic {
  /*margin-bottom: -10rem;*/  /* move closer to footer */
}

.fa {
  color: royalblue;
  text-shadow: 0 0 10px lightskyblue, 0 0 24px rgba(62,140,255,.90);
}

.world-title {
  color: grey;
  font-weight: bold;
  text-transform: uppercase;
}

/************************************************************************/
/***************************** MEDIA QUERIES ****************************/
/************************************************************************/

@media (min-width: 480px) {  

}

@media (min-width: 576px) {  
  .subtitle {
    letter-spacing: 6px !important;
  }
}

@media (min-width: 768px) {  
  .subtitle {
    letter-spacing: 8px !important;
  }

  .subtitle2 {
    color: #555;
    max-width: 60%;
    font-size: 95% !important;
    font-style: italic;
    margin-top: 1rem;
  }

  .titleDivider {
    max-width: 60%;
    border: none;
    height: 2px;
    background: #222;
    box-shadow: 0 0 8px rgba(0, 210, 255, 0.6);
    margin: 0 auto;
    margin-top: 1.5rem;
  }

  .explorations-lead {
    text-align: justify;
  }

  .explorations {
    text-align: justify;
  }
}

@media (min-width: 992px) { 

}

@media (min-width: 1200px) {  

}

@media (min-width: 1920px) {

}
