* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family:Verdana, Geneva, Tahoma, sans-serif;
}



.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #2E6273;
  color: #fff;
  padding: 1.8rem;
}

.text-just {
  text-align: left;
}
.free-shipping {
  background-color: #2E6273;
 
}

.zoom {
  padding: 15px 30px;
  font-size: 18px;
  background-color: #2E6273;
  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: #2E6273;
}


.grad{
  background:linear-gradient(135deg,#afeafe,#adebc7)
}

.small-ban {
  background-color: #fff8ee;
}

.max-220{
  max-width: 220px  !important;
}