.title::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-top: 8px;
  background-color: #3c8481;
}

.button-primary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 45px;
  padding: 8px;
  background-color: #3c8481;
  font-size: 14px;
  color: #e8e8e8;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.086);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.button-primary:hover {
  background-color: #ea7227;
  color: #e8e8e8;
}

.button-secondary {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-width: 113px;
  min-height: 27px;
  padding: 3.2px;
  background-color: #e8e8e8;
  font-size: 14px;
  color: #3c8481;
  text-transform: uppercase;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.086);
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.button-secondary:hover {
  background-color: #ea7227;
  color: #e8e8e8;
}

.tooltip {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: #e8e8e8;
  float: right;
  background-color: #3c8481;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: 1;
}

.tooltip__text {
  visibility: hidden;
  width: 120px;
  background-color: #3c8481;
  font-size: inherit;
  color: inherit;
  text-align: center;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  padding: 3.2px;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.tooltip__text:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #3c8481 transparent transparent transparent;
}

.tooltip:hover .tooltip__text {
  visibility: visible;
  opacity: 1;
}

.page-title__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 252px;
  background-size: cover;
  background-position: center;
}

.page-title__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: #3c8481e3;
  opacity: 0.89;
}

@media (min-width: 992px) {
  .page-title__content {
    height: 352px;
  }
}

.page-title__name {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.page-title__name::after {
  content: "";
  display: block;
  width: 82px;
  height: 3px;
  margin: 16px auto 0 auto;
  background-color: #ea7227;
}

@media (min-width: 992px) {
  .page-title__name {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}

.card {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 91px auto;
  gap: 1rem;
  width: 100%;
  max-width: 359px;
  min-height: 292px;
  height: 100%;
  box-shadow: 3px 2px 12px rgba(0, 0, 0, 0.18);
  padding: 16px;
  margin: auto;
  text-align: center;
  border-radius: 11px;
  -webkit-border-radius: 11px;
  -moz-border-radius: 11px;
  -ms-border-radius: 11px;
  -o-border-radius: 11px;
}

.card--image {
  grid-template-rows: 146px auto;
}

.card__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 91px;
  height: 91px;
  text-align: center;
  border: 3px solid #ea7227;
  padding: 8px;
  margin-bottom: 24px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.card__icon i {
  font-size: 38px;
  color: #ea7227;
}

.card__icon--image {
  width: 146px;
  height: 146px;
}

.card__icon--no-image {
  background-color: #eee;
}

.card__image {
  width: 80px;
}

.card__title {
  color: #33726f;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
  text-align: center;
}

.card__subtitle {
  font-size: 14px;
  color: #ea7227;
  text-align: center;
}

.card__text {
  color: #888;
  text-align: center;
}

.card__link {
  color: #ea7227;
}

