* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.intro p {
  font-size: 23px;
  text-align: justify;
}
.intro ul {
  font-size: 23px;
  list-style-type: "✅";
  text-align: justify;
}
.intro ul li {
  margin-top: 5px;
}
.intro h1 {
  font-size: 35px;
  font-weight: bold;
}
.headings {
  background-color: maroon;
  padding-bottom: 20px;
  padding-top: 20px;
  text-align: center;
  color: white;
  font-weight: bold;
}
.sec-2 p {
  font-size: 23px;
  text-align: justify;
}
.sec-4 li {
  font-size: 23px;
  margin-top: 30px;
}
.sec-7 p {
  font-size: 23px;
  text-align: justify;
  margin-top: 40px;
}
.banner-sec h3 {
  color: white;
  font-size: 45px;
  font-weight: bold;
  margin-top: 60px;
}
.checkout p {
  text-align: justify;
  font-size: 23pxs;
}
.faq button {
  font-size: 23px !important;
}
.accordion-body {
  font-size: 23px !important;
}
.banner-img {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
.pop-out {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pop-out:hover {
  transform: scale(1.12) translateZ(0);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}
