@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");
*, body {
  padding: 0;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

img {
  max-width: 100%;
}

.btn {
  border-radius: 20px;
  height: 40px;
  padding: 6px 24px;
  font-weight: 500;
}

.btn:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 0.5s 0s;
  transition: all 0.5s 0s;
}

h3 {
  font-size: 40px;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  margin-left: 15px;
  font-weight: 700;
  z-index: 1;
}

h3::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 50px;
  bottom: 0;
  left: -12px;
  background: #fa5e5e;
  z-index: -1;
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
  border-radius: 2px;
}

h4 {
  font-weight: 600;
}

p {
  line-height: 1.6;
}

header {
  background: #733e98;
  padding: 10px;
}

header .logo {
  height: 72px;
}

header .nav {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header .nav .nav-link {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link.btn {
  background: #fa5e5e;
  color: #fff;
  padding: 6px 20px;
}

section {
  padding: 50px 0;
}

.banner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 80px 0;
}

.create-card-link .btn, .banner .btn {
  color: #fff;
  background: #733e98;
}

.banner .btn:hover {
  background: #fa5e5e;
}

.steps {
  text-align: center;
}

.steps i {
  border: 2px solid #fa5e5e;
  color: #fa5e5e;
  border-radius: 40px;
  padding: 20px;
  font-size: 30px;
  margin: 20px 0;
}

.why ul {
  list-style-type: none;
}

.features .features-list {
  padding: 30px 0;
}

.features .features-list li {
  width: 49.5%;
  display: inline-block;
  padding: 20px 0;
}

.stats {
  text-align: center;
}

.stats h1 {
  font-weight: 700;
  color: #733e98;
}

.customer {
  text-align: center;
}

.customer p {
  color: #a5a5a5;
}

.customer #carouselExampleIndicators {
  max-width: 700px;
  margin: 0 auto;
}

.faq {
  text-align: center;
}

.faq .accordion {
  max-width: 700px;
  margin: 0 auto;
}

.faq .accordion .card-header {
  background: #fff;
}

.faq .accordion .card-header .btn {
  color: #4a4a4a;
}

.partners {
  text-align: center;
  padding: 40px 0;
  background: #fa5e5e;
  color: #fff;
  z-index: 1;
}

.partners h3::after {
  background: #733e98;
}

.partners .btn {
  background: #fff;
}

footer {
  background: #341549;
  color: #aea1b6;
  padding: 80px 0 0;
}

footer .logo {
  max-width: 170px;
  mix-blend-mode: hard-light;
  opacity: 0.65;
}

footer .nav-link {
  text-transform: capitalize;
}

footer a {
  color: #aea1b6;
}

footer a:hover, footer a:active {
  color: #fff;
}

footer .copy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 30px;
}

footer .copy p {
  margin: 0;
  padding: 10px 0;
}

.carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 8px;
  margin: 0 12px;
  border: 0;
  opacity: 1;
  background: #e2c8f5;
}

.carousel-indicators li.active {
  background: #733e98;
}

.about .banner .hero p {
  width: 65%;
  margin: 0 auto;
  text-align: center;
}

.about .banner .hero p span {
  color: #733e98;
}

.video-cont {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.partners form {
  max-width: 600px;
  margin: 0 auto;
}

.terms {
  text-align: left;
}

.terms h5 {
  font-weight: 600;
}

 .blink{
        background: #fa5e5e;
    }
    .blink p{
        color: #fff;
      animation: blink-animation 1s steps(35, start) infinite;
      -webkit-animation: blink-animation 1s steps(5, start) infinite;
      font-weight: 700;
      
    }
    @keyframes blink-animation {
      to {
        visibility: hidden;
      }
    }
    @-webkit-keyframes blink-animation {
      to {
        visibility: hidden;
      }
    }
@media screen and (max-width: 1200px) {
  .features .features-list {
    padding: 0;
  }
  .features .features-list li {
    width: 100%;
    padding: 5px 0;
  }
  .features .features-list li h4 {
    font-size: 20px;
  }
}

@media screen and (min-width: 568px) and (max-width: 992px) {
  .features .features-list li {
    width: 49%;
    padding: 5px 0;
  }
}

@media screen and (max-width: 768px) {
  header {
    text-align: center;
  }
  header .logo {
    height: 60px;
    margin: 16px 0;
    -o-object-fit: contain;
       object-fit: contain;
  }
  header .nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .nav .nav-link {
    font-size: 12px;
    padding: 8px 10px;
  }
  header .nav .btn {
    height: 36px;
  }
  p {
    font-size: 14px;
  }
  h3 {
    font-size: 32px;
  }
  h3::after {
    width: 21px;
    height: 36px;
  }
  footer {
    padding: 47px 0 0;
  }
  footer.text-left {
    text-align: center !important;
  }
  footer .logo {
    max-width: 130px;
  }
  footer .nav {
    margin: 45px 0;
  }
  .why {
    padding-top: 0;
  }
  .why .order {
    padding-top: 50px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .why .order h3 {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-bottom: 30px;
  }
}
/*# sourceMappingURL=static-style.css.map */