/**
 * @file
 * Color functions.
 *
 * @package Functions.
 */
/* Tint. */
/* Shade. */
/**
 * @file
 * Global settings.
 *
 * @package Settings.
 */
/* Import. */
/* * @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap'); */
/* Font family. */
/* Font size. */
/* Font weight. */
/* Line height. */
/* Basic colors. */
/* Status colors. */
/* Border radius. */
/* Outline. */
/* Shadow. */
/* Spacing. */
/* Width. */
/* Breakpoints. */
/* Grid breakpoints. */
/* Grid. */
/**
 * @file
 * Mixin for aspect ratio.
 *
 * @package Tools.
 */
/* Aspect ratio mixin. */
/**
 * @file
 * Helper for ratio.
 *
 * @package Helpers.
 */
/* Use. */
/* Ratio. */
.h-ratio {
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
  width: 100%;
}
.h-ratio--16-by-9::before {
  height: 0;
  padding-bottom: calc((9 / 16) * 100%);
  position: relative;
  content: "";
  display: block;
}
.h-ratio--4-by-3::before {
  height: 0;
  padding-bottom: calc((9 / 16) * 100%);
  position: relative;
  content: "";
  display: block;
}
.h-ratio__item {
  border: 0;
  bottom: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

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