:root {
  --l: 50%;
  --white: #fff;
  --black: #000;
  --rm-green: #44e5b9;
  --rm-blue-light: #528bfc;
  --rm-blue: #0156fc;
  --rm-red: #e0152b;
  --rm-yellow: #fad442;
  --rm-black: #151215;
  --rm-gray: #edf0f3;
  --rm-gray-neutral: #dbdbdb;
  --rm-gray--100: #8b8f92;
  --rm-gray--200: #8b9ba0;
  --rm-gray--300: #607075;
  --rm-gray--dark: #252b2d;
  --rm-accent--lime: #6bebb6;
  --rm-accent--yellow: #fad442;
  --rm-accent--ramsalt: #00507e;
  --rm-accent: var(--rm-accent--lime);
  --rm-accent--secondary: var(--rm-green);
  --primary: #151215;
  --primary-accent: #2e2e2e;
  --primary-100: hsl(var(--primary), calc(var(--l) + 30%));
  --primary-900: hsl(var(--primary), calc(var(--l) - 30%));
  --secondary: #6bebb6;
  --rm-footer-bg: #151215;
  --rm-footer-text: #ffffff; }

:root {
  --l: 50%;
  --white: #fff;
  --black: #000;
  --rm-green: #44e5b9;
  --rm-blue-light: #528bfc;
  --rm-blue: #0156fc;
  --rm-red: #e0152b;
  --rm-yellow: #fad442;
  --rm-black: #151215;
  --rm-gray: #edf0f3;
  --rm-gray-neutral: #dbdbdb;
  --rm-gray--100: #8b8f92;
  --rm-gray--200: #8b9ba0;
  --rm-gray--300: #607075;
  --rm-gray--dark: #252b2d;
  --rm-accent--lime: #6bebb6;
  --rm-accent--yellow: #fad442;
  --rm-accent--ramsalt: #00507e;
  --rm-accent: var(--rm-accent--lime);
  --rm-accent--secondary: var(--rm-green);
  --primary: #151215;
  --primary-accent: #2e2e2e;
  --primary-100: hsl(var(--primary), calc(var(--l) + 30%));
  --primary-900: hsl(var(--primary), calc(var(--l) - 30%));
  --secondary: #6bebb6;
  --rm-footer-bg: #151215;
  --rm-footer-text: #ffffff; }

::-moz-selection {
  color: var(--rm-black);
  background: var(--rm-accent); }

::selection {
  color: var(--rm-black);
  background: var(--rm-accent); }

.font-heading {
  font-family: "Playfair Display", serif; }

/* Focusing the button with a keyboard will show a dashed black line. */
button:focus-visible {
  outline: 1px dashed var(--rm-accent); }

/* Focusing the button with a mouse, touch, or stylus will show a subtle drop shadow. */
button:focus:not(:focus-visible) {
  outline: none; }

.container-sm {
  margin: 0 auto; }
  @media (min-width: 992px) {
    .container-sm {
      max-width: 720px; } }

.section {
  margin-bottom: 2.5rem; }
  @media (min-width: 768px) {
    .section {
      margin-bottom: 3.125rem; } }

.section__title {
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  padding-bottom: 0.625rem;
  text-transform: uppercase; }

.section--separated .section__contents {
  border-bottom: 1px solid #D2D3D4;
  border-top: 1px solid #D2D3D4;
  padding: 1rem 0; }
  @media (min-width: 768px) {
    .section--separated .section__contents {
      padding: 1.75rem 0; } }

.section--separated-border-bottom .section__contents {
  border-bottom: 1px solid #D2D3D4;
  padding: 1rem 0; }
  @media (min-width: 768px) {
    .section--separated-border-bottom .section__contents {
      padding: 1.75rem 0; } }

.section--separated-border-top .section__contents {
  border-top: 1px solid #D2D3D4;
  padding: 1rem 0; }
  @media (min-width: 768px) {
    .section--separated-border-top .section__contents {
      padding: 1.75rem 0; } }

.section--with-background {
  background: #F0F0F1;
  padding: 1.25rem; }
  .section--with-background .section__contents {
    border-top: 1px solid #D2D3D4;
    padding: 1.25rem 0 0; }

.section--in-full-width-background {
  margin-bottom: 0; }
  .section--in-full-width-background .section__contents {
    border-top: 1px solid #D2D3D4;
    padding: 1.25rem 0 0; }

.section--border-around {
  border: 1px solid #D2D3D4; }
  .section--border-around .section__title {
    border-bottom: 1px solid #D2D3D4;
    padding: 1rem 1.5rem; }
  .section--border-around .section__contents {
    padding: 0 1.5rem 0; }
