.teamGrid {
  width: 100%;
}
.tg__container {
  max-width: 1280px;
  width: 90%;
  margin: 0 auto;
  padding: 115px 0;
}
.tg__top {
  color: #0a2740;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
}
.tg__title {
  color: #0a2740;
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  margin: 24px 0 24px 0;
  text-align: center;
}
.tg__text {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
  margin: 0 0 80px 0;
  text-align: center;
}
.tg__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.tg__card {
  display: grid;
  gap: 24px;
  justify-items: center;
  text-align: center;
}
.tg__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
.tg__name {
  color: #0a2740;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  margin: 0;
}
.tg__location {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tg__icons {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.tg__icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.tg__cta {
  margin-top: 80px;
  text-align: center;
  display: grid;
  gap: 20px;
  justify-items: center;
}
.tg__cta-title {
  color: #0a2740;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 120%;
  margin: 0;
}
.tg__cta-text {
  color: #000;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  max-width: 770px;
}
.tg__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 30px;
  text-decoration: none;
  background: #0a2740;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  border: 1px solid #0a2740;
  box-sizing: border-box;
}
.tg__cta-btn:hover {
  background: #fff;
  color: #0a2740;
  border: 1px solid #0a2740;
}

@media (max-width: 900px) {
  .tg__container {
    width: 92%;
    padding: 90px 0;
  }
  .tg__title {
    font-size: 40px;
  }
  .tg__text {
    font-size: 16px;
    margin-bottom: 60px;
  }
  .tg__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .tg__image {
    height: 340px;
  }
  .tg__icon {
    width: 24px;
    height: 24px;
  }
  .tg__cta {
    margin-top: 60px;
    gap: 16px;
  }
  .tg__cta-title {
    font-size: 24px;
  }
  .tg__cta-text {
    font-size: 15px;
  }
}
@media (max-width: 600px) {
  .tg__container {
    padding: 70px 0;
  }
  .tg__title {
    font-size: 34px;
  }
  .tg__text {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .tg__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tg__image {
    height: 260px;
  }
  .tg__icons {
    gap: 6px;
  }
  .tg__icon {
    width: 22px;
    height: 22px;
  }
  .tg__cta {
    margin-top: 50px;
  }
  .tg__cta-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 16px;
  }
}
