.examples-line__section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
}

.examples-line__section .section-title {
  font-size: 2.4rem !important;
  line-height: 3.5rem !important;
}

.examples-line__list {
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.examples-line__item {
  width: calc(100% / 5 - 1rem);
}

.examples-line__item img {
  max-height: 280px;
}

@media screen and (max-width: 1200px) {
  .examples-line__list {
    justify-content: space-evenly;
  }

  .examples-line__item {
    width: calc(100% / 4 - 1rem);
  }

  .examples-line__item img {
    max-height: 280px;
    width: 80%;
  }
}

@media screen and (max-width: 998px) { 
  .examples-line__item img {
    max-height: 280px;
    width: 90%;
  }
}

@media screen and (max-width: 768px) { 
  .examples-line__item {
    width: calc(100% / 3 - 1rem);
  }

  .examples-line__item img {
    max-height: 280px;
    width: 100%;
  }

  .examples-line__section {
    padding: 2rem 0 !important;
  }
}

@media screen and (max-width: 600px) { 
  .examples-line__section .section-title {
    font-size: 2.25rem !important;
    line-height: 3rem !important;
    margin-bottom: 2.5rem;
  }
}

@media screen and (max-width: 480px) { 
  .examples-line__item {
    width: calc(100% / 2 - 1rem);
  }

  .examples-line__section .section-title {
    font-size: 1.813rem !important;
    line-height: 2.375rem !important;
  }
}