/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.sm-text {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 25px;
  letter-spacing: 1px;
  color: hsl(0, 0%, 100%);
}

.md-text {
  font-family: "Inter", sans-serif;
  font-size: 0.938rem;
  font-weight: 400;
  line-height: 166.67%;
  letter-spacing: 0;
}

.xl-text {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
}

.lg-text {
  font-family: "Inter", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0;
  color: hsl(0, 0%, 100%);
}

.md-text-white {
  font-family: "Inter", sans-serif;
  font-size: 0.938rem;
  font-weight: 250;
  line-height: 166.67%;
  letter-spacing: 0;
  color: hsl(0, 0%, 100%);
}

.xl-text-white {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  color: hsl(0, 0%, 100%);
}

.xl-text-purple {
  font-family: "Inter", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  color: hsl(277, 64%, 61%);
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.938rem;
  min-height: 100vh;
  background-color: hsl(233, 47%, 7%);
}

.insights {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1200px;
  width: 90%;
  margin: 20px auto;
  padding: 0;
  background-color: hsl(244, 38%, 16%);
  border-radius: 8px;
  overflow: hidden;
}

.insights__content {
  width: 100%;
  padding: 1.5rem 1.5rem;
}

.insights__title {
  margin-bottom: 1rem;
}

.insights__description {
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.insights__image {
  order: -1;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.insights__image--header {
  width: 100%;
  height: auto;
  display: block;
}

/* New overlay styles */
.insights__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsl(277, 64%, 61%);
  mix-blend-mode: multiply;
  opacity: 0.7;
}

.insights__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.insights__stat {
  margin-bottom: 1rem;
  text-align: center;
}

.insights__stat-number {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.insights__stat-label {
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .insights {
    flex-direction: row;
    text-align: left;
    align-items: stretch;
    width: 80%;
  }
  .insights__content {
    flex: 1;
    max-width: 50%;
    padding: 4rem;
  }
  .insights__title {
    text-align: left;
    margin-bottom: 1.5rem;
  }
  .insights__description {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 3rem;
  }
  .insights__image {
    display: block;
    order: 1;
    flex: 1;
    max-width: 50%;
  }
  .insights__image--header {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .insights__stats {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .insights__stat {
    margin-bottom: 0;
    text-align: center;
    margin-right: 2rem;
  }
  .insights__stat:last-child {
    margin-right: 0;
  }
}/*# sourceMappingURL=main.css.map */