.meet-the-team{
  .inner-container{

  }
  .main-heading{
    text-align: center;
  }
  .small-heading{
    text-align: center;
  }
  .top-p{
    text-align: center;
  }
  p{
    color:var(--blue);
  }


  .members {
    display: grid;

    gap:20px;
    .member{
      padding:20px 0px 0px 0px;
      gap:50px;
      @media(min-width: 768px){
        padding:50px 0px 0px 0px;
        gap:40px;
      }

      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      @media(min-width: 768px) {
        justify-content: space-between;
      }

      .contain{
        position: relative;
      }
      img{
        display: flex;
        width:100%;
        border-radius: 30px;
        max-width: 440px;
        object-fit: cover;

      }
      &:nth-child(even) {
        @media(min-width: 768px) {
          flex-direction: row-reverse;
        }
        .team{
          display: flex;
          justify-content: flex-end;
        }

        .contain{
          height:fit-content;
        }
        .team{
          @media(min-width: 768px){
            margin-top:-10%;
          }
        }

      }
      .col{

        @media(min-width: 768px){
          flex: 1;
        }
      }

      .text{
        h3{
          font-size:20px;
          color:var(--blue);
          font-weight: bold;
          margin-bottom:20px;
          @media(min-width: 768px){
            font-size:30px;
            margin-bottom:40px;
          }
        }
        p{
          margin-bottom: 20px;
          @media(min-width: 768px){
            margin-bottom: 30px;
          }
        }
      }

    }
    .team{

      position: relative;

      .person{
        position: absolute;
        bottom:40px;
        left:20px;
        width:100%;
        right:20px;
        @media(min-width: 768px){
          bottom:40px;
          right:40px;
        }
      }
      p{

        color:#fff;
        &:first-child{
          font-size:20px;
          @media(min-width: 768px){
            font-size:30px;
          }
        }
      }
    }

  }
}
