body {
  font-family: "Instrument Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #484444;
}

.section {
  padding: 4rem 0;
  overflow: hidden;
}

.bg-gradient-purple {
  padding: 100px 0;
  background: radial-gradient(ellipse at left top, #762780, #18081a);
  color: #fff;
  overflow: hidden;
}

.bg-gradient-blue {
  padding: 100px 0 20px;
  background: radial-gradient(ellipse at right top, #52608b, #18081a);
  color: #fff;
  min-height: 80vh;
}

.purple-title {
  color: #762780;
  margin-bottom: 24px;
  font-weight: 500;
}

.secondary-title {
  font-size: 2rem;
  font-weight: 500;
  color: #52608b;
  margin-bottom: 40px;
}

.btn-default {
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 16px;
  line-height: 1;
  background-color: #fff;
  color: #762780;
  width: fit-content;
  text-decoration: none;
  display: inline-block;
  margin: 0 auto;
  transition: 0.2s;
}

.btn-default:hover {
  background: #762780;
  color: #fff;
  transition: 0.2s;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.btn-default.blue {
  color: #18081a;
}

.btn-default.blue:hover {
  background: #18081a;
  color: #fff;
  transition: 0.2s;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

.btn-default.outline {
  border: 1px solid #762780;
  background-color: transparent;
  color: #762780;
}

.btn-default.outline:hover {
  background: #762780;
  color: #fff;
  transition: 0.2s;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.15);
}

#hero {
  background-image: url("./images/qi140-hero-bg.png");
  height: 100vh;
  background-size: cover;
  background-position: bottom;
  position: relative;
}

#hero img {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translate(-50%, 0%);
}

#hero .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight: 500;
  color: #52608b;
}

#hero p {
  font-size: 1.25rem;
  margin-bottom: 0;
  color: #52608b;
}

.card {
  padding: 24px 30px;
}

.card ul {
  padding: 0;
}

.card li {
  background: url("images/check.svg") no-repeat left top; /* <-- change `left` & `top` too for extra control */
  list-style: none;
  margin: 0;
  margin-bottom: 1rem;
  font-size: 1rem;
  align-items: center;
  line-height: 1;
  padding-left: 1.5rem;
}

.card-transparent {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 40px 24px;
  border-radius: 16px;
  margin-top: 40px;
}

.card-transparent strong {
  font-size: 3rem;
  margin-bottom: 8px;
  display: block;
  line-height: 1;
  font-weight: 600;
}

.card-transparent .h6 {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
}

.card-transparent .h6 span {
  font-weight: 600;
}

.cta-container {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-text {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

@media screen and (max-width: 767px) {
  #hero h1 {
    font-size: 2.25rem;
  }

  #hero h1 br {
    display: none;
  }
}
