.team-member {
    position: relative;
    overflow: hidden;
    background-color: #f2f2f2;
    border-radius: 20px;
    padding: 0;
    border: 2px solid #f2f2f2;
    background-image: url(../images/bg_sky.jpg);
    background-size: cover;
    margin-bottom: 50px;
  }

  .team-member::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 0;
  }

  .team-member .picture {
    width: 40%;
    position: absolute;
    z-index: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    
  }

  .team-member .picture-left {
    top: 50%;
    left: 25%;
    transform: translate(-50%, -60%);
  }

  .team-member .picture-right {
    top: 50%;
    right: 25%;
    transform: translate(50%, -60%);
  }

  .team-member .picture img{
    width: 100%;
    height: auto;
  }

  .team-member .description h2 {
    font-weight: 900;
    background: linear-gradient(to right, #263d4d, #5c8eb0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  /*.team-member hr {
    background: linear-gradient(to right, #263d4d, #5c8eb0);
  }*/

  .team-member .description h5 {
    font-weight: 900;
    font-family: monospace;
    text-transform: uppercase;
  }

  .team-member h6 {
    font-family: monospace;
  }

  .team-member .description {
    width: 50%;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    padding: 40px;

    text-align: justify;
    position: relative;
    z-index: 1;
  }

  .team-member .description p {
    text-indent: 20px
  }

  .team-member .description-right{
    float: inline-end;
    border-radius: 20px 0 0 20px;
    margin: 80px 0 80px 40px;
  }

  .team-member .description-left{
    float: inline-start;
    border-radius: 0 20px 20px 0;
    margin: 80px 40px 80px 0;
  }

  .circle-tl::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #0A92F5, #03D2C8);
    z-index: 0;
  }

  .circle-br::before {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(to right, #03D2C8, #0A92F5);
    z-index: 0;
  }

  .circle-tls::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(to right, #6A0DAD, #D8BFD8);
    z-index: 0;
  }

  .circle-brl::before {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -180px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to right, #D8BFD8, #6A0DAD);
    z-index: 0;
  }

  @media (max-width: 1000px) {
    .team-member .picture {
      /*display: none;*/
      width: 200px;
      top: 20px;
      left: 50%;
      transform: translate(-50%, 0);
    }

    .team-member .description {
      width: 80%;
      margin: 240px auto 40px auto;
    }
  }