#about-us{
    background-image: url(../img/about-us.jpg);
    background-size: cover;
    padding: 200px 0;
}

#values h1{
    color: #ddb64b;
}

#values{
    background-image: url(../img/values.jpg);
    background-size: cover;
    padding: 50px 0;
}

#values .card{
    color: white;
    font-weight: 500;
    background: #232323;
}

#values .card .icon {
    text-align: center;
    font-size: 50px;
    color: #d8ac3f;
}
#values .card-title {
    text-align: center;
    font-size: 30px;
    color: #d8ac3f;
}
#values .card-text {
    background: -webkit-linear-gradient(#cccccc, #b9b9b9, #838383);
    -webkit-background-clip: text;
    font-weight: bold;
    -webkit-text-fill-color: transparent;
}

#staff h1{
    color: #99741b;
    border-left: 100px solid;
    padding-left: 20px;
}

#staff .card{
    border: none;
}

#history h1{
    color: #99741b;
    border-left: 100px solid;
    padding-left: 20px;
}

#history .card{
    width: 400px;
    height: 100%;
}

#history .card p{
    text-wrap: auto;
}

.grid-container {
    background: white;
    font-family: 'Rubik', sans-serif;
  }
  

  @supports(display: grid) {
  
    .grid-container {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-template-rows: auto 1fr auto;
      
      
      grid-template-areas:
        "header header header"
        "title title footer"
        "main main main";
      @media screen and (max-width: 500px) {
        grid-template-columns: 1fr;
        grid-template-rows: 0.3fr 1fr auto 1fr;
        grid-template-areas: "header"
          "title"
          "main"
          "footer";
      }
    }
  
    .grid-item {
      color: #fff;
      
      padding: 3.5em 1em;
      font-size: 1em;
      font-weight: 700;
    }
  
  
    
  
    .items {
      position: relative;
      width: 100%;
      overflow-x: scroll;
      overflow-y: hidden;
      white-space: nowrap;
      transition: all 0.2s;
      will-change: transform;
      user-select: none;
      cursor: pointer;
    }
  
    .items.active {
      background: rgba(255,255,255,0.3);
      cursor: grabbing;
      cursor: -webkit-grabbing;
    }
  
    .item {
      display: inline-block;
      /* background: skyblue; */
      min-height: 250px;
      min-width: 400px;
      margin: 2em 1em;
      @media screen and (max-width: 500px) {
        min-height: 200px;
        min-width: 200px;
      }
    }
  }
  
  
  a {
    display: block;
    /* color: lighten(skyblue, 15%); */
    text-decoration: underline;
    margin: 1em auto;
    &:hover {
      cursor: pointer;
    }
  }
  