/* Start Variables */
:root {
  /* Primary */
  --MainBackground: hsl(233, 47%, 7%);
  --CardBackground: hsl(244, 38%, 16%);
  --SoftViolet: hsl(277, 64%, 61%);
  /* Neutral */
  --MainParagraph: hsla(0, 0%, 100%, 0.75);
  --MainHeading-Stats: hsla(0, 0%, 100%, 0.75);
  --StatsHeading: hsla(0, 0%, 100%, 0.6);
}
/* End Variables */
/* Start Global Rules */
* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  font-family: 'Inter', sans-serif;
  background-color: var(--MainBackground);
  Font-size: 15px;
}
@media (max-width: 767px) {
  body {
    min-height: 150vh;
  }
}
/* End Global Rules */
/* Start The Stats Card */
.container {
  display: flex;
  color: white;
  background-color: var(--CardBackground);
  max-width: 1100px;
  border-radius: 8px;
  overflow: hidden;
}
  @media (max-width: 767px) {
    .container {
      flex-direction: column-reverse;
      width: 90%;
      text-align: center;
    }
  }
/* Start left Section */
  .left-section {
    flex-basis: 52%;
    padding: 70px;
  }
  @media (max-width: 767px) {
    .left-section {
      padding: 25px;
    }
  }
  .title {
    font-weight: 700;
    font-size: 2.275rem;
    line-height: 45px;
  }
  @media (max-width: 767px) {
    .title {
      font-size: 1.945rem;
    }
  }
  .title > span {
    color: var(--SoftViolet);
  }
  .description {
    color: var(--MainParagraph);
    margin: 25px auto 70px;
    padding-right: 80px;
    font-size: 0.938rem;
    line-height: 24px;
  }
  @media (max-width: 767px) {
    .description {
      padding-right: 0;
      font-size: 1rem;
      margin: 25px auto 50px;
    }
  }
  .stats {
    display: flex;
    gap: 70px;
  }
  @media (max-width: 767px) {
    .stats {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }
  }
  .stats li {
    display: flex;
    flex-direction: column;
  }
  .stats li > span {
    display: block;
    text-transform: uppercase;
  }
  .stats .number {
    font-weight: 700;
    font-size: 1.4rem;
    padding: 8px 0;
  }
  .stats .stat {
    color: var(--StatsHeading);
    font-size: 0.65rem;
    letter-spacing: 0.0675rem;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
  }
/* Start Right Section */
  .image {
    flex-basis: 48%;
    position: relative;
  }
  .image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: hsl(277deg 64% 61% / 75%);
    z-index: 1;
    mix-blend-mode: multiply;
  }
  .image img {
    max-width: 100%;
    height: 100%;
  }
  @media (min-width: 768px) {
    .image .mobile {
      display: none;
    }
  }
  @media (max-width: 767px) {
    .image .desktop {
      display: none;
    }
  }
/* End The Stats Card */