/* 

font-family: 'Inter',
sans-serif;

font-family: 'Lexend Deca',
sans-serif;


*/

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

body {
  background-color: #090b1a;
}

#insights-main-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1110px;
  height: 446px;
  margin-top: 7rem;
  margin-left: auto;
  margin-right: auto;
}

.insights-text {
  background-color: #1b1938;
  width: 50%;
  padding-left: 3rem;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.insights-text h2 {
  color: #fff;
  font-size: 36px;
  line-height: 1.3;
  font-family: 'Inter',
    sans-serif;
  font-weight: bold;
  width: 80%;
  padding-bottom: 1.5rem;
}

.purple-text {
  color: #aa5cdb;
}

.insights-text p {
  color: hsla(0, 0%, 100%, 0.75);
  font-family: 'Inter',
    sans-serif;
  width: 75%;
  line-height: 1.6;
  padding-bottom: 4rem;
  font-size: 15px;
}

.number-stats-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin: 0 auto;
}

.number-stats-container h3 {
  color: white;
  font-family: 'Inter',
    sans-serif;
  font-size: 24px;
  padding-bottom: 8px;
}

.number-stats-container h4 {
  color: hsla(0, 0%, 100%, 0.6);
  font-family: 'Lexend Deca',
    sans-serif;
  font-size: 12px;
}

.insights-img {
  width: 50%;
  height: 446px;
  background: linear-gradient(rgba(117, 63, 149, .6), rgba(117,
        63,
        149,
        .6)),
    url(./images/image-header-desktop.jpg) no-repeat center center/cover;
}


/* 



Media Queries



*/

@media screen and (max-width: 1100px) {
  #insights-main-container {
    flex-direction: column-reverse;
    width: 90%;
    height: auto;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
  }

  .insights-img {
    width: 100%;
    height: 350px;
    background: linear-gradient(rgba(117, 63, 149, .6), rgba(117,
          63,
          149,
          .6)),
      url(./images/image-header-mobile.jpg) no-repeat center center/cover;
  }

  .insights-text {
    background-color: #1b1938;
    width: 100%;
    padding-left: 0rem;
    padding-top: 4rem;
    padding-bottom: 3rem;
    text-align: center;
  }

  .insights-text h2 {
    width: 100%;
    font-size: 28px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 1.5rem;
  }

  .insights-text p {
    color: hsla(0, 0%, 100%, 0.75);
    font-family: 'Inter',
      sans-serif;
    width: 90%;
    line-height: 1.6;
    padding-bottom: 4rem;
    font-size: 15px;
    margin: 0 auto;
  }

  .number-stats-container {
    flex-direction: column;
    gap: 2rem;
  }
}