* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Times New Roman', Times, serif;
}



.section-title {
  text-align: center;
  font-weight: 700;
  background-color: #1C2D4A;
  color: #fff;
  padding: 1.8rem;
}

.text-just {
  text-align: left;
}
.free-shipping {
  background-color: #1C2D4A;
 
}

.zoom {
  padding: 15px 30px;
  font-size: 18px;
  background-color: #1C2D4A;
  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: #1C2D4A;
}




.grad{
  background: linear-gradient(180deg, #e8fbfc, #eafff1);

}
.grad1{
  background: linear-gradient(300deg, #1C2D4A, #135d8b);
}
 

.text-size{
  font-size: 1.15rem;
}

.max-110{
  max-width: 200px !important;
}