/**
 * @file
 * Sidebar Contact styles.
 */
/**
 * @file
 * Dependencies.
 *
 * The necessary dependencies for compiling styles.
 * Nothing here should compile into CSS, helpers only.
 */
/**
 * @file
 * Color variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Typography declarations.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Functions.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/* Remove the unit of a length.
 * @param {Number} $number - Number to remove unit from
 * @return {Number} - Unitless number
 *
 * Reference: https://css-tricks.com/snippets/sass/strip-unit-function/
*/
/* Convert a value (raw number or pixel size) into rems. */
/**
 * @file
 * General variables.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * @file
 * Custom Mixins.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
/**
 * Breakpoint
 *
 * usage example:
 * @include breakpoint($feature: max-width, $value: 1509px) {
 *  display: none;
 * }
 */
/* Dynamic containment mixin. */
/**
 * @file
 * Z-Indices.
 *
 * This is imported into dependencies, therefore nothing in here should
 * output .css when compiled.
 */
.sidebar-contact {
  margin-bottom: 6rem;
}
@media screen and (max-width: 73.0625rem) {
  .sidebar-contact {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .sidebar-contact {
    margin-bottom: 3rem;
  }
}
.sidebar-contact .sidebar-contact__heading--underlined {
  border-bottom: 1px solid #D3D3D3;
  padding-bottom: 1.5rem;
  margin-bottom: 2.25rem;
}
@media screen and (max-width: 87.4375rem) {
  .sidebar-contact .sidebar-contact__heading--underlined {
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .sidebar-contact .sidebar-contact__heading--underlined {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}

.sidebar-contact__title {
  font-size: 1.375rem;
  line-height: 1.3;
  margin: 0 0 0.25rem;
  color: #003366;
}
@media screen and (max-width: 87.4375rem) {
  .sidebar-contact__title {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 73.0625rem) {
  .sidebar-contact__title {
    font-size: 1.125rem;
  }
}

.sidebar-contact__content {
  margin: 0 0 1.5rem;
  line-height: 1.7;
}
@media screen and (max-width: 47.9375rem) {
  .sidebar-contact__content {
    margin-bottom: 1rem;
    font-size: 0.875rem;
  }
}
.sidebar-contact__content a:not(.green-button) {
  color: #003366;
}

.sidebar-contact__social {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-contact__social li {
  display: inline-block;
  margin-right: 1.25rem;
}
.sidebar-contact__social li svg {
  color: #003366;
  font-size: 1.875rem;
}

/*# sourceMappingURL=sidebar-contact.css.map*/