/* ===================== */
/* Adobe Page /*/
/* ===================== */
/* Box Model Hack */
* {
  box-sizing: border-box;
  /* outline: 1px solid red; */
}

:root {

  /* section gap controls the gap below each major section. Increase adds more space */
  --section-gap: 3.125rem;

  /* remove the gap between divs  */
  --slide-gap: -.25rem;

  /* max width */
  --max-width: 1100px;

  --gutter-max: 5rem;

  /* p / */
  --fs-2: 1rem;
  /* h1 */
  --fs-8: 2.027rem;
   /* h2 */
  --fs-7: 1.802rem;
  /* h3 */
  --fs-6: 1.602rem;
  /* h4 */
  --fs-5: 1.424rem;
  /* h5 */
  --fs-4: 1.266rem;
  /* h6 */
  --fs-3: 1rem;
  /* captioning */
  --fs-1: .9rem;
}
.page-wrapper-adobe{
  
}
.nav-button{
  position: fixed;
  top: 2rem;
  left: 38px;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: none;           /* harmless on <a> */
  display: inline-flex;   /* centers icon without relying on line-height quirks */
  align-items: center;
  justify-content: center;
  text-decoration: none;  /* remove anchor underline */
  cursor: pointer;
  z-index: 1000;
  background-color: rgba(255 255 255 / .35); /* Selah can override color only */
}

.nav-button:hover{
  background-color: rgba(255 255 255/.8);
}

.material-symbols-outlined {
  padding: 12px;
  font-family: 'Material Symbols Outlined';
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  /* Your defaults */
  font-size: 32px;
 color: rgba(0 0 0 / .7);
  
  font-variation-settings: 
    'FILL' 0,   /* 0 outline, 1 filled */
    'wght' 700, /* 100–700 */
    'GRAD' 0,
    'opsz' 40;
}
.material-symbols-outlined:hover{
  color: rgba(0 0 0 / .85);
}

body {
  font-family: Helvetica, sans-serif;
  color: white;
  font-size: 18px;
  
}

p {
  padding: 0 8rem;
  font-weight: 300;
  word-spacing: 10%;
}
.italic{
  font-style: italic;
  font-weight: 400;
  color: rgb(88 88 88)
}

.images-section-wrapper{
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(
    var(--gutter-min),
    5vw,
    var(--gutter-max)
  );
}

html {
    background-color: black; 
}
.black-background{
  background-color: black;
  
}
.black-background:last-of-type{
  padding: 0 3rem;
  /* z-index: 1000; */
}
.white-background{
  background-color: white;
  padding: 0 3rem;
}
img {
  width: 100%;
  height: auto;
}
.intro-gif{
  margin-bottom: var(--section-gap);
}
.intro-text .text,
.intro-text .graphic{
  margin-bottom: var(--section-gap);
  line-height: 1.5;
}

.intro-text{
  margin-bottom: 9rem;
  line-height: 1.5;
  
}
.intro-text img{
  padding-bottom: 1.75rem;
  
}

.slide{
  margin-top: var(--slide-gap);
}
.aaa9,
.aaa12,
.aaa15 {
  margin-bottom: var(--section-gap)
}
.aaa3_5video{
  padding-bottom: 10px;
}


@media (max-width: 950px){
  .intro-text p{
    padding: 0 3.5rem;
    
  }
}
@media (max-width: 850px){
  /* .intro-text p {
    padding: 0 2rem;
  } */
  /* .file-diagram {
    display: none;
  } */
  .nav-button {
    left: 20px;
  }
}
@media (max-width: 600px){
  .intro-text p {
    padding: 0 2rem;
    line-height: 1.3
  }
 
}
@media (max-width: 400px){
  .intro-text p{
    padding: 0 1rem;
    line-height: 1.25;
  }
}