@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
* {
  box-sizing: border-box;
}
.back-btn {
  border-radius: 50%;
  background-color: white;
  padding: 1vh 1vw;
  font-size: 3vh;
}
.back-link-flex{
  margin-top: 3.3vh;
}
#back-link{
  text-decoration: none;
  color: #03a1c4;
}
.team-section {
  background-color: #03a1c4;
  min-height: 100vh;
  padding: 70px 15px;
}
.container {
  max-width: 1170px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
}
.team-section .section-title {
  flex-basis: 90%;
  max-width: 100%;
  margin-bottom: 70px;
}
.team-section .section-title h1 {
  font-size: 40px;
  text-align: center;
  margin: 0;
  color: aliceblue;
  font-weight: 700;
}
.team-section .section-title p {
  font-size: 16px;
  text-align: center;
  margin: 15px 0 0;
  color: aliceblue;
}
.team-section .team-items {
  flex-basis: 100%;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.team-section .team-items .item {
  flex-basis: calc(25% - 30px);
  max-width: calc(25% - 30px);
  margin-top: 30px;
  transition: all 0.5s ease;
}
.team-section .team-items .item img {
  display: block;
  width: 100%;
  height: 80%;
  border-radius: 10px;
  object-fit: cover;
}
.team-section .team-items .item .inner {
  position: relative;
  z-index: 11;
  padding: 0 15px;
}
.team-section .team-items .item .inner .info {
  background-color: #03a1c4;
  text-align: center;
  padding: 20px 15px;
  border-radius: 8px;
  transition: all 0.5s ease;
  margin-top: -40px;
}
.team-section .team-items .item:hover .info {
  transform: translateY(-20px);
}
.team-section .team-items .item:hover {
  transform: translateY(-10px);
}
.team-section .team-items .item .inner .info h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: aliceblue;
}
.team-section .team-items .item .inner .info p {
  font-size: 16px;
  font-weight: 400;
  color: aliceblue;
  margin: 10px 0 0;
}
.team-section .team-items .item .inner .info .social-links {
  padding-top: 15px;
}
.team-section .team-items .item .inner .info .social-links a {
  display: inline-block;
  height: 32px;
  width: 32px;
  background-color: aliceblue;
  color: #00cccc;
  border-radius: 50%;
  margin: 0 2px;
  text-align: center;
  line-height: 32px;
  font-size: 16px;
  transition: all 0.5s ease;
}
.team-section .team-items .item .inner .info .social-links a:hover {
  box-shadow: 0 0 10px #000;
}

/*respponsive*/
@media (max-width: 991px) {
  .team-section .team-items .item {
    flex-basis: calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}
@media (max-width: 767px) {
  .team-section .team-items .item {
    flex-basis: calc(100%);
    max-width: calc(100%);
  }
}
