.people{
    display: flex;
  max-width: 1400px;
  margin: 90px auto;
  margin-top: 0px;
  flex-direction: column;
}

.people .head .headline{
    width: 100%;
  font-size: clamp(30px, 6vw, 80px);
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.people .head .text{
    color: #777;
  font-size: clamp(14px, 1.5vw, 20px);
  text-align: center;
  margin: 10px auto;
  width: 90%;
}

.people .cards{
    display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.people .cards .card {
    padding: 30px;
  margin: 30px;
  width: 300px;
  height: 550px;
  border-radius: 30px;
  box-shadow:
  0 20px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: #444;
  background-color: rgb(255, 249, 251);
}
.people .cards .card:nth-child(n){
  background: linear-gradient(180deg, rgba(214, 239, 255, 0.103) 0%, #dff0ff 100%);
}
.people .cards .card:nth-child(2n){
  background: linear-gradient(180deg, rgba(255, 224, 214, 0.103) 0%, #ffe7df 100%);
}
.people .cards .card:nth-child(3n){
  background: linear-gradient(180deg, rgba(255, 252, 214, 0.103) 0%, #fdffdf 100%);
}
.people .cards .card:nth-child(4n){
  background: linear-gradient(180deg, rgba(214, 255, 216, 0.103) 0%, #dfffe3 100%);
}
.people .cards .card:nth-child(5n){
  background: linear-gradient(180deg, rgba(254, 214, 255, 0.103) 0%, #ffdffa 100%);
}
.people .cards .card:nth-child(6n){
  background: linear-gradient(180deg, rgba(226, 214, 255, 0.103) 0%, #f1dfff 100%);
}

.people .cards .card:hover{
    box-shadow:
  0 0px 0px rgba(0, 0, 0, 0.3);
}

.people .cards .card img{
    height: 270px;
  width: auto;
  border-radius: 50%;
  border: 3px solid var(--algo-red-flat);
  box-shadow: 0px 0px 5px rgba(77, 77, 77, 0.13);
}

.people .cards .card .name{
    color: #111;
  text-transform: uppercase;
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 600;
  margin: 10px;
  margin-bottom: 0px;
  text-align: center;
  width: 100%;
}

.people .cards .card .companies{
    font-size: clamp(16px, 2.3vw, 20px);
  font-weight: 400;
  color: #444;
  text-transform: capitalize;
}

.people .cards .card .tags{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.people .cards .card .tag{
    border-radius: 5px;
    background-color: #fff;
    padding: 2px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #444;
    margin: 3px;
}
.people .cards .card .design{
    color: #111;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  margin: 10px;
  margin-bottom: 0px;
  text-align: center;
  width: 100%;
  color: var(--algo-red);
}

.people .cards .card .text{
    font-size: 15px;
    width: 100%;
  margin: 20px auto;
  width: min(450px, 95%);
  text-align: center;
  color: #444;
  display: flex;
  justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.people .cards .card .link {
    font-weight: 600;
  color: rgb(248, 107, 138);
  font-size: 25px;
  cursor: pointer;
}

@media only screen and (max-width: 650px) {
    .people{
        display: flex;
      max-width: 1400px;
      margin: 40px auto;
      flex-direction: column;
    }
}