@media only screen and (min-width: 0rem) {
  .container {
    width: 100%;
    margin: auto;
    max-width: 80rem;
    padding: 0 1rem;
  }
}
@media only screen and (min-width: 48rem) {
  .container {
    width: 100%;
    margin: auto;
    padding: 0 2.5rem;
  }
}

/*-- -------------------------- -->
<---           About            -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  #about {
    width: 100%;
  }

  #about .content {
    text-align: left;
    width: 100%;
    max-width: 32.625rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: auto;
   margin-bottom: 2rem;
    gap: 1rem;
  }

  #about .content .section-title {
    line-height: 1;
    margin: 0;
  }

  #about .content .section-title {
    margin: 0;
  }

  #about .content .paragraph-text {
    line-height: 1.3d;
  }

  .picture {
    overflow: hidden;
    height: 32rem;
  }

  .picture img {
    border-radius: 0.75rem;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-text {
    max-width: 100%;
  }
}

@media only screen and (min-width: 48rem) {
  #about .content {
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .picture {
    order: 2;
  }

  .about-text {
    max-width: 55ch;
    align-self: center;
    width: 50%;
  }
}

@media only screen and (min-width: 64rem) {
}

/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  .stats {

    padding: clamp(1rem, 5vw, 2.5rem) 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
    list-style: none;
   
  }


  .stat-title {
    font-weight: 600;
    font-size:2.3rem;
  }

  .stat-value {
    font-weight: 600;
    color: var(--primaryDark);
    font-size: var(--bodyBigFontSize);
  }
}


@media only screen and (min-width: 48rem) {
    .stats {
        flex-direction: row;
        justify-content: space-around;

      }
    
}


/*-- -------------------------- -->
<---           Story           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {
  .story {
    margin-top: 6rem;
    background-color: var(--secondary);
    color: var(--bodyTextColorWhite);

  }




 .story-block{
  transform: translateY(-4.5rem); 
  border-radius: 1rem;
  overflow: hidden;
  background-image: url('/assets/images/about/banner.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
 }

 .story-block h2, .mission-block h2 {
  margin: 0;
  font-size: var(--headerRegularFontSize);
 }

 .story-block p, .mission-block p {
  font-size: var(--bodyFontSize);
  line-height: 1.5;
 }



 .story-content {
  width: 100%;
 }

 .mission-block {

  max-width: 32.625rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block-end: 2rem;
 }


 .tools, .tools img {
  width: 100%;
  overflow: hidden;

  object-fit: cover;
 }

 .mission-content {
  text-align: center;
 }

 


}


@media only screen and (min-width: 48rem) {
  .story-content {
    width: 50%;
   }

   
 .mission-block {
  gap: 2rem;
  max-width: 100%;
  flex-direction: row;
  justify-content: space-between;
 }

   .tools, .tools img {
    width: auto;
   }

   .mission-content {
    text-align: left;
    width: 50%;
   }
  
    
}

/*-- -------------------------- -->
<---           Team           -->
<--- -------------------------- -*/
@media only screen and (min-width: 0rem) {

  .team {
    padding: 2.5rem 0;
  }
  .team-content {
 
    max-width: 32.625rem;
    text-align: center;
    margin: auto;
  }
  .team-content h2 {
    margin: 0;
    line-height: 1;
    font-size: var(--headerRegularFontSize);
  }

  .gallery {
    margin-block: 0;
    padding: 0;
    display: grid;
    list-style: none;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(0.5rem, 2vw, 1.5rem); 
  }

  .gallery ul {
    margin: 0;
  }

 

  .barber h3 {
    font-size: var(--bodyFontSize);
    margin: 0;
  }
  .barber-img {
    max-height: 26rem;
    object-fit: cover;
    width: 100%;
  }
}

@media only screen and (min-width: 48rem) {
  .gallery {
  
      grid-template-columns: repeat(3, 1fr);
    
  }
}