.content {
  font-family: "Open Sans", sans-serif;
  color: #191717;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 70vh;
}

.content h1 {
  font-size: 36px;
  margin-bottom: 36px;
}

.content .text-container {
  font-family: "Open Sans", sans-serif;
  color: #191717;
  margin-bottom: 52px;
  max-width: 1200px;
}

.content .paragraf {
  margin-top: 0;
  margin-bottom: 16px;
}

.container {
  font-family: "Open Sans", sans-serif;
  color: #191717;
}

.container h1 {
  color: #191717;
  font-size: 36px;
  margin-top: 0;
  padding-bottom: 10px;
}

.team-section {
  font-family: "Open Sans", sans-serif;
  color: #191717;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 52px;
}

.container {
  width: 70%;
}

.group {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.team-section h1 {
  color: #191717;
  font-size: 36px;
  margin-top: 80px;
}

.team {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 36px;
  row-gap: 36px;
}

.team-member {
  width: 100%;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f1f6f9;
  box-shadow: 0 0 20px rgba(25, 0, 58, 0.1);
  border-radius: 24px;
}

.team-member h3 {
  font-weight: 500;
}
.team-member p {
  font-weight: 300;
  text-transform: uppercase;
  margin: 8px 0 32px 0;
  letter-spacing: 1px;
}

.team-member img {
  width: 128px;
  height: 128px;
  padding: 2px;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 4px solid #9ba4b4;
}

.team-member:hover {
  background-color: #14274e;
  color: #f1f6f9;
  transition: 0.5s;
}

@media (max-width: 1280px) {
  .team {
    display: block;
  }

  .content h1 {
    margin-top: 120px;
    font-size: 24px;
  }

  .team {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .container h1 {
    font-size: 24px;
  }

  .team-member {
    margin: 20px 0;
  }

  .team-member h3 {
    font-size: 100%;
    width: 75%;
  }

  .team-member p {
    font-size: 80%;
    width: 80%;
  }
}

@media (max-width: 758px) {
  .team {
    display: block;
  }

  .content .paragraf {
    font-size: 14px;
  }

  .content h1 {
    margin-top: 120px;
    font-size: 24px;
  }

  .container h1 {
    font-size: 30px;
  }

  .team-member {
    margin: 20px 0;
  }

  .team-member h3 {
    font-size: 100%;
    width: 75%;
  }

  .team-member p {
    font-size: 80%;
    width: 80%;
  }
}

@media (max-width: 450px) {
  .content h1 {
    margin-top: 120px;
    font-size: 24px;
  }

  .container h1 {
    font-size: 24px;
  }

  .team {
    display: block;
  }

  .team-member {
    margin: 20px 0;
  }

  .team-member h3 {
    font-size: 100%;
    width: 75%;
  }

  .team-member p {
    font-size: 80%;
    width: 80%;
  }
}
