.coach-lead {
	font-weight: 700;
	margin-bottom: 1rem;
}

.coach-main {
    display:flex;
    flex-wrap:wrap;
	font-size: 1rem;
	justify-content: space-between;
}

.coach-left {
    position: relative;
    width:58%;
	margin-right: 18px;
}

.coach-right {
	position: relative;
    width:40%;
	border: 1px solid #333;
	padding: .5rem;
	align-self: baseline;
	background-color: #e5e5e5;
}

.coach-right ul {
	list-style: none;
	padding: 0;
}

.right-header {
    text-transform: uppercase;
    line-height: 1.25;
    border-bottom: 1px solid #cf102d;
    font-weight: 700;
    font-size: 1.25rem;
    color: #cf102d;
}

@media (max-width: 769px ) {
  .coach-main {
      justify-content: space-between;
  }

  .coach-left {
      order:2;
	  width: 100%;
	  margin-right: 0;
  }

  .coach-right {
      order:1;
	  width: 100%;
	  margin-bottom: 18px;
  }
}