.bg-wave {
  height: 106px;
  background-image: url("../assets/images/banner-nexis-qualificacao.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.wrapper-solutions-title {
  display: flex;
  justify-content: center;
  margin: 52px 0px;
}

.wrapper-solutions-title h1 p {
  font-size: clamp(2rem, 2.6rem, 2.6rem);
  font-weight: 700;
  font-family: GothamBold, sans-serif;
  color: #000;
}

.wrapper-solutions-title h1 p del {
  padding: 16px 3px;
  color: #fff;
  background-color: var(--blue400);
  text-decoration: none;
}

/* Section Solutions */

.solutions {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  margin-top: 0px;
  margin-bottom: 100px;
}

.solutions h1 {
  font-size: clamp(2rem, 2.6rem, 2.6rem);
  color: #000;
  font-weight: 500;
  font-family: GothamBold, sans-serif;
}

.solutions h1 span {
  position: relative;
  font-weight: 700;
  color: #1b88cc;
}

.solutions h1 span::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0px;
  width: 100%;
  height: 5px;
  background-color: #1b88cc;
}

.solutions__list {
  display: flex;
  gap: 110px;
  justify-content: space-around;
  flex-wrap: wrap;
}

.solutions__list__list-items {
  position: relative;
}

.solutions__list__list-items img{
  width: 238px;
}

.solutions__list__list-items p {
  position: absolute;
  bottom: 25px;
  left: -25px;

  display: flex;
  align-items: center;
  justify-content: start;
  width: 180px;
  height: 55px;
  padding: 8px 24px;

  font-size: 1.8rem;
  color: #fff;
  background-color: #000;
  font-weight: bold;
  font-family: GothamBold, sans-serif;
}

.solutions a {
  margin-top: 25px;
}

/* Media Queries */

@media (max-width: 935px) {

  /* Solutions */
  
  .solutions__list {
    gap: 36px;
    flex-wrap: wrap;
  }
}