/* ===================== */
/* Whirlpool */
/* ===================== */
/* 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: 5rem;

  /* spacing between graphic elements  */
  --graphic-gap: 0rem;

  /* remove the gap between divs  */
  --slide-gap: 0;

  --element-spacing: 2rem;

  --max-width: 1200px;
  --gutter-min: 2rem;
  --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: 1.125rem;
  /* captioning */
  --fs-1: .9rem;
}
.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 / .6); /* Selah can override color only */
}
.nav-button:hover{
  background-color: rgba(255 255 255/ .90);
}

.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(238 176 17 / .70);
  
  font-variation-settings: 
    'FILL' 0,   /* 0 outline, 1 filled */
    'wght' 700, /* 100–700 */
    'GRAD' 0,
    'opsz' 40;
}
.material-symbols-outlined:hover{
  color: rgba(238 176 17 / .95);
}

html{
  /* font-size: 18px; */
  background-color: rgb(239 177 16);
}
body {
  font-family: Helvetica, sans-serif;
  font-size: 18px;
  
}
p{
  font-weight: 200;
  font-size: var(--fs-2)
}
/* ===================== */
/* Removes the 2px lines between inline videos */
.images-section-wrapper video,
.images-section-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: top; /* just in case */
}

.images-section-wrapper > div {
  margin: 0;
  padding: 0;
}
/* ======================== */


.site-header{
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}


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

.container img{
  width: 100%;
  height: auto;
  display: block;

}
.div {
  margin-bottom: rem;
}
.intro-three-phones{
  filter: drop-shadow(-2.5mm 3mm .5rem black);
}
.intro-text{
    padding: 0 5.5rem 2rem 5.5rem;
  }

.wp-logo,
.wp-heading,
.wp-text{
  padding-bottom: var(--element-spacing);
  line-height: 1.75;
}

.wp-heading {
  font-size: var(--fs-3);
  text-align: center;
  letter-spacing: -.07;
  line-height: 1.3;
  font-weight: 300;

}
.wp-text{
  padding-top: 1rem;
  line-height: 1.35;
}
.phone-animation-container{
  display: flex;
  justify-content: center;
}
video.phone-animation{
  width: 400px;
}
div.wp3,
div.wp4{
  margin-bottom: var(--section-gap);
}



@media (max-width: 1200px){
  .container{
    padding: 0;
  }
  @media (max-width: 850px){
  .nav-button {
    left: 20px;
  }
}

}

@media(max-width: 900px){
  .intro-text{
    padding: 0 3.5rem 2rem 3.5rem;
  }
}

@media (max-width: 750px){
  
  .intro-text{
    padding: 0 1.5rem 2rem 1.5rem;
  }
  div.wp4 video{
  width: 200px;
}
}

@media(max-width: 450px){
  .wp-heading{
    font-size: 1rem;
  }
}