/* ===================== */
/*The Perfect AI Assistant*/
/* ===================== */
/* Box Model Hack */
* {
  box-sizing: border-box;
}

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

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

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




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

html{
  /* font-size: 18px; */
  background-color: #FFF;
}
body {
  font-family: Helvetica, sans-serif;
  
}

.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)
  );
  
}

.intro-text{
  padding: 0rem 4.5rem 4rem 4.5rem;
  color: white;
  background-color: RGB(0 51 140);
  font-size: var(--fs-1);
  letter-spacing: .05rem;
  word-spacing: .0125rem;
  line-height: 1.65;
}
.container img{
  width: 100%;
  height: auto;
  display: block;

}

.bottom-graphics {
  display: flex;
  flex-direction: column;
  gap: var(--graphic-gap);
  margin-bottom: 6rem;
}
.graphic{
  width: 50%;
  display: flex;
  
}

.row{
  display: flex;
  justify-content: space-between;
  padding-top: 5rem;
  
}

.graphic img{
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin: 0 auto;
  filter:drop-shadow(0px 5px 8px rgb(0 51 140));
}


@media (max-width: 1300px){
  :root{
    --gutter-min: 1rem;
    --gutter-max: 2.5rem;
  }
}
@media (max-width: 1250px){
  :root{
    --gutter-min: .5rem;
    --gutter-max: 1.25rem;
  }
}

@media (max-width: 1200px){
  :root{
    --gutter-min: 0rem;
    --gutter-max: 0rem;
  }
  .row{
    padding: 0
  }
  .graphic{
    padding: 4rem 2rem 0rem 2rem;
  }
}
@media(max-width: 950px){
  .intro-text{
    padding-left: 3.75rem;
    padding-right: 3.75rem;
  }
}

@media (max-width: 850px){
  .nav-button {
    left: 20px;
  }
  .intro-text{
    padding-left: 3.25rem;
    padding-right: 3.25rem;
  }
}
@media (max-width: 700px){
  .intro-text{
    padding-left: 2.75rem;
    padding-right: 2.75rem;
  }
}

@media (max-width: 600px){
  .intro-text{
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}