* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.banner-img {
  width: 270px;
  height: auto;
  margin-top: 100px;
}

.intro h3 {
  font-size: 40px;
}

.intro p {
  margin-top: 15px;
  font-size: 25px;
}
.intro ul li {
  font-size: 25px;
  list-style-type: "✔";
  margin-top: 10px;
}
.certify {
  width: 900px;
}
.third-text p {
  font-size: 25px;
  text-align: justify;
}
.third-text img {
  padding: 10px;
}
.review p {
  font-size: 20px;
}
.benefits p {
  margin-top: 10px;
}
.footer-links a:hover {
  text-decoration: underline !important;
}
.footer-links a {
  font-size: 25px;
}
#menu ul li a {
  color: white;
}
.banner-img {
  animation: floatupdown 3s ease-in-out infinite;
}
@keyframes floatupdown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
.price-image {
  transition: transform 0.4s ease;
}
.price-image:hover {
  transform: scale(1.1);
}
.order-btn {
  transition: transform 0.4s ease !important;
}
.order-btn:hover {
  transform: scale(1.1) !important;
}
.money-back {
  text-align: justify;
}
#faqaccordion button {
  background-color: #2A64C6 !important;
}
.free-ship h2 {
  font-size: 60px;
  text-align: center;
}
.free-ship p {
  text-align: center;
  font-size: 30px;
}
.grad {
  background-image: linear-gradient( 90deg, #2A64C6 , rgb(6, 32, 42));
}