/* Mixins */
/**
 * Returns value from colors map
 */
/**
 * Turns pixels to rems
 * We typically set out HTML font size to 62.5% which helps us have a base-10 value to work with.
 * So the following mixin accepts a pixel value that is then turned into a corresponding rem value.
 */
/**
 * Function for converting a px based font-size to rem.
 *
 * @param $size - the value in pixel you want to convert
 *
 * e.g. p {to-rem(12);}
 *
 */
@media only screen and (min-width: 960px) {
  .paragraph--type--text-image .layout-inner-container {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 123rem;
  }
}
@media only screen and (max-width: 959px) {
  .paragraph--type--text-image .body {
    margin-top: 30px;
  }
}
.paragraph--type--text-image .title {
  font-family: "Roboto-Light", sans-serif !important;
  font-size: 2.6rem;
  line-height: 1.15 !important;
  margin-bottom: 3rem;
}
.paragraph--type--text-image .title h1:last-child,
.paragraph--type--text-image .title h2:last-child,
.paragraph--type--text-image .title h3:last-child,
.paragraph--type--text-image .title h4:last-child,
.paragraph--type--text-image .title h5:last-child,
.paragraph--type--text-image .title h6:last-child,
.paragraph--type--text-image .title p:last-child,
.paragraph--type--text-image .title ul:last-child,
.paragraph--type--text-image .title ol:last-child,
.paragraph--type--text-image .title dl:last-child,
.paragraph--type--text-image .title pre:last-child,
.paragraph--type--text-image .title address:last-child,
.paragraph--type--text-image .title fieldset:last-child,
.paragraph--type--text-image .title figure:last-child,
.paragraph--type--text-image .title table:last-child {
  margin-bottom: 0;
}
.paragraph--type--text-image .summary h1:last-child,
.paragraph--type--text-image .summary h2:last-child,
.paragraph--type--text-image .summary h3:last-child,
.paragraph--type--text-image .summary h4:last-child,
.paragraph--type--text-image .summary h5:last-child,
.paragraph--type--text-image .summary h6:last-child,
.paragraph--type--text-image .summary p:last-child,
.paragraph--type--text-image .summary ul:last-child,
.paragraph--type--text-image .summary ol:last-child,
.paragraph--type--text-image .summary dl:last-child,
.paragraph--type--text-image .summary pre:last-child,
.paragraph--type--text-image .summary address:last-child,
.paragraph--type--text-image .summary fieldset:last-child,
.paragraph--type--text-image .summary figure:last-child,
.paragraph--type--text-image .summary table:last-child {
  margin-bottom: 0;
}
.paragraph--type--text-image .summary ul > li,
.paragraph--type--text-image .summary ol > li {
  padding-left: 0.2rem;
}