@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap");
/*====COLORS====*/
.cyan-300 {
  color: hsl(192, 90%, 77%);
}

.slate-600 {
  color: hsl(240, 10%, 57%);
}

.purple-300 {
  color: hsl(268, 100%, 86%);
}

.white {
  color: hsl(0, 0%, 98%);
}

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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: clip;
  max-width: 100vw;
}

header {
  padding: 48px 80px 0px 80px;
}

main {
  width: 100%;
}

img {
  display: block;
}

h1 {
  font-family: "Red Hat Display", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 110%;
  color: hsl(240, 21%, 20%);
}

h2 {
  font-family: "Red Hat Display", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 110%;
  color: hsl(240, 21%, 20%);
}

a {
  font-family: "Red Hat Display", sans-serif;
  font-size: 1rem;
  line-height: 150%;
  font-weight: 900;
  color: hsl(240, 21%, 20%);
  text-decoration: none;
  color: hsl(0, 0%, 98%);
}

p {
  font-family: "Red Hat Display", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  color: hsl(240, 21%, 20%);
}

.hero {
  display: grid;
  padding-block: 4rem 2rem;
  align-self: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  text-align: center;
  grid-template-areas: "left right" "content content";
  overflow-x: clip;
  width: 100%;
}

.hero-img-left {
  justify-self: right;
  grid-area: left;
  grid-row: 1;
  width: 60vw;
}

.hero-img-right {
  width: 60vw;
  grid-area: right;
  grid-row: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  grid-area: content;
  grid-row: 2;
}

.description-1 {
  padding: 2rem;
  display: flex;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.description-2 {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.description-2 .number {
  margin-bottom: -4rem;
}

.d2-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-block: 4rem;
  padding-inline: 2rem;
  background-image: linear-gradient(rgba(77, 149, 167, 0.75), rgba(77, 149, 167, 0.75)), url("../assets/mobile/image-footer.jpg");
  background-size: 100%;
}

.tagline {
  text-transform: uppercase;
  font-family: "Red Hat Display", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 110%;
  letter-spacing: 0.25rem;
  color: hsl(192, 37%, 48%);
}

@media (min-width: 768px) {
  h1 {
    font-family: "Red Hat Display", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: hsl(240, 21%, 20%);
  }
  h2 {
    font-family: "Red Hat Display", sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: hsl(240, 21%, 20%);
  }
  .tagline {
    font-family: "Red Hat Display", sans-serif;
    font-size: 0.875rem;
    font-weight: 900;
    letter-spacing: 0.25rem;
    color: hsl(192, 37%, 48%);
  }
  .hero-content {
    max-width: 66%;
    justify-self: center;
  }
  .description-1 {
    padding-block: 3.5rem;
    padding-inline: 5rem;
  }
  .d1-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 42rem;
    padding: 2rem;
  }
  .d1-content h2 {
    margin-bottom: 1rem;
    padding-inline: 4rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-family: "Red Hat Display", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 110%;
    color: hsl(240, 21%, 20%);
  }
  p {
    font-family: "Red Hat Display", sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 150%;
    color: hsl(240, 10%, 57%);
  }
  .tagline {
    font-family: "Red Hat Display", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 110%;
    letter-spacing: 0.25rem;
    color: hsl(192, 37%, 48%);
  }
  .hero {
    grid-template-areas: "left content right";
    gap: 6rem;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr) minmax(0, 1fr);
  }
  .hero-img-left,
  .hero-img-right {
    width: auto;
    height: 80%;
  }
  .hero-content {
    grid-row: 1;
  }
  .description-1 {
    margin-top: 4rem;
    padding-block: 3.5rem;
    padding-inline: 8rem;
  }
  .d1-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 48rem;
    padding: 2rem;
  }
  .d1-content h2 {
    margin-bottom: 1rem;
  }
  .d2-content {
    text-align: start;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-block: 8rem;
    padding-inline: 6rem;
    justify-items: center;
    background-image: linear-gradient(rgba(77, 149, 167, 0.75), rgba(77, 149, 167, 0.75)), url("../assets/desktop/image-footer.jpg");
  }
}
.button-blue {
  background-color: hsl(192, 37%, 48%);
  border-radius: 2rem;
  padding-inline: 2.5rem;
  padding-block: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.button-purple {
  background-color: hsl(268, 34%, 53%);
  padding-inline: 2.5rem;
  padding-block: 1rem;
  border-radius: 2rem;
  align-self: center;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}

.number {
  border: 2px solid hsl(240, 18%, 85%);
  background-color: hsl(0, 0%, 98%);
  border-radius: 50%;
  width: 3.5rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-family: "Red Hat Display", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
  color: hsl(240, 21%, 20%);
  line-height: normal;
  font-weight: 900;
  letter-spacing: normal;
}

.line {
  background-color: hsl(240, 18%, 85%);
  width: 1px;
  height: 5rem;
  margin: 0 auto;
  margin-bottom: -2rem;
}

.btn-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-grid {
  margin-block: 2rem;
  grid-template-columns: 1fr 1fr;
  display: grid;
  gap: 1rem;
}
.image-grid img {
  border-radius: 0.5rem;
  box-shadow: 5px 5px 10px 2px rgb(234, 234, 234);
  max-width: 100%;
}

@media (min-width: 768px) {
  .btn-container {
    flex-direction: row;
  }
  .image-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .image-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding-inline: 6rem;
    padding-block: 4rem;
  }
}/*# sourceMappingURL=styles.css.map */