* {
  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: #4589C8;
  color: #fff;
  padding: 1.8rem;
}

.text-just {
  text-align: justify;
}
.free-shipping {
  background-color: #4589C8;
}

.zoom {
  padding: 15px 30px;
  font-size: 18px;
  background-color: #4589C8;
  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);
  }
}
.foot{
  background-color: #4589C8;
}

.glass-blue {
  background: linear-gradient(
    135deg,
    rgba(69, 136, 199, 0.85),
    rgba(69, 136, 199, 0.65)
  );
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}


.small-ban{
  background-color: #FFF8EE;
}

.bg-image {
  min-height: 300px;        /* makes image visible */
  background-size: cover;  /* fills area */
  background-position: center;
}

/* Individual images */
.berries-img {
  background-image: url("assets/images/berries.webp");
}

.chromium-img {
  background-image: url("assets/images/Chromium.webp");
}.float-infinite {
  animation: floatInfinite 3s ease-in-out infinite;
}

@keyframes floatInfinite {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
