/**
 * @file
 * Typography Styles.
 *
 * Define and set the base for the fonts.
 */
/**
 * @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.
 */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 700;
  src: local(""), url("/themes/custom/gcsu_theme/templates/src/fonts/oswald-v31-latin-700.woff2") format("woff2"), url("/themes/custom/gcsu_theme/templates/src/fonts/oswald-v31-latin-700.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/themes/custom/gcsu_theme/templates/src/fonts/muli-v20-latin-regular.woff2") format("woff2"), url("/themes/custom/gcsu_theme/templates/src/fonts/muli-v20-latin-regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'Muli';
  font-style: normal;
  font-weight: 700;
  src: local(""), url("/themes/custom/gcsu_theme/templates/src/fonts/muli-v20-latin-700.woff2") format("woff2"), url("/themes/custom/gcsu_theme/templates/src/fonts/muli-v20-latin-700.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'Muli';
  font-style: italic;
  font-weight: 400;
  src: local(""), url("/themes/custom/gcsu_theme/templates/src/fonts/muli-v20-latin-italic.woff2") format("woff2"), url("/themes/custom/gcsu_theme/templates/src/fonts/muli-v20-latin-italic.woff") format("woff");
  font-display: swap;
}

html {
  font-family: "Muli", Arial, sans-serif;
  font-size: 1rem;
}

.green-button {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff !important;
  background-color: #002850;
  border: 0.1875rem solid #002850;
  text-decoration: none;
  padding: 1rem 1.5rem;
  transition: all .2s ease-in;
}

@media screen and (max-width: 47.9375rem) {
  .green-button {
    font-size: 0.75rem;
  }
}

.green-button:hover {
  background-color: #ffffff;
  color: #002850 !important;
  transition: all .2s ease-out;
}

h2,
.heading-two {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 3.125rem;
  line-height: 1.12;
  margin: 2.5rem 0 2.125rem;
  color: #006633;
}

@media screen and (max-width: 87.4375rem) {
  h2,
  .heading-two {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 47.9375rem) {
  h2,
  .heading-two {
    font-size: 1.75rem;
    margin: 1.75rem 0 1.25rem;
  }
}

h3,
.heading-three {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 2.25rem;
  line-height: 1.12;
  color: #006633;
  margin: 1.75rem 0 1.5rem;
}

@media screen and (max-width: 87.4375rem) {
  h3,
  .heading-three {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 47.9375rem) {
  h3,
  .heading-three {
    font-size: 1.375rem;
    margin: 1rem 0 0.75rem;
  }
}

/*# sourceMappingURL=typography_styles.css.map*/