@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lexend+Deca&display=swap");
*,
*::before,
*::after {
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding: 5.5rem 1.5rem;
  background: #090b1a;
}

body section {
  display: flex;
  flex-wrap: wrap;
  background: #1b1938;
  border-radius: 0.65rem;
}

body section .header-image {
  background-image: url(/img/image-header-mobile.jpg);
  background-size: cover;
  height: 65vw;
  width: 100%;
  border-radius: 0.65rem 0.65rem 0 0;
}

body section .header-image .header-overlay {
  height: 100%;
  width: 100%;
  background: #510080;
  opacity: 0.6;
  border-radius: 0.65rem 0.65rem 0 0;
}

body section .main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 1rem;
  font-family: "Lexend Deca", sans-serif;
  text-align: center;
  padding: 3rem 2rem;
}

body section .main .title {
  color: white;
  font-size: 1.95rem;
  font-weight: 700;
}

body section .main .title .highlight {
  color: #aa5cdb;
  font-size: 1.95rem;
}

body section .main .content {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  font-size: 1.034rem;
  line-height: 1.5rem;
}

body section .main .counters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  margin: 1.5rem 0 0 0;
  column-gap: 4rem;
  row-gap: 1.9rem;
  padding: 0 2.4rem;
}

body section .main .counters .counter .stats {
  font-size: 1.7rem;
  color: white;
  font-weight: 700;
}

body section .main .counters .counter .stats-title {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.94rem;
  font-weight: 400;
  font-family: "Lexend Deca", sans-serif;
}

@media screen and (min-width: 481px) {
  body {
    padding: 19vh 11.3vw;
  }
  body section {
    flex-direction: row-reverse;
  }
  body section .header-image {
    background-image: url(/img/image-header-desktop.jpg);
    background-size: cover;
    height: auto;
    width: 49.1%;
    border-radius: 0 0.5rem 0.5rem 0;
  }
  body section .header-image .header-overlay {
    border-radius: 0 0.5rem 0.5rem 0;
  }
  body section .main {
    flex-direction: row;
    justify-content: left;
    row-gap: 1.6rem;
    column-gap: 1rem;
    text-align: left;
    padding: 4.5rem 1rem 3rem 3.9rem;
    width: 50.8%;
  }
  body section .main .title {
    font-size: 2.2rem;
    padding: 0 5rem 0 0;
  }
  body section .main .title .highlight {
    font-size: 2.2rem;
  }
  body section .main .content {
    font-size: 0.91rem;
    line-height: 1.3rem;
    padding: 0 7rem 0 0;
  }
  body section .main .counters {
    justify-content: left;
    flex-wrap: wrap;
    text-align: left;
    margin: 3rem 0 0 0;
    column-gap: 4rem;
    row-gap: 1.9rem;
    padding: 0;
  }
  body section .main .counters .counter {
    display: flex;
    flex-direction: column;
    row-gap: 0.4rem;
  }
  body section .main .counters .counter .stats {
    font-size: 1.4rem;
  }
  body section .main .counters .counter .stats-title {
    font-size: 0.77rem;
  }
}
