* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(0, 0%, 98%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wrapper {
  margin: 0 2rem;
  margin-top: 6.375rem;
  min-width: 16rem;
}

.wrapper--header {
  width: 32.25rem;
  text-align: center;
}
.wrapper--header .title {
  font: 200 clamp(1.5rem, 6vw, 2.25rem)/1.39 "Poppins", sans-serif;
  color: hsl(234, 12%, 34%);
  letter-spacing: 0.02rem;
}
.wrapper--header .title--emphasize {
  font-weight: 600;
  display: block;
  letter-spacing: 0.02rem;
}
.wrapper--header .description {
  font: 400 0.9375rem/1.4 "Poppins", sans-serif;
  color: hsl(234, 12%, 34%);
  letter-spacing: 0.005rem;
  margin-top: 1rem;
}

.wrapper--main {
  max-width: 69.625rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: auto 2rem;
  margin-top: 4.625rem;
  margin-bottom: 10.1875rem;
}
.wrapper--main .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.wrapper--main .card {
  background-color: hsl(0, 0%, 100%);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1.25rem 1.75rem -0.5rem hsla(212, 41%, 52%, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}
.wrapper--main .card .subtitle {
  font: 600 1.25rem "Poppins", sans-serif;
  color: hsl(234, 12%, 34%);
  line-height: 1;
  margin-top: 0.25rem;
}
.wrapper--main .card .content {
  font: 400 0.8125rem/1.6 "Poppins", sans-serif;
  color: hsl(212, 6%, 44%);
  letter-spacing: 0.005rem;
  margin-top: 0.5rem;
}
.wrapper--main .card .icon {
  margin-top: 2rem;
  align-self: flex-end;
  margin-bottom: 0.9375rem;
}
.wrapper--main .border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0.25rem;
}
.wrapper--main .card--cyan .border {
  background-color: hsl(180, 62%, 55%);
}
.wrapper--main .card--red .border {
  background-color: hsl(0, 78%, 62%);
}
.wrapper--main .card--orange .border {
  background-color: hsl(34, 97%, 64%);
}
.wrapper--main .card--blue .border {
  background-color: hsl(212, 86%, 64%);
}

@media (max-width: 800px) {
  .wrapper {
    margin-top: 3.75rem;
  }
  .wrapper--header {
    width: 85%;
    margin: 0 auto;
    margin-top: 3.5rem;
  }
  .wrapper--main {
    flex-direction: column;
    margin-bottom: 2.875rem;
  }
  .wrapper--main .col {
    width: 100%;
  }
}

/*# sourceMappingURL=styles.css.map */
