html {
  font-size: 10px;
}

@media (max-width: 1550px) {
  html {
    font-size: 6.6px;
  }
}
.section-team {
  padding: 3rem 0 9rem;
}
.section-team .team-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1.2rem;
  margin-right: -1.2rem;
}
.section-team .team-col {
  cursor: pointer;
  margin: 2.5rem 1.2rem;
  position: relative;
  width: calc(33.3333333333% - 2.4rem);
}
.section-team .team-col:hover .team-pic {
  transform: translateY(-1.5rem);
}
.section-team .team-col:hover .team-info h4 {
  color: #55F4FC;
}
.section-team .team-info {
  background-color: #050809;
  border: 1px solid #1A1D1E;
  border-radius: 4rem;
  margin-top: -10rem;
  padding: 12rem 3rem 3rem;
  position: relative;
  text-align: center;
  transition: transform 1.3s;
}
.section-team .team-info h4 {
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.section-team .team-info p {
  font-size: 1.4rem;
}
.section-team .team-info .social {
  margin-top: 2rem;
}
.section-team .team-info .social a {
  transform: scale(1);
  transition: transform 1.3s;
}
.section-team .team-info .social a span {
  color: #ffffff;
  font-size: 24px;
}
.section-team .team-info .social a + a {
  margin-left: 30px;
}
.section-team .team-info .social a:hover {
  transform: scale(1.5);
}
.section-team .team-info .social a:hover span {
  color: #55F4FC;
}
.section-team .team-info .social a:hover svg path {
  fill: #55F4FC;
}
.section-team .team-info .social a.ic-tw svg {
  max-width: 20px;
  height: 20px;
}
.section-team .team-pic {
  background: linear-gradient(90.45deg, #55F4FC 5.48%, #1A6FB5 99.82%);
  border-radius: 100%;
  height: 20rem;
  margin: auto;
  position: relative;
  inset: 0;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 1.3s;
  width: 20rem;
  z-index: 5;
}
.section-team .team-pic .box {
  border-radius: 100%;
  height: calc(100% - 1.2rem);
  width: calc(100% - 1.2rem);
  position: absolute;
  inset: 0;
  margin: auto;
  overflow: hidden;
}
.section-team .team-pic img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.section-team .team-pic::after {
  content: "";
  position: absolute;
  background-color: #050809;
  border-radius: 100%;
  height: calc(100% - 1.2rem);
  inset: 0;
  margin: auto;
  width: calc(100% - 1.2rem);
  z-index: -1;
}
.section-expertise {
  padding: 10rem 0;
}
.section-expertise .title {
  margin-bottom: 2rem;
}
.section-expertise .title span {
  background: linear-gradient(90.45deg, #55F4FC 5.48%, #1A6FB5 99.82%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  border: 1px solid #666;
  border-radius: 35px;
  font-size: 2rem;
  font-weight: 400;
  padding: 1rem 2.5rem 1rem 2.5rem;
  line-height: 4.6rem;
  text-align: center;
}
.section-expertise .title .h {
  margin-top: 2rem;
}
.section-expertise .services-row2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: -1.2rem;
  margin-right: -1.2rem;
}
.section-expertise .services-col2 {
  background-color: #1A1D1E;
  border-radius: 3rem;
  cursor: pointer;
  margin: 1.2rem;
  padding: 3rem;
  transition: all 0.3s ease-out;
  width: calc(33.3333333333% - 2.4rem);
}
.section-expertise .services-col2:hover {
  box-shadow: 0 0 15px rgba(85, 244, 252, 0.1);
  transform: translateY(-3px) scale(1.005) translateZ(0);
}
.section-expertise .services-col2:hover h4 {
  background: linear-gradient(90.45deg, #55F4FC 5.48%, #1A6FB5 99.82%);
  background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
}
.section-expertise .services-col2:hover p {
  color: white;
}
.section-expertise .services-col2 h4 {
  color: #ffffff;
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 1.6rem;
}
.section-expertise .services-col2 p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
}
.section-expertise::before {
  content: "";
  position: absolute;
  background: url(../images/challenges-bg.png) no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

@media (max-width: 991px) {
  .section-team .team-col {
    width: calc(50% - 2.4rem);
  }
  .section-team .team-pic {
    height: 15rem;
    width: 15rem;
  }
  .section-team .team-info {
    margin-top: -7.5rem;
    padding: 9rem 3rem 3rem;
  }
  .section-expertise .services-col2 {
    width: calc(50% - 2.4rem);
  }
}
@media (max-width: 767px) {
  .section-team .team-row {
    margin: 0;
  }
  .section-team .team-col {
    margin: 0;
    width: 100%;
  }
  .section-team .team-col + .team-col {
    margin-top: 4rem;
  }
  .section-team .team-pic {
    height: 15rem;
    width: 15rem;
  }
  .section-team .team-info {
    margin-top: -7.5rem;
    padding: 9rem 3rem 3rem;
  }
  .section-expertise .services-col2 {
    width: calc(100% - 2.4rem);
  }
}/*# sourceMappingURL=our-team.css.map */