.team {
  padding: 0 0 50px 0;
  width: 100%;
  box-sizing: border-box;
}

.team__page-title {
  width: 50%;
  margin: 60px auto;
  text-align: center;
}

.team__page-title p {
  font-size: 20px;
  line-height: 28px;
}

.team__two-columns {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2E2C8; /*main bg colour on page*/
}

.team__two-columns:before {
  content: '';
  background-color: white;
  height: 6px;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.team__text-col {
  flex: 1;
  text-align: center;
  font-size: 17px;
  line-height: 26px;
  padding: 12px;
}

.team__inner {
  padding: 0 60px;
}

.team__inner--role {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
}

.team__inner--description {
  color: #594c45; /*text colour*/
}

.team:nth-child(odd) .team__text-col {
  order: 2;
}

.team:nth-child(even) .team__img-col {
  order: 1;
}

.team__img-col {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.team__img-col img {
  width: 100%;
  height: 546px;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  .container--no-padding--team {
    padding: 0 20px;
  }

  .team__page-title {
    width: 80%;
    margin: 40px auto 30px;
  }

  .team__img-col img {
    height: 445px;
  }

  .team__inner {
    padding: 0 20px;
  }
}

@media screen and (max-width: 800px) {
  .team__img-col img {
    height: 420px;
  }

  .team__inner {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .team {
    padding: 0 0 40px 0;
  }

  .team__page-title {
    width: 100%;
  }

  .team__page-title p,
  .team__inner--role {
    font-size: 18px;
    line-height: 24x;
  }

  .container--no-padding--team {
    padding: 0 20px;
  }

  .team__two-columns {
    flex-direction: column;
  }

  .team:nth-child(even) .team__text-col {
    order: 2;
  }

  .team__img-col img {
    height: 335px;
  }

  .team__text-col {
    font-size: 16px;
    line-height: 24px;
    padding: 12px 0;
  }
}