.meet_our_team {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  position: relative;
  z-index: -2;
  padding: 154px 0;
  text-align: center;

  @media screen and (max-width: 767px) {
    padding: 198px 0;
    height: 515px;
  }

  h1 {
    color: $color-white;
    font-family: $font-family-sora;
    font-weight: bold;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;

    @media screen and (max-width: 767px) {
      font-size: 32px;
      letter-spacing: 0.2px;
    }
  }

  p {
    margin-top: 16px;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    color: $color-white;

    @media screen and (max-width: 767px) {
      font-size: 18px;
      letter-spacing: 0.3px;
      padding-left: 25px;
      padding-right: 25px;
    }
  }
}

.meet_our_team::before {
  content: "";
  z-index: -2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.4);
}

.meet_our_team_profile {
  margin-top: 80px;
  margin-bottom: 25px;

  @media screen and (max-width: 767px) {
    margin-top: 56px;
    margin-bottom: 0px;
  }

  .profile {
    border-left: 1px solid $color-grey;
    margin-bottom: 56px;

    @media screen and (max-width: 767px) {
      border: none;
      margin-bottom: 48px;
    }

    .title {
      margin-left: 15px;
      display: inline-block;

      @media screen and (max-width: 767px) {
        margin-left: 0px;
      }

      h3 {
        font-family: $font-family-sora;
        font-weight: 600;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: left;
        color: $color-secondary;
      }
    }

    .in_link {
      width: 32px;
      height: 32px;
      background-image: url(../../../assets/img/icons/in.svg);
      float: right;

      &:hover {
        background-image: url(../../../assets/img/icons/in_blue.svg);
      }
    }

    .info {
      margin-left: 15px;

      @media screen and (max-width: 767px) {
        margin-left: 0px;
      }

      .text {
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: left;
        color: $color-dark;
        font-size: 14px;
      }

      .context {
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 1.5;
        letter-spacing: normal;
        text-align: left;
        color: $color-dark;
        font-size: 16px;
        height: 192px;

        @media screen and (max-width:1024px) {
          height: 232px;
        }

        @media screen and (max-width: 767px) {
          height: auto;
        }
      }
    }

    .profile_pic {
      img {
        width: 100%;
        height: 100%;
        margin-top: 8px;

        @media screen and (max-width: 767px) {
          margin-top: 24px;
        }
      }
    }
  }
}
