/**
 * @file
 * Contact Icons 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.
 */
.contact-icons {
  margin: 6rem 0 2rem;
}
@media screen and (max-width: 73.0625rem) {
  .contact-icons {
    margin: 3rem 0 0;
  }
}
@media screen and (max-width: 47.9375rem) {
  .contact-icons {
    margin: 2rem 0 0;
  }
}

.contact-icons__container {
  border: 0.125rem solid #005028;
  padding: 4rem 6% 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.75rem, 1fr));
  gap: 2.5rem 4.4%;
}
@media screen and (max-width: 73.0625rem) {
  .contact-icons__container {
    row-gap: 1.875rem;
    padding: 3rem 6% 2rem;
  }
}
@media screen and (max-width: 47.9375rem) {
  .contact-icons__container {
    padding: 2rem 6% 1.5rem;
    grid-template-columns: repeat(auto-fill, minmax(15.125rem, 1fr));
  }
}

.contact-icon {
  display: flex;
}

.contact-icon__image {
  padding-top: 0.25rem;
  width: 2.625rem;
  height: 2.625rem;
}
@media screen and (max-width: 47.9375rem) {
  .contact-icon__image {
    padding-top: 0;
    width: 2rem;
    height: 2rem;
  }
}
.contact-icon__image svg {
  max-width: 100%;
  max-height: 100%;
}

.contact-icon__content {
  padding-left: 1rem;
}

.contact-icon__title {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 0.375rem;
}

.contact-icon__description {
  line-height: 1.3;
  font-size: 1.125rem;
  font-weight: 700;
  color: #003366;
}
@media screen and (max-width: 47.9375rem) {
  .contact-icon__description {
    font-size: 0.875rem;
  }
}
.contact-icon__description a {
  color: #003366;
  text-decoration: none;
}
.contact-icon__description a:hover {
  text-decoration: underline;
}

.contact-icons__social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 3rem 0 2rem;
}
@media screen and (max-width: 47.9375rem) {
  .contact-icons__social {
    padding: 2rem 0 1rem;
  }
}
.contact-icons__social .social-icon {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333333;
  margin: 0 2.5% 2rem;
}
.contact-icons__social .social-icon:hover .social-icon__title {
  text-decoration: underline;
}
.contact-icons__social .social-icon__image {
  margin-right: 1.25rem;
  width: 1.6875rem;
  height: 1.6875rem;
}
.contact-icons__social .social-icon__image svg {
  max-width: 100%;
  max-height: 100%;
}
.contact-icons__social .social-icon__title {
  margin: 0;
  font-size: 1.125rem;
}
@media screen and (max-width: 47.9375rem) {
  .contact-icons__social .social-icon__title {
    font-size: 1rem;
  }
}

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