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

:root {
  --white: #ffffff;
  --black: #000000;

  /* App background */
  /* Subtle background */
  /* UI element background */
  /* Hovered UI element background */
  /* Active / Selected UI element background */
  /* Subtle borders and separators */
  /* UI element border and focus rings */
  /* Hovered UI element border */
  /* Solid backgrounds */
  /* Hovered solid backgrounds */
  /* Low-contrast text */
  /* High-contrast text */

  --gray-1: #fcfcfc;
  --gray-2: #f9f9f9;
  --gray-3: #f0f0f0;
  --gray-4: #e8e8e8;
  --gray-5: #e0e0e0;
  --gray-6: #d9d9d9;
  --gray-7: #cecece;
  --gray-8: #bbbbbb;
  --gray-9: #8d8d8d;
  --gray-10: #838383;
  --gray-11: #646464;
  --gray-12: #202020;

  --blue-1: #fbfdff;
  --blue-2: #f4faff;
  --blue-3: #e6f4fe;
  --blue-4: #d5efff;
  --blue-5: #c2e5ff;
  --blue-6: #acd8fc;
  --blue-7: #8ec8f6;
  --blue-8: #5eb1ef;
  --blue-9: #0090ff;
  --blue-10: #0588f0;
  --blue-11: #0d74ce;
  --blue-12: #113264;

  --violet-1: #fdfcfe;
  --violet-2: #faf8ff;
  --violet-3: #f4f0fe;
  --violet-4: #ebe4ff;
  --violet-5: #e1d9ff;
  --violet-6: #d4cafe;
  --violet-7: #c2b5f5;
  --violet-8: #aa99ec;
  --violet-9: #6e56cf;
  --violet-10: #654dc4;
  --violet-11: #6550b9;
  --violet-12: #2f265f;
}

body,
html {
  font-family: 'Inter', sans-serif;
  color: var(--gray-12);
  background-color: var(--white);
}




.benefits {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-top: 1px solid var(--gray-7);
  border-bottom: 1px solid var(--gray-7);
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 1280px;
  border-right: 1px solid var(--gray-7);
  border-left: 1px solid var(--gray-7);
  gap: 0px;
}

.benefits-item {
  display: flex;
  align-items: start;
  justify-content: start;
  padding: 64px 48px;
  border-left: 1px solid var(--gray-7);
}

.benefits-item:first-child {
  border-left: none;
}

.benefits-item p {
  font-size: 24px;
  font-weight: 600;
  width: 380px;
  color: var(--gray-9);
}

.benefits-item span.highlight {
  font-size: 24px;
  color: var(--gray-12);
}

.visibility {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-top: 1px solid var(--gray-7);
  border-bottom: 1px solid var(--gray-7);
}

.visibility-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 1280px;
  border-right: 1px solid var(--gray-7);
  border-left: 1px solid var(--gray-7);
  gap: 0px;
}
