* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.footer li {
  margin-bottom: 10px;
}

.footer .nav-link:hover {
  text-decoration: underline !important;
}
.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #58b1d1;
  color: #fff;
  padding: 1.8rem;
}

.accor {
  background-color: #58b1d1 !important;
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #58b1d1;
}

.zoom {
  padding: 15px 30px;
  font-size: 18px;
  background-color: #58b1d1;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;

  animation: zoomPulse 1.5s infinite ease-in-out;
}

@keyframes zoomPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
