.image-with-description {
  position: relative;
  justify-content: center;
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.image-with-description > div {
  display: flex;
  justify-content: center;
  padding: 0 1rem;
  max-width: 50%;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: 100%;
}

.image-with-description h1 {
  color: #00d5fb;
  text-align: center;
  width: 100%;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.image-with-description img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.image-with-description b {
  color: #1e6325;
}

.image-with-description span {
  color: #6a3296;
  font-weight: bolder;
}

.image-with-description p {
  font-size: 1.3rem;
  max-width: 500px;
  margin: 0 auto;
}

.buttons-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1rem;
}
.buttons-group img {
  max-width: 45px;
  margin: 0;
  animation-name: move;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

@keyframes move {
  0% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(-20px);
  }

  100% {
    transform: translateX(0);
  }
}

.image-with-description a {
  width: 100%;
  display: flex;
  justify-content: center;
  text-decoration: none;
  max-width: 200px;
}

.image-with-description button {
  width: 100%;
  border: none;
  min-height: 40px;
  border-radius: 9px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #6a3296;
}

.icons-boxes-blue {
  background-color: #00d5fb;
}

.icons-boxes {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  margin: 0 auto;
  padding: 2rem 0;
  position: relative;
  max-width: 1300px;
  overflow: hidden;
}

.icons-boxes::before {
  content: "Empresas";
  position: absolute;
  font-size: 15rem;
  font-weight: 700;
  color: #ffffff3c;
  top: -30px;
}

.icons-boxes h2 {
  font-size: 1.9rem;
}
.icons-boxes img {
  width: 100%;
  max-width: 200px;
}

.icons-boxes h2 + p {
  font-size: 1.2rem;
}

.icons-boxes h3 {
  text-align: center;
}

.icons-boxes > div {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-direction: column;
  position: relative;
}

.icons-boxes svg {
  width: 70px;
  height: 70px;
  fill: #c8d5dc;
}

.icons-boxes > div:first-child {
  justify-content: center;
  padding: 2rem;
}

.cobramos_div {
  color: #352abe;
}

.icons-boxes h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.informes-div {
  color: #6a3296;
}

.digitalizate-div {
  color: #1e6325;
}

.empresas h2 {
  color: #352abe;
  font-size: 2rem;
  font-weight: 800;
  width: 100%;
}

.empresas p {
  color: #fff;
}

@media (max-width: 768px) {
  .icons-boxes {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 1rem;
  }
  .image-with-description {
    flex-direction: column;
  }
  .icons-boxes > div {
    padding: 0 2rem;
  }
  .image-with-description > div:last-child {
    order: -1;
    margin-bottom: 1rem;
  }
  .image-with-description > div {
    position: relative;
    max-width: 100%;
  }
  .icons-boxes::before {
    top: 30px;
    transform: rotate(90deg);
    right: -30%;
    width: 100%;
    font-size: 14rem;
  }
}
