@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  box-sizing: border-box;
}

:root {
  --text: #232d43;
  --text-50: #eef1f6;
  --text-100: #dee3ed;
  --text-200: #bcc6dc;

  --background: #fafeff;
  --background-950: #00141a;

  --primary: #0c52b5;
  --primary-50: #e5f5ff;
  --primary-100: #ccebff;
  --primary-200: #99d8ff;

  --secondary: #9db5d9;
  --secondary-50: #edf1f8;
  --secondary-100: #dae3f1;
  --secondary-200: #b6c8e2;

  --accent: #1fcbff;

  --linearPrimaryAccent: linear-gradient(#0c52b5, #1fcbff);
}

/* #region Generic class collection */
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  color: var(--text-700);
}

h1,
h2 {
  line-height: 110%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--text);
}

h3,
h4 {
  line-height: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--text);
}

h5 {
  line-height: 1.875rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  color: var(--text-700);
}

html {
  font-size: 100%;
  /* 16px */
}

h1 {
  font-size: 4.21rem;
  /* 67.36px */
}

h2 {
  font-size: 3.158rem;
  /* 50.56px */
}

h3 {
  font-size: 2.369rem;
  /* 37.92px */
}

h4 {
  font-size: 1.777rem;
  /* 28.48px */
}

h5 {
  font-size: 1.333rem;
  /* 21.28px */
}

small {
  font-size: 0.75rem;
  /* 12px */
}

button {
  font-size: 1rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
}

section {
  background-color: var(--background);
  padding-top: 8rem;
  padding-left: 9.75rem;
  padding-right: 9.75rem;
}

/**
 * Styles for the text group.
 */
.text-group {
  padding-left: 6rem;
  padding-right: 6rem;
}

.text-group-pl {
  padding-left: 6rem;
  padding-right: 3rem;
}

.text-group-pr {
  padding-left: 3rem;
  padding-right: 6rem;
}

.center-p8 {
  text-align: center;
  padding-bottom: 8rem;
}

.center-p4 {
  text-align: center;
  padding-bottom: 4rem;
}

.title {
  padding-bottom: 2rem;
}

.desc {
  padding-bottom: 1rem;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.col-2 {
  display: flex;
  flex-wrap: nowrap;
}

.col-2-media {
  display: flex;
  flex-direction: column;
  flex: 2;
  justify-content: space-around;
}

.col-2-media img {
  width: 100%;
  min-width: 230px;
}

.col-2-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Responsive styles */
@media screen and (max-width: 1184px) {
  section {
    padding-top: 8rem;
    padding-left: 4rem;
    padding-right: 4rem;
  }

  .text-group {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .text-group-pl {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .text-group-pr {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  .col-2 {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-around;
    gap: 2rem;
  }

  .col-2-media {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-around;
  }

  .center-p8 {
    text-align: center;
    padding-bottom: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .text-group {
    padding-left: 0rem;
    padding-right: 0rem;
  }

  section {
    padding-top: 8rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1200px) {
  html {
    font-size: 110%; /* 17.6px */
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 120%; /* 19.2px */
  }
}

@media (min-width: 1920px) {
  html {
    font-size: 130%; /* 20.8px */
  }
}

@media (min-width: 2560px) {
  html {
    font-size: 150%; /* 24px */
  }
}

@media (max-width: 320px) {
  html {
    font-size: 75%; /* 24px */
  }
}
