.new-section {
  background-color: #00aff0;
  color: #fff;
}
.new-section .container {
  max-width: 1140px;
  margin: 0 auto;
}
.new-section .container .main-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 60px 0px;
}
.new-section .container .main-content h2 {
  color: #fff;
  font-size: clamp(22px, 3.1vw, 30px);
  margin-top: 0px;
  margin-bottom: 16px;
}
.new-section .main-content div h3 {
  color: #fff;
  font-size: 26px;
  margin: 20px 0;
}
div.new-section .main-content ul {
  list-style-type: none;
}
div.new-section .main-content ul li {
  position: relative;
  padding: 0px 0px 0px 40px;
  margin: 0px 0px 10px 0px;
  list-style: none;
  font-size: clamp(14px, 2.1vw, 16px);
  color: #fff;
}
.new-section .main-content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  background: url(/assets/images/common/check-icon.webp);
  width: 18px;
  height: 18px;
  background-size: 12px;
  border: 1px solid #fff;
  border-radius: 4px;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
}
.new-section .cta-btn {
  font-weight: 700;
  text-transform: none;
  padding: 0 25px;
  font-size: 18px;
  display: inline-block;
  text-align: center;
  min-height: 50px;
  line-height: 50px;
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-decoration: none;
  background: #fff;
  color: #00aff0;
  transition: 0.5s ease-in all;
  border: 1px solid #fff;
}
.new-section .cta-btn:hover {
  color: #fff;
  background-color: #00aff0;
  transition: 0.5s ease-in all;
}
.discover-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2.1vw, 16px);
}
.discover-btns a {
  animation: zoom-in-zoom-out 1s ease infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.discover-btns .cta-btn.Whatsapp-btn {
  background: #5cb85c;
  color: #fff;
  padding: 0px 106px;
  transition: 0.8s all;
}
.discover-btns .cta-btn.Whatsapp-btn:hover {
  color: #5cb85c;
  background-color: #ffffff;
  border-color: #5cb85c;
}
@media (max-width: 767px) {
  .new-section .container .main-content h2 {
    text-align: center;
  }
  .new-section .cta-btn {
    padding: 0 10px;
    font-size: 12px;
    min-height: 40px;
    line-height: 40px;
    width: 100%;
  }
  .new-section .container .main-content {
    padding-block: 32px;
  }
  .new-section ul li:before {
    top: 5px;
    width: 15px;
    height: 15px;
    background-size: 8px;
  }
  .new-section ul li {
    padding-left: 32px;
  }
  .discover-btns {
    flex-direction: column;
  }
}
