/* Keywords box */
.keywordbox {
    border-top: 4px solid #ff9800;
    position: relative;
    min-height: 80px;
}
.keywordbox:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -3px;
  border: 6px solid transparent;
  border-top-color: #ff9800;
}
.keywordbox .title-text {
    font-family: "Gabarito", sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    color: #036297;
    line-height: 1.5;
}


@media (max-width: 480px){
  .keywordbox {
    border-top: 2px solid #ff9800;
    text-align: center;
  }
  .keywordbox .title-text {
    font-size: 1.2rem;
    margin-top: 2px;
  }
}