:root {
  --clr-primary: #9e1f63;

  --clr-white: #fff;
  --clr-white-100: #f2f2f2;
  --clr-black: #212529;
  --font-heading: "Poppins", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
}

@media only screen and (max-width: 62em) {
  html {
    font-size: 56.25%;
  }
}

@media only screen and (max-width: 36em) {
  html {
    font-size: 50%;
  }
}

body {
  box-sizing: border-box;
  font-size: 1.8rem;
  line-height: 1.7;
  font-family: var(--font-body);
  color: var(--clr-black);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

p {
  text-wrap: pretty;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
  line-height: 1.4;
}

.u-container {
  max-width: 120rem;
  margin: 0 auto;
}

.u-text-center {
  text-align: center;
}

.u-text-white {
  color: var(--clr-white);
}

.u-text-primary {
  color: var(--clr-primary);
}

.u-text-gradient {
  background: linear-gradient(
    90deg,
    #9e1f63 0%,
    #a84f88 30%,
    #7a7cc4 55%,
    #3aa7b3 75%,
    #007b76 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.u-margin-bottom-xs {
  margin-bottom: 0.8rem;
}

.u-margin-bottom-sm {
  margin-bottom: 1.6rem;
}

.u-margin-bottom-md {
  margin-bottom: 2.4rem;
}

.u-margin-bottom-lg {
  margin-bottom: 3.2rem;
}

.u-margin-bottom-xl {
  margin-bottom: 4rem;
}

.u-margin-bottom-2xl {
  margin-bottom: 5.2rem;
}

.subheading {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -1px;
  font-size: 1.4rem;
  text-transform: uppercase;
}

.heading {
  font-family: var(--font-heading);
  letter-spacing: -2px;
  line-height: 1.2;
}

.heading-primary {
  font-size: 4.8rem;
}

.heading-secondary {
  font-size: 4rem;
}

.heading-four {
  font-weight: 600;
  font-size: 2.4rem;
}

@media only screen and (max-width: 48em) {
  .heading-primary {
    font-size: 4.4rem;
  }

  .heading-secondary {
    font-size: 4rem;
  }

  .heading-tertiary {
    font-size: 3.6rem;
  }

  .heading-four {
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 36em) {
  .heading-primary {
    font-size: 4rem;
  }

  .heading-secondary {
    font-size: 3.6rem;
  }

  .heading-tertiary {
    font-size: 3.2rem;
  }

  .heading-four {
    font-size: 2.4rem;
  }
}

.grid {
  display: grid;
  gap: 2.4rem;
}

.grid-2-cols {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3-cols {
  grid-template-columns: repeat(3, 1fr);
}

.nav {
  background-color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
}

.nav-logo {
  height: 8rem;
  width: 8rem;
  object-fit: contain;
}

/* .grid-order-2 {
    order: 2;
  }

  .grid-order-1 {
    order: 1;
  } */

.grid-centered {
  align-items: center;
}

@media only screen and (max-width: 62em) {
  .grid-2-cols {
    grid-template-columns: 1fr;
  }

  .grid-3-cols,
  .grid-4-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-order-2 {
    order: 2;
  }

  .grid-order-1 {
    order: 1;
  }
}

@media only screen and (max-width: 36em) {
  .grid-3-cols,
  .grid-4-cols {
    grid-template-columns: 1fr;
  }
}

.section-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    #9e1f63 0%,
    #b43f79 20%,
    #7a5faf 50%,
    #2b8e99 78%,
    #007b76 100%
  );
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6.4rem 2.4rem;
}

.section-regular {
  padding: 4.8rem 2.4rem;
}

.section-gradient-1 {
  background: linear-gradient(
    135deg,
    #006f6a 0%,
    #23858f 20%,
    #6c67b2 48%,
    #b04882 78%,
    #9e1f63 100%
  );
}

.section-gradient-2 {
  background: linear-gradient(
    135deg,
    #9e1f63 0%,
    #a93e75 18%,
    #665fa8 50%,
    #278890 80%,
    #007b76 100%
  );
}

.section-gradient-3 {
  background: linear-gradient(
    135deg,
    #007b76 0%,
    #278890 18%,
    #665fa8 50%,
    #a93e75 80%,
    #9e1f63 100%
  );
}

.cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4rem;
  text-align: center;
}

@media only screen and (max-width: 36em) {
  .cta {
    flex-direction: column;
    align-items: stretch;
  }
}

.btn,
.btn:link,
.btn:visited {
  font-family: var(--font-heading);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  padding: 1.2rem 2.4rem;
  border-radius: 100px;
  letter-spacing: -1px;
  transition: all 0.3s ease-in-out;
}

.btn-primary,
.btn-primary:link,
.btn-primary:visited {
  background: linear-gradient(135deg, #9e1f63 0%, #007b76 100%);
  color: var(--clr-white);
}

.btn-white,
.btn-white:link,
.btn-white:visited {
  background-color: var(--clr-white);
  color: var(--clr-primary);
}

.btn-white:hover,
.btn-white:active {
  background-color: var(--clr-white-100);
}

.btn-outline,
.btn-outline:link,
.btn-outline:visited {
  color: var(--clr-primary);
  background: var(--clr-white);
  box-shadow: 0 0 0 1px inset var(--clr-primary);
}

.btn-outline:hover,
.btn-outline:active {
  background: linear-gradient(135deg, #9e1f63 0%, #007b76 100%);
  color: var(--clr-white);
  box-shadow: none;
}

.btn-outline-white,
.btn-outline-white:link,
.btn-outline-white:visited {
  color: var(--clr-white);
  box-shadow: 0 0 0 1px var(--clr-white);
}

.btn-outline-white:hover,
.btn-outline-white:active {
  background-color: var(--clr-white);
  color: var(--clr-primary);
}

.benefit-icon {
  font-size: 4.8rem;
  color: var(--clr-primary);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  list-style: none;
}

.list-item {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.list-icon {
  font-size: 3.2rem;
  color: var(--clr-primary);
  flex-shrink: 0;
}

.list-icon-light {
  color: var(--clr-white);
}

.card {
  padding: 2.4rem;
  border-radius: 12px;
}

.card-colored {
  background: linear-gradient(
    145deg,
    #a32668 0%,
    #b84a87 22%,
    #7867b5 52%,
    #2e94a0 80%,
    #007b76 100%
  );
}

.card-white {
  background-color: var(--clr-white);
}

.card-outline-light {
  box-shadow: 0 0 0 1px inset var(--clr-white);
}

.note {
  font-size: 1.4rem;
}
