.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%);
  }
}

.blog-menu__title {
  color: #7d7d7d;
  font-size: 25px;
}

.blog-menu__title::after {
  content: "";
  display: block;
  width: 27px;
  height: 3px;
  background-color: #3c8481;
  margin-top: 8px;
  margin-bottom: 16px;
}

.blog-menu__item:not(:last-child)::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ededed;
  margin-bottom: 16px;
}

.blog-menu__link {
  display: block;
  font-size: 14px;
  color: #888;
  margin-bottom: 16px;
}

.blog-menu__link i {
  color: #3c8481 !important;
  margin-right: 5px;
}

.blog-menu__link--last {
  color: #3c8481;
}

.blog-menu__link:hover {
  color: #3c8481;
  padding-left: 5px;
}

.blog__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, 290px);
  grid-template-rows: auto;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 32px;
}

.blog__card {
  position: relative;
  max-width: 290px;
  min-height: 545px;
  height: 100%;
  padding-bottom: 16px;
  margin: auto;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}

.blog__card--figure {
  background-color: #eee;
  border-radius: 15px 15px 0 0;
}

.blog__card-content {
  padding: 16px 8px 55px 8px;
}

.blog__card footer {
  position: absolute;
  bottom: 16px;
  z-index: 1;
  width: 100%;
  padding: 0 8px;
}

.blog__cover {
  width: 100%;
  max-width: 290px;
  height: 290px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px 15px 0 0;
}

.blog__time {
  color: #888;
  font-size: 13px;
}

.blog__title {
  font-size: 18px;
}

.blog__description {
  font-size: 17px;
  color: #888;
  text-align: justify;
}

.blog__description p {
  margin-bottom: unset;
}

.blog__button {
  width: 100%;
}

