@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* @include breakpointMobile(991px) {
    width: 100%;
} */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  /* border: 1px solid green; */
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 0.938rem;
  font-family: "Poppins", sans-serif;
  background: hsl(0, 0%, 100%);
}

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

ul {
  list-style-type: none;
}

img {
  display: block;
}

button {
  font-family: inherit;
}

main {
  display: block;
}

.img-fluid {
  width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.063rem;
  height: 0.063rem;
  padding: 0;
  margin: -0.063rem;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  grid-area: none;
}

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 4rem 2rem;
}
@media (min-width: 48rem) {
  .container {
    padding: 4rem;
  }
}
@media (min-width: 80rem) {
  .container {
    padding: 4rem 12rem 8rem 12rem;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.938rem 1.875rem -0.688rem rgba(131, 167, 210, 0.5);
}
@media (min-width: 48rem) {
  .card--cyan {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .card--red {
    grid-column: 2/4;
    grid-row: 1/2;
  }
  .card--orange {
    grid-column: 3/5;
    grid-row: 2/3;
  }
  .card--blue {
    grid-column: 2/4;
    grid-row: 3/4;
  }
}
@media (min-width: 80rem) {
  .card--cyan {
    grid-column: 1/2;
    grid-row: 2/4;
  }
  .card--red {
    grid-column: 2/3;
    grid-row: 1/3;
  }
  .card--orange {
    grid-column: 2/3;
    grid-row: 3/5;
  }
  .card--blue {
    grid-column: 3/4;
    grid-row: 2/4;
  }
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0.25rem;
}
.card--cyan::before {
  background: hsl(180, 62%, 55%);
}
.card--red::before {
  background: hsl(0, 78%, 62%);
}
.card--orange::before {
  background: hsl(34, 97%, 64%);
}
.card--blue::before {
  background: hsl(212, 86%, 64%);
}
.card div h2 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  color: hsl(234, 12%, 34%);
  margin-block-end: 0.375rem;
}
.card div p {
  font-size: 0.813rem;
  line-height: 1.6;
  letter-spacing: 0.006rem;
  color: hsl(212, 6%, 44%);
}
.card img {
  width: 4rem;
  height: 4rem;
  align-self: flex-end;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 3.75rem;
}
@media (min-width: 48rem) {
  .feature {
    align-items: center;
    gap: 4.625rem;
  }
}
.feature__intro {
  text-align: center;
  line-height: 1.4;
  color: hsl(234, 12%, 34%);
}
@media (min-width: 48rem) {
  .feature__intro {
    max-width: 33.75rem;
  }
}
.feature__intro h1 {
  font-size: 1.5rem;
  font-weight: 200;
  letter-spacing: 0.016rem;
  margin-block-end: 1rem;
}
@media (min-width: 48rem) {
  .feature__intro h1 {
    font-size: 2.25rem;
  }
}
.feature__intro h1 span {
  font-weight: 600;
}
@media (min-width: 48rem) {
  .feature__intro h1 span {
    display: block;
  }
}
.feature__intro p {
  letter-spacing: 0.006rem;
}
.feature__content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 2rem;
}
@media (min-width: 48rem) {
  .feature__content {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (min-width: 80rem) {
  .feature__content {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
}

footer {
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}
footer a {
  color: hsl(212, 86%, 64%);
}