/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.opportunities {
  padding: 60px 0;
}
.opportunities__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: auto;
}
.opportunities__group {
  width: 100%;
  gap: 1.5em;
}
.opportunities__group:first-child .opportunity-card:first-child {
  border: 1px solid #c3c3c3;
}
.opportunities__title {
  width: 100%;
}
.opportunities__title h3 {
  width: 100%;
  padding: 0.5em 0;
  text-align: center;
  text-transform: none;
}
.opportunities__title [style] {
  color: #f58220 !important;
}
.opportunities__content {
  width: 100%;
  text-align: center;
  margin: 0 0 40px 0;
}
.opportunities__content p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 20px;
  line-height: 1.25rem;
}

.opportunity-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
  width: 100%;
  padding: 2em;
  color: hsl(0, 0%, 0%);
  border: 1px solid #c3c3c3;
  border-top: 0;
  height: 200px;
}
.opportunity-card__title {
  max-width: 70%;
  color: hsl(0, 0%, 0%);
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
}
.opportunity-card__icon {
  width: 100%;
  width: 50px;
  margin: 0 0 0 auto;
}
.opportunity-card__group {
  color: inherit;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 19.2px;
  line-height: 1.2rem;
}
.opportunity-card.bg-white {
  background-color: hsl(0, 0%, 100%);
}
@media screen and (min-width: 768px) {
  .opportunities {
    padding: 100px 0;
  }
  .opportunities__wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
  }
  .opportunities__group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: auto;
    min-height: 100%;
  }
  .opportunities__group:first-child .opportunity-card {
    border: 1px solid #c3c3c3;
  }
  .opportunities__title h3 {
    padding: 2em 0;
  }
  .opportunities__content {
    width: 70%;
    margin: 0 auto 40px auto;
  }
  .opportunity-card {
    justify-content: space-between;
    gap: 0.5em;
    padding: 2rem 3em;
    flex-grow: 1;
  }
  .opportunity-card__title {
    max-width: 100%;
  }
  .opportunity-card__icon {
    position: absolute;
    bottom: 20px;
    right: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .opportunity-card__title {
    max-width: 70%;
  }
}