/** team-section **/

.team-section {
  position: relative;
}

.team-block-one .inner-box {
  position: relative;
  display: block;
  margin-bottom: 25px;
}

.team-block-one .inner-box .image-box {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-block-one .inner-box .image-box .image {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.team-block-one .inner-box .image-box .image img {
  width: 100%;
  border-radius: 10px;
  transition: all 0.3s ease-in-out 0.1s;
}

.team-block-one .inner-box:hover .image-box .image img {
  transform: scale(1.05);
  opacity: 0.8;
}

.team-block-one .inner-box .image-box .social-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 0);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}

.team-block-one .inner-box:hover .image-box .social-links {
  transform: translate(-50%, -50%) scale(1, 1);
}

.team-block-one .inner-box .image-box .social-links li {
  margin: 0px 5px;
}

.team-block-one .inner-box .image-box .social-links li a {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 48px;
  background: #fff;
  color: var(--title-color);
  font-size: 18px;
  text-align: center;
  border-radius: 50%;
}

.team-block-one .inner-box .image-box .social-links li a:hover {
  color: #fff;
}

.team-block-one .inner-box .lower-content {
  position: relative;
  display: block;
  padding-top: 21px;
}

.team-block-one .inner-box .lower-content h3 {
  display: block;
  font-size: 28px;
  line-height: 36px;
}

.team-block-one .inner-box .lower-content h3 a {
  display: inline-block;
  color: var(--title-color);
}

.team-block-one .inner-box .lower-content h3 a:hover {
}

.team-block-one .inner-box .lower-content .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}

.team-section .bg-layer {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 514px;
  height: 767px;
  opacity: 0.1;
  background-repeat: no-repeat;
}

.team-section .pattern-layer {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 861px;
  height: 1002px;
  background-repeat: no-repeat;
}

.team-section .pattern-layer-2 {
  position: absolute;
  left: -82px;
  top: 0px;
  width: 331px;
  height: 343px;
  background-repeat: no-repeat;
}

/** team-style-two **/

.team-style-two {
  position: relative;
}

.team-style-two .team-block-one .inner-box .image-box .image,
.team-style-two .team-block-one .inner-box .image-box .image img {
  border-radius: 50%;
}

.team-style-two .pattern-layer {
  position: absolute;
  left: -82px;
  top: 0px;
  width: 331px;
  height: 343px;
  background-repeat: no-repeat;
}


.our-team {
  padding: 30px 0 40px;
  margin-bottom: 30px;
  border: 1px solid rgb(0 70 139 / 11%);
  text-align: center;
  overflow: hidden;
  position: relative;
  min-height: 319px;
}

.our-team .picture {
  display: inline-block;
  /* height: 130px; */
  width: 130px;
  margin-bottom: 50px;
  z-index: 1;
  position: relative;
}

.our-team .picture::before {
  content: "";
  width: 100%;
  height: 0;
  border-radius: 50%;
  background-color: var(--theme-color);
  position: absolute;
  bottom: 135%;
  right: 0;
  left: 0;
  opacity: 0.9;
  transform: scale(3);
  transition: all 0.3s linear 0s;
}

.our-team:hover .picture::before {
  height: 100%;
}

.our-team .picture::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--theme-color);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.our-team .picture img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  transform: scale(1);
  transition: all 0.9s ease 0s;
}

.our-team:hover .picture img {
  box-shadow: 0 0 0 14px var(--theme-color);
  transform: scale(0.7);
}

.our-team .title {
  display: block;
  font-size: 15px;
  color: #4e5052;
  text-transform: capitalize;
}

.our-team .social {
  width: 100%;
  padding: 0;
  margin: 0;
  background-color: var(--secondary-color-2);
  position: absolute;
  bottom: -100px;
  left: 0;
  transition: all 0.5s ease 0s;
  height: 2rem;
}

.our-team:hover .social {
  bottom: 0;
}

.our-team .social li {
  display: inline-block;
  margin-top: -1.5rem;
}

.our-team .social li a {
  display: block;
  padding: 10px;
  font-size: 17px;
  color: var(--theme-color);
  transition: all 0.3s ease 0s;
  text-decoration: none;
}

.our-team .social li a:hover {
  color: var(--theme-color);
  background-color: var(--theme-color);
}

.team-content .name {
  font-size: 20px;
}


@media (max-width: 575px) {
  .our-team {
    width: 20rem;
  }

  .profile-view {
    text-align: -webkit-center;
  }
}
