.container-full {
  display: flex;
  width: 100%;
  position: relative;
  z-index: 0;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 5rem;
}

.section-full {
  display: grid;
  width: 100%;
  gap: 1.75rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  max-width: 1280px;
}

.img-full {
  border-radius: 1.5rem;
  width: 100%;
  height: auto;
}

.img-full-1 {
  display: flex;
  justify-content: center;
  padding: 0;
}

.article-full {
  max-width: 1280px;
  margin-bottom: 0.75rem;
  gap: 4rem;
}

.title-2 {
  gap: 2rem;
  font-size: 40px;
}

.li-1 {
  display: grid;
  position: relative;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
  place-items: center;
  margin-top: 1.75rem;
}

.li-1 li {
  width: 100%;
  max-width: 80%;
}

.li-1 li h3 {
  display: flex;
  align-items: center;
  background-color: rgb(69, 96, 185);
  border-radius: 10px;
  width: 100%;
  padding: 0.75rem;
  justify-content: center;
  color: white;
}

.icon-li {
  filter: brightness(0) invert(1);
  padding: 4px;
  width: 28px;
  height: 28px;
}
.li-1 li h3 {
  transition: box-shadow 300ms ease-in-out;
}

.li-1 li h3:hover {
  box-shadow: 0px 8px 5px rgba(0, 0, 0, 0.226);
}

@media (min-width: 768px) {
  .container-full {
    padding-bottom: 0;
  }
  .section-full {
    justify-content: space-between;
    gap: 1.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
  }
  .img-full-1 {
    padding: 13px;
    height: auto;
  }
  .img-full {
    height: max-content;
  }
  .article-full {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

@media (min-width: 1024px) {
  .li-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 0;
  }

  .li-1 li {
    max-width: 90%;
  }

  .img-full {
    border-radius: 1.5rem;
  }

  .img-full-1 {
    padding: 40px;
    height: auto;
  }
}
