.team-container {
  width: 100%;
  transform-origin: top center;
  margin-bottom: 5rem;
}

.at-section__title1 {
  padding-top: 2.5rem;
  color: #000;
  font-family: 'Roboto', sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 4.625rem;
  text-align: center;
}

.at-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-evenly;
}
.at-grid[data-column='2'] .at-column {
  width: 48%;
}
.at-grid[data-column='3'] .at-column {
  width: 31.33%;
}

.at-column {
  z-index: 0;
  position: relative;
  background-color: #f8f8f8;
  border: 2.5px solid #e2e9ed;
  border-radius: 2.5%;
  padding: 1rem;
  margin: 1%;
}

.at-column:before {
  content: '';
  display: block;
  padding-top: 100%;
}
.at-column:hover {
  background-color: #fff;
  z-index: 1;
  box-shadow: 0 8px 50px rgba(0, 0, 0, 0.2);
  transform: scale(1.035);
  transition: box-shadow 0.2s ease, transform 0.2s ease, z-index 0s 0s ease;
}

.at-user {
  position: absolute;
  top: 65%;
  left: 0;
  width: 100%;
  transform: translate(0, -50%);
  text-align: center;
}

.at-user__avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
}
.at-user__avatar img {
  display: block;
  width: 100%;
  max-width: 100%;
}

.at-user__name {
  color: #313435;
  font-family: 'Roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2rem;
}

.at-user__title {
  color: #6f808a;
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2rem;
}

.at-user__line {
  color: #070707;
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 0.5rem;
  line-height: 1rem;
  padding-bottom: 7rem;
  font-weight: 300;
}

@media (max-width: 800px) {
  .at-column {
    width: 48% !important;
    max-width: 48% !important;
    min-width: 48% !important;
    flex-basis: 48% !important;
  }
}

@media (max-width: 600px) {
  .at-column {
    width: 95% !important;
    max-width: 95% !important;
    min-width: 95% !important;
    flex-basis: 95% !important;
    margin: 3% !important;
    height: auto;
  }

  .at-user {
    top: 95% !important;
  }

  .at-user__line {
    margin-bottom: 12rem;
  }
}
