/* ------------------------------------------------------------ *\
	section-team
\* ------------------------------------------------------------ */
.section-team {
  padding: 6rem 0 6rem;
  background-color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  /*  Mobile  */
}
@media (max-width: 767px) {
  .section-team {
    padding: 4rem 0;
  }
}
.section-team .section__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.section-team .section__background:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0);
/*   background: radial-gradient(circle, rgb(255, 193, 163) 0%, rgba(255, 193, 163, 0) 60%); */ /* Remove Gradient */ */
}
.section-team .section__inner {
  position: relative;
  z-index: 2;
}
.section-team .section__head {
  margin-bottom: 14.9rem;
  /*  Small Desktop  */
  /*  Mobile  */
}
@media (max-width: 1299px) {
  .section-team .section__head {
    margin-bottom: 8rem;
  }
}
@media (max-width: 767px) {
  .section-team .section__head {
    margin-bottom: 4rem;
  }
}
.section-team .section__head h4 {
  color: var(--c-orange);
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.section-team .grid--size-1of4 {
  --grid-gutter-x: 11.2rem;
  --grid-gutter-y: 7rem;
  /*  Small Desktop  */
  /*  Tablet  */
  /*  Mobile  */
}
@media (max-width: 1299px) {
  .section-team .grid--size-1of4 {
    --grid-gutter-x: 8rem;
    --grid-gutter-y: 4rem;
  }
}
@media (max-width: 1023px) {
  .section-team .grid--size-1of4 {
    --grid-gutter-x: 3rem;
    --grid-gutter-y: 3rem;
    --grid-cols: 3;
  }
}
@media (max-width: 767px) {
  .section-team .grid--size-1of4 {
    --grid-cols: 2;
  }
}
@media (max-width: 425px) {
  .section-team .grid--size-1of4 {
    --grid-cols: 2;
  }
}
/* ------------------------------------------------------------ *\
	member
\* ------------------------------------------------------------ */
.member .member__image {
  margin-bottom: 2.5rem;
  max-height: 25rem;
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-color: #040D4F;
  position: relative;
  overflow: hidden;
}
.member .member__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.member .member__content h4 {
  color: var(--c-base);
  margin-bottom: 1.1rem;
}
.member .member__content p {
  margin-bottom: 0.8rem;
}
.member .member__content ul {
  list-style-type: none;
}
.member .socials {
  justify-content: center;
}
.member .socials a svg path {
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .member .socials a:hover svg path {
    fill: var(--c-blue);
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .member .socials a:hover svg path {
    fill: var(--c-blue);
  }
}