.team-container {
  background-color: #fff;
  font-size: 16px;
}
.team-container p {
  line-height: 1.8em;
  margin-bottom: 20px;
}
.team-container .banner-box {
  height: 600px;
  padding-top: 100px;
  position: relative;
}
.team-container .banner-box img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.team-container .banner-box .title {
  position: relative;
  font-size: 54px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1;
  margin: 0 auto;
}
.team-container .main-box {
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.team-container .main-box .company-intro {
  font-size: 20px;
  margin-bottom: 50px;
  padding: 0 15px;
}
.team-container .main-box .profile-list {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.team-container .main-box .profile-list .item {
  display: flex;
}
.team-container .main-box .profile-list .item .left {
  padding: 0 15px;
}
.team-container .main-box .profile-list .item .right {
  padding: 0 15px;
}
.team-container .main-box .profile-list .item .right p {
  font-size: 20px;
}
.team-container .main-box .event-photos {
  padding: 0 15px;
}
.team-container .main-box .event-photos .item img {
  width: 100%;
}
.team-container .main-box .event-photos .item .title {
  margin-top: 20px;
}
.team-container .main-box .team-intro .desc {
  padding: 0 15px;
  margin-bottom: 20px;
}
.team-container .main-box .team-intro .desc .title {
  font-size: 1.5em;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.2;
}
.team-container .main-box .team-intro .person-list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
}
.team-container .main-box .team-intro .person-list .item {
  padding: 0 15px;
}
.team-container .grid-box {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 50px;
  column-gap: 30px;
}
.team-container .grid-box .item-col-6 {
  grid-column: span 6;
}
.team-container .grid-box .item-col-12 {
  grid-column: span 12;
}
.team-container .profile-picture {
  border-radius: 8px;
  background-color: #f6f6f6;
  overflow: hidden;
  transition: all 0.7s;
  box-shadow: 0 0 12px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}
.team-container .profile-picture::before {
  content: "";
  position: absolute;
  height: 70px;
  width: 80px;
  background: linear-gradient(-20deg, #0E90D5, #3032A2) !important;
  bottom: -30px;
  left: -50px;
  transform: rotate(45deg);
  transition: all 0.5s;
  opacity: 0.6;
}
.team-container .profile-picture::after {
  position: absolute;
  content: "";
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
  height: 8%;
  width: 12px;
  bottom: 0;
  right: 0;
  transition: all 0.5s;
  opacity: 0.6;
}
.team-container .profile-picture:hover {
  background: linear-gradient(45deg, #0E90D5, #3032A2) !important;
}
.team-container .profile-picture:hover::before {
  transform: rotate(135deg);
  opacity: 0;
}
.team-container .profile-picture:hover::after {
  display: none;
}
.team-container .profile-picture:hover .img-box img {
  margin-left: 10px;
}
.team-container .profile-picture:hover .info-box .job {
  color: #fff;
}
.team-container .profile-picture .img-box img {
  width: 100%;
  object-fit: cover;
  transition: all 0.5s;
  border-radius: 8px 0 0 40px;
}
.team-container .profile-picture .info-box {
  padding: 20px;
  text-align: center;
}
.team-container .profile-picture .info-box .name {
  color: #151a33;
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 5px;
  font-weight: 700;
}
.team-container .profile-picture .info-box .job {
  color: #0c59db;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 0;
  transition: all 0.4s;
}
@media (min-width: 576px) {
  .banner-box .title,
  .main-box {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .banner-box .title,
  .main-box {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .banner-box .title,
  .main-box {
    max-width: 960px;
  }
}
@media (min-width: 576px), (min-width: 768px), (min-width: 992px) {
  .main-box .profile-list .item .left {
    width: 50%;
  }
  .main-box .profile-list .item .right {
    width: 50%;
  }
  .main-box .team-intro .person-list .item {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .banner-box .title,
  .main-box {
    max-width: 1200px;
  }
  .banner-box .title .profile-list .item .left,
  .main-box .profile-list .item .left {
    width: 25%;
  }
  .banner-box .title .profile-list .item .right,
  .main-box .profile-list .item .right {
    width: 75%;
  }
  .banner-box .title .team-intro .person-list .item,
  .main-box .team-intro .person-list .item {
    width: 25%;
  }
}
