body {
  background-color: rgba(62, 45, 154, 0.024);
  font-family: "Poppins", serif;
}

header {
  position: sticky;
  top: 1rem;
  z-index: 100;
}
header .wrapper {
  border: thin solid #e5e5e5;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 100px;
  margin-top: 1rem;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(24px);
          backdrop-filter: blur(24px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: center;
}
header .wrapper .logo img {
  display: block;
  height: 36px;
}

.hero-cover {
  background-color: white;
  border-radius: 1rem;
  margin-top: 2rem;
  overflow: hidden;
  padding: 2rem 2rem 0;
  background-color: #3E2D9A;
  min-height: 450px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}
.hero-cover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/bg-hero.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: 0;
}
.hero-cover .row {
  position: relative;
  z-index: 1;
}
.hero-cover img {
  display: block;
  margin: auto;
}
@media (max-width: 991px) {
  .hero-cover img {
    width: 100%;
  }
}
.hero-cover h1 {
  margin: 0 0 2rem;
  font-weight: bold;
}
.hero-cover h1 small {
  font-size: clamp(16px, 10vw, 24px);
  display: block;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
}

a {
  text-decoration: none;
  color: black;
}

.link {
  color: white;
  border: thin solid white;
  padding: 1rem 1.24rem;
  display: flex;
  text-decoration: none;
  margin-top: 2rem;
}

.section {
  padding: 80px 0;
}
.section .title {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  font-size: 40px;
  gap: 1rem;
  margin: 0 0 2rem;
}
.section .title small {
  background-color: rgba(62, 45, 154, 0.1);
  font-weight: 500;
  font-size: 16px;
  padding: 4px 12px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
}
.section .title-center {
  justify-content: center;
  align-items: center;
  text-align: center;
}

.features-slider .item {
  border-radius: 2rem;
  overflow: hidden;
}
@media (max-width: 767px) {
  .features-slider .item {
    border-radius: 1rem;
  }
}

.cta-box {
  position: relative;
  padding: 0 2rem 0 1rem;
}
.cta-box::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80%;
  background-color: rgba(62, 45, 154, 0.24);
  z-index: -1;
  border-radius: 2rem;
}
.cta-box img {
  display: block;
  width: 100%;
}
.cta-box .title {
  margin-top: 8rem;
  color: #3E2D9A;
}
.cta-box .link {
  border-color: #3E2D9A;
  color: #3E2D9A;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 991px) {
  .cta-box::after {
    height: 100%;
  }
  .cta-box .row {
    flex-direction: column-reverse;
  }
  .cta-box .title {
    margin-top: 2rem;
  }
  .cta-box .title, .cta-box p {
    text-align: center;
  }
  .cta-box .link {
    margin: auto;
  }
}

footer {
  padding: 80px 0 0px;
  border-top: thin solid #eee;
  background-color: #f9f9f9;
}
footer .footer-logo {
  display: block;
  margin: auto;
  height: 40px;
}
footer h4 {
  text-align: center;
  margin-top: 1rem;
}
footer h4 a {
  color: #3E2D9A;
}
footer .copyright-note {
  margin-top: 80px;
  background-color: #eee;
  padding: 1rem 0;
  font-size: 13px;
  color: #888;
}
footer .copyright-note a {
  color: #3E2D9A;
}
footer .links {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  margin-top: 2rem;
}
footer .links a {
  font-size: 14px;
}

.page-cover {
  position: relative;
}/*# sourceMappingURL=style.css.map */