.title-5 {
  margin-bottom: 30px;
  text-align: center;
}

.title-5 h3 {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  color: var(--theme-color);
  position: relative;
  display: inline-block;
  padding: 0 28px;
}

@media (max-width: 767px) {
  .title-5 h3 {
    font-size: 28px;
    padding: 0 26px;
  }
}

@media (max-width: 575px) {
  .title-5 h3 {
    font-size: 24px;
    padding: 0 22px;
  }
}

.title-5 h3::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  clip-path: polygon(65% 0%, 100% 0%, 35% 100%, 0% 100%);
  width: 18px;
  height: 100%;
  background: #D6E7FF;
}

@media (max-width: 767px) {
  .title-5 h3::after {
    width: 16px;
  }
}

@media (max-width: 575px) {
  .title-5 h3::after {
    width: 14px;
  }
}

.title-5 h3::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  clip-path: polygon(65% 0%, 100% 0%, 35% 100%, 0% 100%);
  width: 18px;
  height: 100%;
  background: #D6E7FF;
}

@media (max-width: 767px) {
  .title-5 h3::before {
    width: 16px;
  }
}

@media (max-width: 575px) {
  .title-5 h3::before {
    width: 14px;
  }
}

.title-5 .view__more a {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 10px;
  color: var(--light-grey-color);
  font-size: 16px;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}
.title-5 .view__more a:hover {
  color: var(--secondary-color);
}
.title-5 .view__more a svg {
  display: flex;
  font-size: 14px;
  position: relative;
  top: -1px;
}
