/* Color pallette */
/* cubic-bezier timing functions */
/* Header */
.focuses {
  padding: 0 0 100px;
}
.focuses__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: auto;
}
.focuses__group {
  width: 100%;
}
.focuses__group:first-child {
  border-top: 1px solid #c3c3c3;
}
.focuses__title {
  width: 100%;
}
.focuses__title h3 {
  width: 100%;
  padding: 0.5em 0;
  text-align: center;
  text-transform: none;
}
.focuses__title [style] {
  color: #f58220 !important;
}

.focus-card {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: flex-start;
  gap: 2em;
  padding: 2em;
  color: hsl(0, 0%, 0%);
  border-left: 1px solid #c3c3c3;
  border-right: 1px solid #c3c3c3;
  border-bottom: 1px solid #c3c3c3;
}
.focus-card__title {
  max-width: 70%;
  color: hsl(0, 0%, 0%);
  font-size: 16px;
  font-size: 1rem;
  line-height: 25.6px;
  line-height: 1.6rem;
}
.focus-card__icon {
  width: 100%;
  width: 50px;
}
.focus-card__group {
  color: inherit;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 19.2px;
  line-height: 1.2rem;
}
.focus-card:first-child {
  color: #f58220;
  background-color: hsl(0, 0%, 100%);
}
.focus-card svg {
  height: 100%;
  color: inherit;
  fill: currentColor;
}
@media screen and (min-width: 768px) {
  .focuses__wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1.5em;
  }
  .focuses__group:nth-child(2) {
    flex-direction: column-reverse;
  }
  .focuses__group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    min-height: 100%;
    border-top: 1px solid #c3c3c3;
  }
  .focuses__title h3 {
    padding: 2em 0;
  }
  .focus-card {
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5em;
    padding: 2rem 3em;
    flex-grow: 1;
  }
  .focus-card.-desktop-reverse {
    flex-direction: column-reverse;
  }
  .focus-card__title {
    margin-bottom: 2em;
    max-width: 100%;
  }
  .-desktop-reverse .focus-card__title {
    margin-bottom: 0;
  }
  .focus-card__icon {
    margin-top: auto;
    margin-left: auto;
  }
  .-desktop-reverse .focus-card__icon {
    margin-top: 0;
    margin-bottom: auto;
  }
  .focus-card:first-child {
    min-height: 300px;
  }
}
@media screen and (min-width: 1200px) {
  .focus-card__title {
    max-width: 70%;
  }
}