.PathwaysBanner {
  background: linear-gradient(90deg, #5760E8 0.7%, #2D9ADD 99.07%);
  padding: 16px 32px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  overflow: hidden;
  font-family: 'Roboto', sans-serif;
  margin: 0 0 32px 0;
}

.PathwaysBanner-content {
  max-width: 500px;
  padding-right: 16px;
}

.PathwaysBanner-title {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

.PathwaysBanner-description {
  font-size: 16px;
  margin: 8px 0 16px 0;
}

.PathwaysBanner-btn {
  display: inline-block;
  background: #68CFD2;
  padding: 8px 16px;
  border-radius: 24px;
  color: white;
  transition: all 0.2s ease;
}

.PathwaysBanner-btn:hover {
  background: #398A8C;
  color: white;
}

.PathwaysBanner img {
  height: 160px;
  flex: none;
}

@media only screen and (max-width: 700px) {
  .PathwaysBanner {
    padding: 24px 32px;
    margin: -3.5rem -2rem 2rem -2rem;
  }
  .PathwaysBanner-title {
    font-size: 18px;
  }

  .PathwaysBanner img {
    display: none;
  }

}