: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; } }

.profile {
  padding-top: 0.375rem;
  margin-bottom: 2.5rem; }
  .profile .profile__initials-inner {
    font-size: 1.5rem; }
  @media (min-width: 768px) {
    .profile {
      margin-bottom: 3.125rem; }
      .profile .profile__initials-inner {
        font-size: 2.5rem; } }

.profile__photo {
  margin-bottom: 1.625rem;
  max-width: 225px; }
  @media (min-width: 768px) {
    .profile__photo {
      margin-bottom: 0;
      padding: 0; } }
  .profile__photo img {
    border-radius: 50%; }

.profile__initials-wrapper {
  -webkit-transition: -webkit-filter 0.25s;
  transition: -webkit-filter 0.25s;
  transition: filter 0.25s;
  transition: filter 0.25s, -webkit-filter 0.25s;
  background-color: var(--profile-initials-background-color);
  border-radius: 50%;
  height: 40px;
  max-width: 100%;
  min-width: 40px;
  line-height: 40px;
  text-align: center; }
  .profile__initials-wrapper:hover {
    -webkit-filter: brightness(90%);
    filter: brightness(90%); }

.profile__initials-inner {
  color: var(--profile-initials-color);
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase; }

.profile__meta a {
  color: var(--rm-gray--dark); }

.profile__name {
  font-size: 2.1875rem;
  font-weight: 700;
  line-height: 2.5rem;
  padding-top: 0.25rem;
  width: 80%; }
  @media (min-width: 768px) {
    .profile__name {
      font-size: 2.5rem; } }

@media (min-width: 768px) {
  .profile__photo + .profile__meta {
    padding-left: 2.625rem; } }

.profile__job-title {
  color: var(--rm-gray--100);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    .profile__job-title {
      font-size: 0.875rem; } }

.profile__email {
  font-size: 1rem;
  line-height: 1.5625rem;
  margin-bottom: 0.375rem; }

.profile__phone {
  font-size: 1rem;
  line-height: 1.5625rem;
  margin-bottom: 0.375rem; }

.profile__bio {
  font-size: 1.125rem; }
  @media (max-width: 991.98px) {
    .profile__bio {
      border-bottom: 1px solid #D2D3D4;
      margin-bottom: 1rem; } }
  @media (min-width: 768px) {
    .profile__bio {
      padding: 0.625rem 0 0 0; } }

.profile__social-media-links {
  margin-top: 0.625rem; }
  .profile__social-media-links li {
    display: inline-block;
    list-style: none;
    margin-right: 0.625rem !important; }
  .profile__social-media-links .fa {
    font-size: 1.375rem; }
